/* Mobile-First Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Better touch interactions for mobile devices */
  .cta-button,
  .submit-btn,
  .nav-link {
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.3);
  }

  .mobile-menu-btn {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
  }

  /* Disable hover effects on touch devices */
  .nav-link:hover,
  .cta-button:hover,
  .tech-card:hover,
  .spec-card:hover {
    transform: none;
  }

  /* Add active states for better touch feedback */
  .cta-button:active {
    transform: scale(0.96);
    background: var(--primary-dark);
  }

  .nav-link:active {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold-color);
  }
}

/* Improved accessibility for mobile */
@media (max-width: 768px) {
  /* Ensure proper focus indicators for keyboard navigation */
  .mobile-menu-btn:focus,
  .nav-link:focus,
  .cta-button:focus {
    outline: 2px solid var(--gold-color);
    outline-offset: 2px;
  }

  /* Better text readability on mobile */
  body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  /* Prevent zoom on input focus for iOS */
  input,
  select,
  textarea {
    font-size: 16px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1a365d;
  --secondary-color: #2d5a87;
  --accent-color: #4299e1;
  --gold-color: #d4af37;
  --text-dark: #2d3748;
  --text-light: #718096;
  --background-light: #f7fafc;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
  --gradient-secondary: linear-gradient(135deg, #4299e1 0%, #63b3ed 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 54, 93, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(26, 54, 93, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
}

.nav-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-brand i {
  font-size: 1.8rem;
  color: var(--gold-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--gold-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.menu-icon {
  width: 24px;
  height: 18px;
  position: relative;
  margin-bottom: 4px;
}

.menu-line {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.menu-line-1 {
  top: 0;
}

.menu-line-2 {
  top: 8px;
}

.menu-line-3 {
  top: 16px;
}

.menu-text {
  font-size: 0.7rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

/* Active state animations */
.mobile-menu-btn.active .menu-line-1 {
  transform: rotate(45deg) translate(6px, 6px);
  width: 20px;
}

.mobile-menu-btn.active .menu-line-2 {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active .menu-line-3 {
  transform: rotate(-45deg) translate(6px, -6px);
  width: 20px;
}

.mobile-menu-btn.active .menu-text {
  color: var(--gold-color);
  transform: scale(0.9);
}

.mobile-menu-btn.active {
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 20px; /* Add padding for mobile */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.03)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
  background-size: cover;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  overflow-x: hidden;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.title-line {
  display: block;
  background: linear-gradient(45deg, var(--white), var(--gold-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-subtitle {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 10px;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-color);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

.cta-button {
  background: var(--gradient-secondary);
  color: var(--white);
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.concorde-silhouette {
  width: 400px;
  height: 200px;
  background: linear-gradient(45deg, var(--gold-color), #f6e05e);
  clip-path: polygon(0% 50%, 15% 30%, 85% 35%, 100% 50%, 85% 65%, 15% 70%);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: var(--white);
  position: relative;
  animation: scroll 2s infinite;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

@keyframes scroll {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* History Section */
.history {
  padding: 100px 0;
  background: var(--background-light);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-item::before {
  content: attr(data-year);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
}

.timeline-content {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  width: 45%;
  margin: 0 5%;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Specifications Section */
.specifications {
  padding: 100px 0;
  background: var(--white);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.spec-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 54, 93, 0.1);
}

.spec-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-color);
}

.spec-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--white);
}

.spec-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.spec-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.spec-detail {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: var(--background-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.gallery-placeholder i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.gallery-placeholder p {
  font-weight: 500;
  font-size: 1.1rem;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-btn {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--white);
}

/* Legacy Section */
.legacy {
  padding: 100px 0;
  background: var(--white);
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.legacy-card {
  background: var(--background-light);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.legacy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.legacy-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.8rem;
  color: var(--white);
}

.legacy-card h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.legacy-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.legacy-quote {
  background: var(--primary-color);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.legacy-quote blockquote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 25px;
}

.legacy-quote cite {
  font-size: 1rem;
  opacity: 0.8;
}

/* Company Section */
.company {
  padding: 100px 0;
  background: var(--background-light);
}

.company-content {
  max-width: 1200px;
  margin: 0 auto;
}

.company-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  margin-top: 30px;
}

.story-text h3:first-child {
  margin-top: 0;
}

.story-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.competencies-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.competencies-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
  border-bottom: 1px solid rgba(112, 128, 150, 0.1);
}

.competencies-list li:before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
}

.competencies-list li:last-child {
  border-bottom: none;
}

.company-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.company-stat {
  text-align: center;
}

.company-stat .stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.company-stat .stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.story-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.company-logo {
  background: var(--gradient-primary);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.company-logo-img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.company-logo i {
  font-size: 4rem;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.company-logo h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.company-logo p {
  font-size: 1rem;
  opacity: 0.9;
}

.company-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.feature-item {
  background: var(--white);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  width: 30px;
  text-align: center;
}

.feature-item span {
  font-weight: 500;
  color: var(--primary-color);
}

/* Team Section */
.team {
  padding: 100px 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.team-member {
  background: var(--background-light);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.member-photo {
  margin-bottom: 25px;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  border: 3px solid var(--accent-color);
}

.photo-placeholder {
  width: 120px;
  height: 120px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
}

.member-info h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.member-title {
  font-size: 1.1rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.member-bio {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.member-credentials {
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: inline-block;
  font-weight: 500;
}

.advisory-board {
  background: var(--primary-color);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  color: var(--white);
}

.advisory-board h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--white);
}

.advisors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.advisor-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.advisor-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--gold-color);
}

.advisor-item span {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--background-light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--text-light);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.submit-btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-brand i {
  font-size: 1.8rem;
  color: var(--gold-color);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--gold-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

/* Enhanced footer link styles moved to main link styles section above */

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold-color);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Mission Section */
.mission {
  padding: 100px 0;
  background: var(--background-light);
}

.mission-statement {
  text-align: center;
  margin-bottom: 60px;
}

.mission-statement blockquote {
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--primary-color);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.mission-statement blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: -20px;
}

.mission-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.detail-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}

.detail-content h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.detail-content p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Vision Section */
.vision {
  padding: 100px 0;
  background: var(--white);
}

.vision-statement {
  text-align: center;
  margin-bottom: 60px;
}

.vision-statement blockquote {
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--primary-color);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.vision-statement blockquote::before {
  content: '"';
  font-size: 3.5rem;
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: -15px;
}

.vision-goals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.goal-item {
  background: var(--background-light);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.goal-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.goal-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--white);
}

.goal-item h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.goal-item p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Technology Section */
.technology {
  padding: 100px 0;
  background: var(--background-light);
}

.tech-features {
  max-width: 1200px;
  margin: 0 auto;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.sustainability-highlight {
  background: var(--gradient-primary);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  color: var(--white);
  margin-top: 40px;
}

.sustainability-highlight h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.sustainability-highlight p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.tech-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-color);
}

.tech-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--white);
}

.tech-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.tech-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.tech-specs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(112, 128, 150, 0.1);
}

.spec-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.spec-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-color);
}

/* Partnerships Section */
.partnerships {
  padding: 100px 0;
  background: var(--white);
}

.partnership-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.partnership-category {
  background: var(--background-light);
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.partnership-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.category-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
}

.category-header h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.partners-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partner-item {
  background: var(--white);
  padding: 20px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.partner-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.partner-item h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.partner-item p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Investors Section */
.investors {
  padding: 100px 0;
  background: var(--background-light);
}

.investment-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.highlight-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.highlight-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--white);
}

.highlight-card h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.highlight-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.investment-quote {
  background: var(--primary-color);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.investment-quote blockquote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 25px;
}

.investment-quote cite {
  font-size: 1rem;
  opacity: 0.8;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.cta-button.secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

.cta-button.large {
  padding: 18px 35px;
  font-size: 1.2rem;
}

.title-accent {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold-color);
  margin-top: 15px;
  letter-spacing: 2px;
}

/* Routes Section */
.routes {
  padding: 100px 0;
  background: var(--white);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.route-card {
  background: var(--background-light);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 54, 93, 0.1);
}

.route-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-color);
}

.route-cities {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.city-info h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.airport-code {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.route-arrow {
  display: flex;
  align-items: center;
  position: relative;
}

.route-arrow i {
  font-size: 1.5rem;
  color: var(--accent-color);
  z-index: 2;
}

.flight-path {
  position: absolute;
  top: 50%;
  left: -30px;
  right: -30px;
  height: 2px;
  background: var(--gradient-secondary);
  transform: translateY(-50%);
}

.time-comparison {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.concorde-time,
.regular-time {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.concorde-time .time-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.regular-time .time-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: line-through;
}

.time-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 5px;
}

.vs {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  background: var(--white);
  padding: 10px 15px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.route-cta {
  text-align: center;
}

/* Sustainability Section */
.sustainability {
  padding: 100px 0;
  background: var(--gradient-primary);
  color: var(--white);
}

.sustainability .section-title,
.sustainability .section-subtitle {
  color: var(--white);
}

.sustainability-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.feature-highlight {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.feature-highlight .feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gold-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--primary-color);
}

.feature-highlight h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.feature-highlight p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.sustainability-quote {
  text-align: center;
  padding: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.sustainability-quote blockquote {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--gold-color);
}

.sustainability-quote cite {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: var(--background-light);
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
  height: 200px;
  overflow: hidden;
}

.testimonial-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 40px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
}

.testimonial-item.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-item blockquote {
  font-size: 1.8rem;
  font-style: italic;
  color: var(--primary-color);
  margin-bottom: 25px;
  line-height: 1.4;
}

.testimonial-item cite {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.prev-btn,
.next-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--accent-color);
  transform: scale(1.2);
}

/* First Flight Section */
.first-flight {
  padding: 100px 0;
  background: var(--gradient-primary);
  color: var(--white);
}

.first-flight .section-title,
.first-flight .section-subtitle {
  color: var(--white);
}

.first-flight .section-subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-color);
}

