/* CSS Variables */
:root {
  --primary: #000000;
  --primary-foreground: #FFFFFF;
  --secondary: #8b5cf6;
  --secondary-foreground: #FFFFFF;
  --accent: #dc2626;
  --accent-foreground: #111827;
  --background: #FFFFFF;
  --foreground: #111827;
  --card: #FFFFFF;
  --card-foreground: #111827;
  --border: #E5E7EB;
  --input: #E5E7EB;
  --ring: #000000;
  --muted: #F3F4F6;
  --muted-foreground: #6B7280;
  --font-family: 'Open Sans', sans-serif;
  --radius: 0.75rem;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--muted-foreground);
}

.text-lg {
  font-size: 1.125rem;
}

.text-sm {
  font-size: 0.875rem;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.mb-4 {
  margin-bottom: 1rem;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Buttons */
.btn-primary,
.btn-outline {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background: var(--secondary);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* Form Elements */
.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--input);
  background: var(--background);
  color: var(--foreground);
  font-family: inherit;
  border-radius: 0;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Icons */
.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-md {
  width: 24px;
  height: 24px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

/* Animation Classes */
.animate-slide-in {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s ease-out;
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(40px);
}

/* Top Bar */
.topbar {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-contact {
  display: flex;
  gap: 1.5rem;
}

.topbar-contact span,
.topbar-hours span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar a {
  color: var(--primary-foreground);
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .topbar-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .topbar-contact {
    gap: 1rem;
  }
}

/* Header & Navigation */
.header {
  background: var(--background);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.navbar-brand .logo-img {
  height: 40px;
  width: auto;
}

.navbar-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

.flyingfbvi_mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-link {
  color: var(--foreground);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: block;
}

.mobile-link:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .flyingfbvi_mobile-menu {
    display: flex;
  }
  
  .flyingfbvi_mobile-menu.hidden {
    display: none;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 4rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  .9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
    min-height: 60vh;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .hero-img {
    height: 300px;
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
  padding: 4rem 0;
  text-align: center;
}

.page-header-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--foreground);
}

.page-header-content p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-header-content h1 {
    font-size: 2rem;
  }
  
  .page-header-content p {
    font-size: 1.125rem;
  }
}

/* Sections */
.section-about-preview,
.section-features,
.section-newsletter,
.section-testimonials,
.section-team-preview,
.section-stats,
.section-services,
.section-categories,
.section-process,
.section-story,
.section-values,
.section-approach,
.section-achievements,
.section-company-info,
.section-mission,
.section-contact,
.section-contact-options,
.section-faq,
.section-pricing,
.section-included,
.section-process-timeline,
.section-pricing-faq,
.section-team,
.section-team-values,
.section-team-qualifications,
.section-join-team {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
}

.section-about-preview:nth-child(even),
.section-features:nth-child(even),
.section-newsletter:nth-child(even),
.section-testimonials:nth-child(even),
.section-team-preview:nth-child(even),
.section-stats:nth-child(even) {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--foreground);
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* About Preview */
.about-preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-features {
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.feature-content h4 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.feature-content p {
  margin: 0;
  color: var(--muted-foreground);
}

.about-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-preview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Feature Cards */
.features-grid {
  margin-top: 3rem;
}

.feature-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.feature-card h3 {
  margin: 1rem 0;
  font-weight: 600;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--muted-foreground);
  margin: 0;
}

/* Newsletter */
.newsletter-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--border);
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  font-weight: 700;
}

.newsletter-content p {
  margin: 0 0 2rem 0;
  color: var(--muted-foreground);
}

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
}

.newsletter-form .form-input {
  flex: 1;
}

@media (max-width: 768px) {
  .newsletter-card {
    padding: 2rem;
  }
  
  .newsletter-form .form-group {
    flex-direction: column;
  }
}

/* Testimonials */
.testimonials-grid {
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star-icon {
  width: 16px;
  height: 16px;
  color: #fbbf24;
  fill: currentColor;
}

.testimonial-content p {
  margin: 0 0 1.5rem 0;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

/* Team Preview */
.team-preview-grid {
  margin-top: 3rem;
}

.team-member-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.member-avatar {
  margin-bottom: 1rem;
}

.avatar-icon {
  width: 64px;
  height: 64px;
  color: var(--muted-foreground);
}

.member-info h4 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.member-info p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.team-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Stats */
.stats-grid {
  margin-top: 3rem;
}

.stat-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
}

.stat-content h3 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.stat-content p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* CTA Section */
.section-cta {
  background: var(--background);
  padding: 3rem 0;
}

.cta-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--border);
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  font-weight: 700;
}

