/* ------------------------------------------------------------
   Lord Aerial Photography — base styles
   Palette: deep navy + warm gold accent + off-white
   Font: Inter (clean, professional, not "gamer" FPV-styled)
------------------------------------------------------------- */

:root {
  --navy-950: #0b1626;
  --navy-900: #0f1e33;
  --navy-800: #16293f;
  --navy-700: #223752;
  --gold-500: #c9a24b;
  --gold-600: #b38f3f;
  --gold-300: #e4c67c;
  --off-white: #f7f5f0;
  --gray-100: #eef0f2;
  --gray-400: #8a94a3;
  --gray-600: #5b6472;
  --text-dark: #16212f;
  --radius: 12px;
  --max-width: 1120px;
  --shadow-sm: 0 2px 8px rgba(15, 30, 51, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 30, 51, 0.10);
  --shadow-lg: 0 20px 50px rgba(11, 22, 38, 0.18);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.5em; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--gray-600); }
a { color: inherit; text-decoration: none; }
ul { padding-left: 1.2em; }

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: 0.75em;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  z-index: 200;
  transition: width 0.1s linear;
}

/* Scroll-reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.08s; }
.reveal-delay-2.in-view { transition-delay: 0.16s; }
.reveal-delay-3.in-view { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  text-align: center;
  position: relative;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-950);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-glow { box-shadow: 0 0 0 0 rgba(201,162,75,0.5); animation: btnPulse 2.8s ease-in-out infinite; }
.btn-glow:hover { animation: none; }
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,75,0.35); }
  50% { box-shadow: 0 0 0 10px rgba(201,162,75,0); }
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: inherit;
}
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-500); transform: translateY(-2px); }
.btn-small { padding: 10px 18px; font-size: 0.875rem; }
.btn-block { display: block; width: 100%; }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 22, 38, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(11, 22, 38, 0.92);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
  transition: height 0.3s ease;
}
.site-header.scrolled .header-inner { height: 64px; }
.logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.logo:hover { opacity: 0.85; }
.logo span { color: var(--gold-500); font-weight: 700; }
.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-500);
  transition: width 0.25s var(--ease);
}
.main-nav a:hover { color: var(--gold-300); }
.main-nav a:hover::after { width: 100%; }
.header-cta { margin-left: 12px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* If a <video> or <img> is placed inside #hero-media, it fills the hero */
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-placeholder {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,162,75,0.16), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(34,55,82,0.6), transparent 55%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: drift 14s ease-in-out infinite;
}
.orb-1 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--gold-500), transparent 70%);
  top: -80px; right: 10%;
  animation-duration: 16s;
}
.orb-2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, #3a5b86, transparent 70%);
  bottom: -60px; left: 8%;
  animation-duration: 20s;
  animation-delay: -6s;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
}
.flight-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.flight-path {
  fill: none;
  stroke: url(#gold-fade);
  stroke: rgba(201,162,75,0.55);
  stroke-width: 1.5;
  stroke-dasharray: 8 10;
  animation: flowLine 6s linear infinite;
}
.fp2 { stroke: rgba(255,255,255,0.25); animation-duration: 8s; animation-direction: reverse; }
.fp3 { stroke: rgba(201,162,75,0.3); animation-duration: 10s; }
@keyframes flowLine {
  to { stroke-dashoffset: -200; }
}

/* Animated drone placeholder */
.drone-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.drone-icon .prop {
  fill: rgba(228, 198, 124, 0.28);
  animation: propFlicker 0.5s steps(2) infinite;
}
@keyframes propFlicker {
  50% { fill: rgba(228, 198, 124, 0.5); }
}
.drone-icon .arm {
  stroke: var(--gold-300);
  stroke-width: 2;
}
.drone-icon .body {
  fill: var(--navy-900);
  stroke: var(--gold-300);
  stroke-width: 1.5;
}
.drone-icon .gimbal {
  fill: var(--gold-500);
}
.drone-icon .nav-light {
  fill: #e05b5b;
  animation: blink 1.4s ease-in-out infinite;
}
.drone-bob {
  animation: droneBob 2.6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes droneBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@media (prefers-reduced-motion: reduce) {
  .drone-svg { display: none; }
}
.placeholder-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.rec-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #e05b5b;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,22,38,0.35) 0%, rgba(11,22,38,0.72) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 140px;
  max-width: 720px;
}
.hero-content .eyebrow { color: var(--gold-500); }
.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  color: #fff;
  margin-bottom: 0.4em;
  font-weight: 800;
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 1.5em;
}
.scroll-cue {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 4px; height: 8px;
  background: var(--gold-500);
  border-radius: 2px;
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(0); }
}