.flight-announcement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.announcement-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.announcement-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.booking-feature i {
  color: var(--gold-color);
  font-size: 1.2rem;
}

.countdown-timer {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.countdown-timer h4 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--gold-color);
}

.countdown {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-unit .number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.time-unit .label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Improved paragraph spacing */
p {
  margin-bottom: 1.2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Add more space for paragraphs in content sections */
.hero-description,
.mission-description p,
.vision-description p,
.story-text p,
.member-bio,
.detail-content p,
.goal-item p,
.tech-card p,
.highlight-card p,
.legacy-card p {
  margin-bottom: 1.5rem;
}

/* Extra spacing for blockquotes and their surrounding content */
blockquote {
  margin: 2rem 0;
}

blockquote + p,
blockquote + .mission-description,
blockquote + .vision-description {
  margin-top: 2rem;
}

/* Better spacing in team member cards */
.member-info p {
  margin-bottom: 1.3rem;
}

/* Improved spacing in contact and footer sections */
.contact-details p,
.footer-section p {
  margin-bottom: 1rem;
}

/* Improved Link Styles for Better UX */
/* Default link styles for inline content links */
a:not(.nav-link):not(.cta-button):not(.social-link):not(.filter-btn):not(.submit-btn):not(.footer-links a) {
  color: var(--accent-color);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 3px;
  padding: 1px 3px;
  display: inline;
  background: linear-gradient(120deg, transparent 0%, transparent 50%, rgba(66, 153, 225, 0.1) 50%);
  background-size: 240% 100%;
  background-position: 100% 0;
}

a:not(.nav-link):not(.cta-button):not(.social-link):not(.filter-btn):not(.submit-btn):not(.footer-links a):hover {
  color: var(--primary-color);
  background-position: 0 0;
  box-shadow: 0 2px 4px rgba(66, 153, 225, 0.2);
}

/* Subtle underline effect for inline links */
a:not(.nav-link):not(.cta-button):not(.social-link):not(.filter-btn):not(.submit-btn)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

a:not(.nav-link):not(.cta-button):not(.social-link):not(.filter-btn):not(.submit-btn):hover::after {
  width: 100%;
  background: var(--primary-color);
}

/* Specific styling for inline content links to blend better with text */
.hero-description a,
.story-text a,
.detail-content a,
.goal-item a,
.tech-card a,
.highlight-card a,
.legacy-card a,
.member-bio a {
  font-weight: 500;
  color: var(--accent-color);
  background: linear-gradient(120deg, transparent 0%, transparent 50%, rgba(66, 153, 225, 0.08) 50%);
  background-size: 240% 100%;
  background-position: 100% 0;
  padding: 2px 4px;
  border-radius: 4px;
  margin: 0 1px;
}

.hero-description a:hover,
.story-text a:hover,
.detail-content a:hover,
.goal-item a:hover,
.tech-card a:hover,
.highlight-card a:hover,
.legacy-card a:hover,
.member-bio a:hover {
  color: var(--primary-color);
  background-position: 0 0;
  background-color: rgba(66, 153, 225, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(66, 153, 225, 0.15);
}

/* External link indicator */
a[href^="http"]:not(.social-link)::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path fill="%234299e1" d="M6 1h5v5L9.5 4.5 6 8 4 6l3.5-3.5L6 1z"/><path fill="%234299e1" d="M2 3h2v1H2v6h6V8h1v3H1V3h1z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: baseline;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

a[href^="http"]:not(.social-link):hover::before {
  opacity: 1;
}

/* Enhanced footer links styling */
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 5px 0;
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-color);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-color);
}