.cta-content p {
  margin: 0 0 2rem 0;
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-card {
    padding: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Services Accordion */
.services-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.service-item {
  border: 1px solid var(--border);
  margin-bottom: 0;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  cursor: pointer;
  background: var(--card);
  color: var(--card-foreground);
  transition: background-color 0.3s ease;
}

.service-header:hover {
  background: var(--muted);
}

.service-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

.service-title h3 {
  margin: 0;
  font-weight: 600;
}

.chevron-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.service-item.active .chevron-icon {
  transform: rotate(180deg);
}

.service-content {
  padding: 1rem;
  background: var(--background);
  display: none;
}

.service-item.active .service-content {
  display: block;
}

.service-features {
  margin: 1.5rem 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.service-cta {
  margin-top: 1.5rem;
}

/* Categories */
.categories-grid {
  margin-top: 3rem;
}

.category-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.category-card h3 {
  margin: 1rem 0;
  font-weight: 600;
}

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

/* Process Steps */
.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h4 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.step-content p {
  margin: 0;
  color: var(--muted-foreground);
}

/* Story Section */
.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  margin: 0 0 1.5rem 0;
  font-size: 2rem;
  font-weight: 700;
}

.story-text p {
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
}

.story-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-img {
    height: 300px;
  }
}

/* Values */
.values-grid {
  margin-top: 3rem;
}

.value-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.value-card h3 {
  margin: 1rem 0;
  font-weight: 600;
}

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

/* Approach */
.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.approach-text h2 {
  margin: 0 0 1.5rem 0;
  font-size: 2rem;
  font-weight: 700;
}

.approach-text > p {
  margin-bottom: 2rem;
  color: var(--muted-foreground);
}

.approach-features {
  margin-top: 2rem;
}

.approach-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .approach-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Achievements */
.achievements-grid {
  margin-top: 3rem;
}

.achievement-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
}

.achievement-content h3 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.achievement-content p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Company Info */
.company-info-content {
  max-width: 600px;
  margin: 0 auto;
}

.company-info-content h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
}

.company-details {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
}

.detail-row {
  display: flex;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row strong {
  flex: 0 0 200px;
  font-weight: 600;
}

.detail-row span {
  flex: 1;
  color: var(--muted-foreground);
}

/* Mission Statement */
.mission-statement {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mission-statement h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 2rem 0;
  color: var(--primary);
}

.mission-text {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .mission-statement h2 {
    font-size: 2rem;
  }
  
  .mission-text {
    font-size: 1.125rem;
  }
}

/* Contact Page */
.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.flyingfbvi_contact-form-section h2 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  font-weight: 700;
}

.flyingfbvi_contact-form-section > p {
  margin-bottom: 2rem;
  color: var(--muted-foreground);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--input);
  background: var(--background);
  color: var(--foreground);
  font-family: inherit;
  border-radius: 0;
}

.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--input);
  background: var(--background);
  color: var(--foreground);
  font-family: inherit;
  border-radius: 0;
  resize: vertical;
  min-height: 120px;
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border: 1px solid #c3e6cb;
  margin-top: 2rem;
  text-align: center;
}