/* ---------------- Trust bar (floating glass panel) ---------------- */
.trust-bar {
  position: relative;
  z-index: 3;
  margin-top: -56px;
  padding-bottom: 0;
}
.trust-inner {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 28px 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border-right: 1px solid var(--gray-100);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  font-size: 1.3rem;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201,162,75,0.15), rgba(201,162,75,0.05));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 2px;
  color: var(--text-dark);
}
.trust-item span {
  font-size: 0.78rem;
  color: var(--gray-600);
}

/* ---------------- Sections ---------------- */
.section { padding: 96px 0 88px; }
.section-alt { background: var(--off-white); }
.section-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.section-heading h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-sub { color: var(--gray-600); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service-icon span { font-size: 1.5rem; }
.service-card h3 { font-size: 1.12rem; }
.service-card p { font-size: 0.93rem; margin-bottom: 0; }
.card-arrow {
  position: absolute;
  bottom: 24px;
  right: 28px;
  color: var(--gold-500);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-card:hover .card-arrow { opacity: 1; transform: translateX(0); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 1px var(--gold-500), var(--shadow-lg);
  transform: translateY(-8px);
}
.price-card.featured:hover { transform: translateY(-12px); }
.price-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-950);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-card h3 { font-size: 1rem; }
.price-card .price {
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5em;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}
.price-card li {
  font-size: 0.87rem;
  color: var(--gray-600);
  padding: 8px 0;
  border-top: 1px solid var(--gray-100);
  position: relative;
  padding-left: 22px;
}
.price-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold-600);
  font-weight: 700;
  font-size: 0.8rem;
}
.price-card li:first-child { border-top: none; }

/* Free shoot CTA */
.free-shoot {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  padding: 68px 0;
  overflow: hidden;
}
.free-shoot-glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 15% 30%, rgba(201,162,75,0.18), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(74,110,160,0.25), transparent 45%);
  animation: drift 18s ease-in-out infinite;
}
.free-shoot-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-300);
  background: rgba(201,162,75,0.12);
  border: 1px solid rgba(201,162,75,0.3);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 0 rgba(201,162,75,0.6);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(201,162,75,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(201,162,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,162,75,0); }
}
.free-shoot h2 { color: #fff; max-width: 480px; font-size: 1.7rem; }
.free-shoot p { color: rgba(255,255,255,0.75); max-width: 480px; margin-bottom: 0; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-list { list-style: none; padding: 0; margin-top: 1.5em; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--gray-100);
  color: var(--gray-600);
  font-size: 0.95rem;
}
.about-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-cta {
  background: linear-gradient(160deg, var(--off-white), #fff);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.about-cta h3 { font-size: 1.15rem; }
.orbit-graphic {
  position: relative;
  width: 120px; height: 120px;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
}
.orbit-ring {
  position: absolute;
  border: 1.5px dashed rgba(201,162,75,0.4);
  border-radius: 50%;
}
.ring-1 { inset: 0; animation: spin 14s linear infinite; }
.ring-2 { inset: 18px; border-color: rgba(15,30,51,0.15); animation: spin 10s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit-core {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
.contact-detail {
  margin-top: 20px;
}
.contact-detail strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.contact-detail a {
  color: var(--navy-900);
  font-weight: 600;
  transition: color 0.2s ease;
}
.contact-detail a:hover { color: var(--gold-600); }

.contact-form {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #d7dbe1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.15);
}
.form-status {
  margin-top: 14px;
  font-size: 0.88rem;
  text-align: center;
  min-height: 1.2em;
}
.form-status.success { color: #1a7f4f; }
.form-status.error { color: #b3261e; }

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.6);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--gray-100); padding-bottom: 14px; margin-bottom: 6px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-5px); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .free-shoot-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-content { padding-top: 130px; padding-bottom: 90px; }
  .scroll-cue { display: none; }
  .trust-inner { grid-template-columns: 1fr; }
}

/* Mobile nav open state */
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(11,22,38,0.97);
  backdrop-filter: blur(14px);
  padding: 16px 24px 24px;
  gap: 16px;
}