.footer-links a:hover::after {
  width: 100%;
}

/* Accessibility and Focus States */
.nav-link:focus,
.cta-button:focus,
.filter-btn:focus,
.submit-btn:focus {
  outline: none;
}

a:focus {
  outline: none;
  background-position: 0 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Skip to main content for screen readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  z-index: 1001;
  border-radius: 4px;
}

.skip-link:focus {
  top: 6px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .concorde-silhouette {
    animation: none;
  }

  .scroll-arrow {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000000;
    --text-dark: #000000;
    --text-light: #333333;
    --accent-color: #0066cc;
  }
}

/* Print styles */
@media print {
  .navbar,
  .hamburger,
  .hero-buttons,
  .cta-button,
  .contact-form,
  .footer {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .hero {
    height: auto;
    background: white;
    color: black;
  }

  .hero-title,
  .section-title {
    color: black;
  }
}

/* Image and media responsiveness */
img {
  max-width: 100%;
  height: auto;
}

/* Utility classes for better responsive control */
.text-center {
  text-align: center;
}

.w-full {
  width: 100%;
}

.hidden-mobile {
  display: block;
}

.show-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }

  .show-mobile {
    display: block;
  }

  .text-center-mobile {
    text-align: center;
  }
}

/* Fix potential text overflow issues */
h1,
h2,
h3,
h4,
h5,
h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p,
span,
div {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Better section padding for mobile */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 2.5rem 0;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  /* Enhanced mobile navigation for small screens */
  .hero-title {
    font-size: 2rem;
  }

  .title-subtitle {
    font-size: 1.3rem;
  }

  .title-accent {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .nav-link {
    font-size: 1.3rem;
    padding: 0.8rem 1.5rem;
  }

  .mobile-menu-btn {
    padding: 6px;
  }

  .menu-icon {
    width: 22px;
    height: 16px;
  }

  .menu-text {
    font-size: 0.65rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat {
    padding: 0.8rem;
    min-width: 80px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .concorde-silhouette {
    width: 240px;
    height: 120px;
  }

  /* Better touch targets for small screens */
  .nav-brand {
    font-size: 1.3rem;
  }

  .nav-logo {
    width: 35px;
    height: 35px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.98) 0%, rgba(30, 64, 175, 0.98) 50%, rgba(26, 54, 93, 0.98) 100%);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding: 0;
    transform: translateX(-100%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
  }

  .nav-menu.active .nav-item {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu.active .nav-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-menu.active .nav-item:nth-child(2) {
    transition-delay: 0.15s;
  }
  .nav-menu.active .nav-item:nth-child(3) {
    transition-delay: 0.2s;
  }
  .nav-menu.active .nav-item:nth-child(4) {
    transition-delay: 0.25s;
  }
  .nav-menu.active .nav-item:nth-child(5) {
    transition-delay: 0.3s;
  }
  .nav-menu.active .nav-item:nth-child(6) {
    transition-delay: 0.35s;
  }
  .nav-menu.active .nav-item:nth-child(7) {
    transition-delay: 0.4s;
  }
  .nav-menu.active .nav-item:nth-child(8) {
    transition-delay: 0.45s;
  }

  .nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
  }

  .nav-link:hover::before {
    left: 100%;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    color: var(--gold-color);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }

  .nav-link::after {
    display: none;
  }

  /* Enhanced navbar for mobile */
  .navbar {
    padding: 1rem 0;
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
  }

  .nav-container {
    padding: 0 1.5rem;
  }

  .nav-brand {
    z-index: 1001;
    position: relative;
  }

  /* Body scroll lock when menu is open */
  body.menu-open {
    overflow: hidden;
    height: 100vh;
  }

  /* Enhanced mobile hero section */
  .hero {
    min-height: 100vh;
    height: auto;
    padding: 100px 0 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 2rem 1rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Hide hero image on mobile for cleaner layout */
  .hero-image {
    display: none;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .title-subtitle {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-top: 0.5rem;
  }

  .title-accent {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    line-height: 1.4;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 1.5rem 0;
    padding: 0 0.5rem;
    max-width: 100%;
    word-wrap: break-word;
  }

  .hero-stats {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
    max-width: 100%;
  }

  .stat {
    min-width: 100px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .hero-buttons {
    margin-top: 2rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-height: 48px; /* Better touch target */
    touch-action: manipulation;
  }

  .section-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    padding: 0 1rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  /* Better spacing for mobile sections */
  section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  /* Enhanced button styles for mobile */
  .cta-button,
  .submit-btn {
    min-height: 48px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 12px;
    touch-action: manipulation;
    transition: all 0.3s ease;
  }

  .cta-button:active,
  .submit-btn:active {
    transform: scale(0.98);
  }

  /* Better card layouts for mobile */
  .spec-card,
  .tech-card,
  .legacy-card,
  .team-member {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 16px;
  }

  /* Enhanced form styling for mobile */
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 48px;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 12px;
    touch-action: manipulation;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .timeline-item {
    flex-direction: column !important;
  }

  .timeline-content {
    width: 90%;
    margin: 0 5%;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item::before {
    left: 20px;
    transform: translateX(-50%);
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Company Section Mobile */
  .company-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .company-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .company-features {
    grid-template-columns: 1fr;
  }

  .story-text h3 {
    font-size: 1.5rem;
  }

  .story-text p {
    font-size: 1rem;
  }

  .company-logo {
    padding: 30px;
  }

  .company-logo i {
    font-size: 3rem;
  }

  .company-logo h4 {
    font-size: 1.5rem;
  }

  /* Team Section Mobile */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .team-member {
    padding: 25px;
  }

  .photo-placeholder {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  .member-info h3 {
    font-size: 1.3rem;
  }

  .member-title {
    font-size: 1rem;
  }

  .member-bio {
    font-size: 0.9rem;
  }

  .advisory-board {
    padding: 30px 20px;
  }

  .advisory-board h3 {
    font-size: 1.5rem;
  }

  .advisors-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .advisor-item {
    padding: 15px;
  }

  .advisor-item strong {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 90px 0 30px;
    min-height: 100vh;
  }

  .hero-content {
    padding: 1rem 0.5rem;
    gap: 20px;
  }

  /* Keep hero image hidden on small mobile too */
  .hero-image {
    display: none;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
  }

  .title-subtitle {
    font-size: 1.1rem;
    margin-top: 0.3rem;
  }

  .title-accent {
    font-size: 0.95rem;
    margin-top: 0.3rem;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 1rem 0;
    padding: 0 0.25rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
    margin: 1.5rem 0;
  }

  .stat {
    min-width: auto;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 0.8rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  /* Company Section Small Mobile */
  .company-stats {
    gap: 15px;
  }

  .company-stat .stat-number {
    font-size: 1.8rem;
  }

  .feature-item {
    padding: 15px;
  }

  .feature-item i {
    font-size: 1.2rem;
  }

  /* Team Section Small Mobile */
  .team-member {
    padding: 20px;
  }

  .photo-placeholder {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .member-info h3 {
    font-size: 1.2rem;
  }

  .member-bio {
    font-size: 0.85rem;
  }

  .advisory-board {
    padding: 25px 15px;
  }
}

/* Mission, Vision, and Technology Sections Mobile */
@media (max-width: 768px) {
  .mission-details {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .detail-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    align-items: center;
  }

  .detail-icon {
    margin-bottom: 5px;
  }

  .mission-statement blockquote,
  .vision-statement blockquote {
    font-size: 1.3rem;
    padding: 0 20px;
  }

  .mission-statement blockquote::before,
  .vision-statement blockquote::before {
    font-size: 2.5rem;
    left: 10px;
  }

  .vision-goals {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .sustainability-highlight {
    padding: 30px 20px;
  }

  .sustainability-highlight h3 {
    font-size: 1.5rem;
  }

  /* Investment and Partnership Sections Mobile */
  .investment-highlights {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .partnership-categories {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .investment-quote {
    padding: 30px 20px;
  }

  .investment-quote blockquote {
    font-size: 1.2rem;
  }

  /* Hero Buttons Mobile */
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .cta-button.large {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Additional Small Mobile Fixes */
@media (max-width: 480px) {
  .hero-description {
    font-size: 1rem;
  }

  .mission-details {
    gap: 25px;
  }

  .detail-item {
    gap: 12px;
  }

  .detail-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .mission-statement blockquote,
  .vision-statement blockquote {
    font-size: 1.1rem;
    padding: 0 15px;
  }

  .mission-statement blockquote::before,
  .vision-statement blockquote::before {
    font-size: 2rem;
    left: 5px;
  }

  .detail-content h3,
  .goal-item h3,
  .tech-card h3 {
    font-size: 1.1rem;
  }

  .detail-content p,
  .goal-item p,
  .tech-card p {
    font-size: 0.9rem;
  }

  .sustainability-highlight h3 {
    font-size: 1.3rem;
  }

  .sustainability-highlight p {
    font-size: 1rem;
  }

  .investment-quote blockquote {
    font-size: 1rem;
  }

  .cta-button.large {
    padding: 15px 25px;
    font-size: 1rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .title-subtitle {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .hero-stats {
    gap: 30px;
  }

  .concorde-silhouette {
    width: 350px;
    height: 175px;
  }

  .mission-details {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .vision-goals {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .investment-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

/* Touch-friendly buttons */
@media (hover: none) and (pointer: coarse) {
  .cta-button,
  .filter-btn,
  .submit-btn {
    min-height: 44px; /* iOS recommendation */
    padding: 12px 24px;
  }
}

/* Notification System Styles */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 10000;
  max-width: 350px;
  min-width: 300px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.notification-success .notification-content {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.notification-error .notification-content {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.notification-info .notification-content {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
}

.notification-message {
  flex: 1;
  font-weight: 500;
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  margin-left: 15px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.notification-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Loading state for submit button */
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-btn .fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Mobile notification adjustments */
@media (max-width: 480px) {
  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
    min-width: auto;
  }
}