.success-message h3 {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.success-message p {
  margin: 0.5rem 0 0 0;
}

.contact-card,
.location-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.contact-card h3,
.location-card h3 {
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.contact-card > p {
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-text h4 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.contact-text p {
  margin: 0;
  color: var(--muted-foreground);
}

.contact-text a {
  color: var(--primary);
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

.map-placeholder {
  text-align: center;
  padding: 2rem;
  background: var(--muted);
  color: var(--muted-foreground);
}

.map-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem auto;
  display: block;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Contact Options */
.contact-options-grid {
  margin-top: 3rem;
}

.contact-option-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.contact-option-card h3 {
  margin: 1rem 0;
  font-weight: 600;
}

.contact-option-card p {
  margin: 0 0 1.5rem 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
}

.faq-item h4 {
  margin: 0 0 1rem 0;
  font-weight: 600;
  color: var(--primary);
}

.faq-item p {
  margin: 0;
  color: var(--muted-foreground);
}

/* Pricing */
.pricing-grid {
  margin-top: 3rem;
}

.pricing-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
  position: relative;
  text-align: center;
}

.pricing-card.featured {
  border-color: var(--primary);
  border-width: 2px;
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-header h3 {
  margin: 1rem 0 0.5rem 0;
  font-weight: 600;
  font-size: 1.25rem;
}

.pricing-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 0;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.pricing-cta {
  margin-top: 1.5rem;
}

/* Included Features */
.included-grid {
  margin-top: 3rem;
}

.included-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
}

.included-content h4 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.included-content p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Timeline */
.timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-marker {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-content {
  flex: 1;
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
}

.timeline-content h4 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.timeline-content p {
  margin: 0 0 0.5rem 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.timeline-duration {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

/* Team Page */
.team-grid {
  margin-top: 3rem;
}

.team-member-card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
}

.team-member-card .member-avatar {
  text-align: center;
  margin-bottom: 1rem;
}

.team-member-card .member-info h3 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  color: var(--primary);
}

.member-role {
  font-weight: 500;
  color: var(--secondary);
  margin: 0 0 1rem 0;
}

.member-description {
  margin: 0 0 1.5rem 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.member-expertise h4 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  font-size: 0.875rem;
}

.member-expertise ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.member-expertise li {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
  padding-left: 1rem;
  position: relative;
}

.member-expertise li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Team Values */
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
}

.value-content h3 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.value-content p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Team Qualifications */
.qualifications-content {
  max-width: 800px;
  margin: 0 auto;
}

.qualification-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.qualification-category {
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
}

.qualification-category h3 {
  margin: 0 0 1rem 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qualification-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qualification-category li {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.qualification-category li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

@media (max-width: 768px) {
  .qualification-categories {
    grid-template-columns: 1fr;
  }
}

/* Join Team */
.join-team-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.join-team-content h2 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  font-weight: 700;
}

.join-team-content > p {
  margin: 0 0 2rem 0;
  color: var(--muted-foreground);
}

.join-team-benefits {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
  text-align: left;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border: 1px solid var(--border);
}

/* Legal Content */
.legal-content {
  padding: 3rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--foreground);
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
  color: var(--foreground);
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.last-updated {
  font-style: italic;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.company-details,
.contact-details {
  background: var(--muted);
  padding: 1rem;
  margin: 1rem 0;
  border-left: 4px solid var(--primary);
}

.company-details p,
.contact-details p {
  margin: 0.5rem 0;
}

/* Cookie Table */
.cookie-table {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  color: var(--card-foreground);
}

.cookie-table th,
.cookie-table td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid var(--border);
}

.cookie-table th {
  background: var(--muted);
  font-weight: 600;
}

.cookie-table td {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Cookie Consent */
.flyingfbvi_cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  color: var(--card-foreground);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  z-index: 10000;
}

.flyingfbvi_cookie-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.flyingfbvi_cookie-banner-text {
  flex: 1;
}

.flyingfbvi_cookie-banner-text p {
  margin: 0;
  font-size: 0.875rem;
}

.flyingfbvi_cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.flyingfbvi_cookie-banner-actions button {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .flyingfbvi_cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .flyingfbvi_cookie-banner-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Cookie Modal */
.flyingfbvi_cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flyingfbvi_cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.flyingfbvi_cookie-modal-content {
  background: var(--card);
  color: var(--card-foreground);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  border: 1px solid var(--border);
}

.cookie-toggles {
  margin: 1.5rem 0;
}

.flyingfbvi_cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.flyingfbvi_cookie-toggle-row:last-child {
  border-bottom: none;
}

.flyingfbvi_cookie-toggle-row div {
  flex: 1;
}

.flyingfbvi_cookie-toggle-row input[type="checkbox"] {
  margin-left: 1rem;
}

.flyingfbvi_cookie-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .flyingfbvi_cookie-modal-content {
    padding: 1.5rem;
  }
  
  .flyingfbvi_cookie-modal-actions {
    flex-direction: column;
  }
}

/* Footer */
.footer {
  background: var(--muted);
  color: var(--foreground);
  padding: 3rem 0 1rem 0;
}

.footer a {
  color: var(--primary);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  margin: 0 0 1rem 0;
  font-weight: 600;
  color: var(--foreground);
}

.footer-column p {
  margin: 0 0 1rem 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column li a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-column li a:hover {
  color: var(--primary);
}

.company-info {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.company-info p {
  margin: 0.25rem 0;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.contact-info {
  font-size: 0.875rem;
}

.contact-info p {
  margin: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-legal p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* === CLASS ALIAS FIXES (injected by engine) === */
.hero-text { /* alias for .hero-content */ }
.hero-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* === BASELINE SAFETY CSS (injected by engine) === */

/* Ensure .hidden works consistently even with ID-specific overrides */
.hidden { display: none !important; }

/* Prevent content overflow breaking layout */
img, video, iframe { max-width: 100%; height: auto; }
* { box-sizing: border-box; }

/* Ensure container has responsive padding */
.container { width: 100%; max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }

/* Prevent flex/grid children from overflowing */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive grid fallbacks */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Ensure forms don't break layout */
.form-input, input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  max-width: 100%;
}

/* Success message styling */
.success-message {
  margin-top: 1rem;
  padding: 1rem;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 0.5rem;
  color: #065f46;
  text-align: center;
}

/* Stacking context for hero sections — prevents z-index:-1 children from going behind the page */
.hero, .hero-section, .page-header, .cta, .cta-section { isolation: isolate; position: relative; }

/* Desktop nav injected by engine — show on desktop, hide on mobile */
.nav-menu { display: flex; align-items: center; gap: 1.5rem; }
.nav-menu .nav-link { text-decoration: none; color: var(--foreground, #1f2937); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-menu .nav-link:hover { color: var(--primary, #2563eb); }
@media (max-width: 768px) {
  .nav-menu { display: none !important; }
}

/* Fixed header body padding safety */
body { min-height: 100vh; }

/* Prevent long words breaking layout */
h1, h2, h3, h4, p, li, td, th { overflow-wrap: break-word; word-wrap: break-word; }

/* === END BASELINE SAFETY CSS === */

/* Cookie banner visibility rules */
#flyingfbvi_cookie-banner.hidden, #cookie-consent-banner.hidden { display: none !important; }
#flyingfbvi_cookie-banner:not(.hidden), #cookie-consent-banner:not(.hidden) { display: block !important; }
#flyingfbvi_cookie-modal.hidden { display: none !important; }
.hidden { display: none !important; }
