/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --off-white: #f7f5f2;
  --accent: #c8922a;
  --accent-dark: #a87520;
  --gray: #6b6b6b;
  --light-gray: #e8e5e0;
  --dark-section: #111111;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  color: var(--black);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 16px 36px;
  font-size: 1.1rem;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 14px 34px;
  font-size: 1.1rem;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--accent); color: var(--white); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.nav-link {
  color: rgba(255,255,255,0.75);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--white); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--accent); }

.btn-nav {
  background: var(--accent);
  color: var(--white);
  padding: 10px 24px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--accent-dark); }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(13,13,13,0.96);
  z-index: 100;
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
  overflow: hidden;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo-horizontal {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  color: var(--white);
  font-size: 1.1rem;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: #aaa;
}
.footer-logo {
  width: 140px;
  margin: 0 auto 20px;
  display: block;
  border-radius: 4px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%),
              url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  padding: 80px 60px 70px 140px;
}
.hero-content {
  max-width: 680px;
  color: var(--white);
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}
.hero-location svg { color: var(--accent); flex-shrink: 0; }
.hero-features {
  list-style: none;
  margin: 24px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.hero-features svg { color: var(--accent); flex-shrink: 0; }
.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-content p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 300;
}

.hero-booking-note {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.hero-arrow {
  display: inline-block;
  animation: bounce-down 1.4s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== PROOF BAR ===== */
.proof-bar {
  background: var(--accent);
  padding: 18px 24px;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.proof-inner span {
  color: var(--white);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ===== MARQUEE BAR ===== */
.marquee-bar {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  color: var(--white);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 6px;
}
.marquee-track .dot {
  color: rgba(255,255,255,0.5);
  padding: 0 2px;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 24px;
}
.section-dark {
  background: var(--dark-section);
  color: var(--white);
}
.section h2, .section-dark h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
}

/* ===== STEPS ===== */
.steps {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
.step {
  text-align: center;
  padding: 32px 24px;
  border-top: 3px solid var(--accent);
}
.step-num {
  display: block;
  font-size: 2.5rem;
  color: var(--accent);
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.step p {
  color: var(--gray);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-marquee-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
}
.testimonial-marquee-track {
  display: flex;
  gap: 24px;
  animation: testimonial-scroll 30s linear infinite;
  width: max-content;
}
.testimonial-marquee-track:hover {
  animation-play-state: paused;
}
.testimonial-card {
  background: #1a1a1a;
  border-left: 3px solid var(--accent);
  padding: 28px 32px;
  border-radius: 2px;
  width: 380px;
  flex-shrink: 0;
}
.stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.quote {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.quote::before { content: '\201C'; }
.quote::after  { content: '\201D'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}
.attribution {
  color: var(--white);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}
.attribution span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 400;
}
@keyframes testimonial-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PACKAGES ===== */
.packages {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.package {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  padding: 40px 32px;
  text-align: center;
  position: relative;
}
.package.featured {
  border-color: var(--accent);
  transform: scale(1.03);
}
.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  padding: 4px 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.package h3 {
  font-size: 1.2rem;
  font-family: 'Instrument Sans', sans-serif;
  color: var(--light-gray);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.price {
  font-size: 3rem;
  color: var(--accent);
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 24px;
}
.package ul {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}
.package ul li {
  border-bottom: 1px solid #2a2a2a;
  color: #ccc;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
}
.package ul li::before { content: ""; }

.service-item { cursor: pointer; }
.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  user-select: none;
}
.service-header::before { content: "✓  "; color: var(--accent); flex-shrink: 0; }
.highlight-feature .service-header::before { content: "✓  "; color: var(--accent); }
.chevron { display: none; }

.service-header::after {
  content: "+";
  flex-shrink: 0;
  color: #555;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  transition: color 0.2s;
}
.service-item.open .service-header::after { content: "−"; }

.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
  padding: 0 0 0 18px;
}
.service-item.open .service-details {
  max-height: 120px;
  padding: 0 0 10px 18px;
}
.service-item.open .service-details:has(.service-example-img) {
  max-height: 360px;
}
.service-example-img {
  display: block;
  width: 100%;
  margin-top: 12px;
  border-radius: 2px;
  object-fit: cover;
}
.highlight-feature {
  color: var(--accent) !important;
  font-weight: 700;
}
.bonus-tag {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5b9bd5;
  border: 1px solid rgba(91,155,213,0.5);
  padding: 1px 6px;
  margin-left: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}
.drone-bonus-item-row .service-header {
  color: #5b9bd5;
}
.drone-bonus-item-row .service-header::before {
  color: #5b9bd5;
}
.drone-bonus-item-row .service-details {
  color: #5b9bd5;
  opacity: 0.75;
}
.drone-bonus-item-row {
  border-top: 1px solid rgba(91,155,213,0.2);
  margin-top: 4px;
}
.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: #aaa;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
}

/* ===== CONTACT FORM ===== */
.contact-sub {
  text-align: center;
  color: var(--gray);
  font-family: 'Instrument Sans', sans-serif;
  margin-bottom: 40px;
}
.booking-form {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 10px 0;
  border: none;
  border-bottom: 1.5px solid var(--light-gray);
  border-radius: 0;
  font-size: 0.95rem;
  font-family: 'Instrument Sans', sans-serif;
  background: transparent;
  color: var(--black);
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #bbb;
}
.booking-form select {
  color: #bbb;
}
.booking-form select:valid,
.booking-form select option:not([disabled]) {
  color: var(--black);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-bottom-color: var(--accent);
}
.booking-form button {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: var(--white);
  max-width: 520px;
  width: 100%;
  padding: 48px 40px 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modal-in 0.2s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal h2 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 8px;
  text-align: left;
}
.modal-value {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 16px;
  font-family: 'Instrument Sans', sans-serif;
}
.modal-value s {
  color: #aaa;
  font-size: 0.95rem;
}
.modal-value-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.modal-value-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 3px 8px;
}
.modal-sub {
  color: var(--gray);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.hidden { display: none !important; }
.form-success {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 500;
  text-align: center;
  padding: 32px 0;
}
.form-section-label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin: 16px 0 4px;
}
.form-section-label:first-of-type {
  margin-top: 0;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--gray);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--black); }

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: #888;
  text-align: center;
  padding: 32px 24px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 2;
}
footer a { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .package.featured { transform: scale(1); }
  .nav-inner { gap: 12px; }
  .logo { font-size: 0.9rem; }
  .nav-phone { display: none; }
}

@media (max-width: 480px) {
  /* Nav */
  nav { padding: 0 16px; }
  .nav-inner { height: 56px; gap: 8px; }
  .nav-link { display: none; }
  .logo-sub { display: none; }
  .logo-text { font-size: 0.95rem; }

  /* Hero */
  .hero {
    padding: 80px 24px 48px;
    align-items: flex-end;
  }
  .hero-content h1 { font-size: 2rem; margin-bottom: 16px; }
  .hero-content p { font-size: 1rem; margin-bottom: 24px; }
  .hero-location { font-size: 0.85rem; }
  .hero-features { gap: 10px; margin: 16px 0 24px; }
  .hero-features li { font-size: 0.95rem; }
  .hero-features svg { width: 18px; height: 18px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas a { text-align: center; }

  /* Packages */
  .packages { grid-template-columns: 1fr; }

  /* Sections */
  section { padding: 48px 20px; }
}
