/* CSS Variables */
:root {
  --primary: #64748b;
  --primary-foreground: #FFFFFF;
  --secondary: #F59F0A;
  --secondary-foreground: #111827;
  --accent: #16A249;
  --accent-foreground: #111827;
  --background: #0F172A;
  --foreground: #F8FAFC;
  --card: #1E293B;
  --card-foreground: #F8FAFC;
  --border: #334155;
  --input: #334155;
  --ring: #64748b;
  --muted: #1E293B;
  --muted-foreground: #94A3B8;
  --font-family: 'Roboto', sans-serif;
  --radius: 0.25rem;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin: 0 0 1rem 0;
}

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

a:hover {
  text-decoration: underline;
}

/* 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;
  }
}

/* Buttons */
.btn-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: underline;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

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

.form-input:focus {
  outline: none;
  border-color: var(--primary);
}

/* Success Message */
.success-message {
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 2rem;
}

.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success-icon {
  width: 3rem;
  height: 3rem;
  color: var(--accent-foreground);
}

/* Icons */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--muted);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

.icon-xl {
  width: 4rem;
  height: 4rem;
}

/* Header */
.header {
  background: transparent;
  position: relative;
  z-index: 1000;
  padding: 1rem 0;
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.nav-logo .logo-img {
  height: 3rem;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-links a {
  color: var(--foreground);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  text-decoration: none;
}

.aerotripoxum_mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.aerotripoxum_mobile-menu {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1rem;
}

.aerotripoxum_mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aerotripoxum_mobile-menu li {
  margin-bottom: 0.5rem;
}

.aerotripoxum_mobile-menu a {
  color: var(--card-foreground);
  display: block;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .aerotripoxum_mobile-menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  background: var(--primary);
  color: var(--primary-foreground);
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.8);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.hero-feature-image {
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
}

/* Page Header */
.page-header {
  background: var(--muted);
  color: var(--foreground);
  padding: 7rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.8;
}

/* Sections */
section {
  padding: 7rem 0;
}

section:nth-child(even) {
  background: var(--muted);
  color: var(--foreground);
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  opacity: 0.8;
}

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

.cta-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 4rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.cta-card:hover {
  transform: scale(1.03);
}

.cta-content h2 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

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

/* FAQ Preview */
.faq-preview-section {
  background: var(--background);
  color: var(--foreground);
}

.faq-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.faq-preview-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: transform 0.3s ease;
}

.faq-preview-card:hover {
  transform: scale(1.03);
}

.faq-preview-card h3 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.faq-preview-card p {
  color: var(--card-foreground);
}

.faq-preview-cta {
  text-align: center;
}

/* Newsletter */
.newsletter-section {
  background: var(--muted);
  color: var(--foreground);
}

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

.newsletter-text h2 {
  margin-bottom: 1rem;
}

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

.newsletter-signup {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.newsletter-signup input {
  flex: 1;
}

@media (max-width: 768px) {
  .newsletter-content {
    grid-template-columns: 1fr;
  }
  
  .newsletter-signup {
    flex-direction: column;
  }
}

/* Stats Section */
.stats-section {
  background: var(--background);
  color: var(--foreground);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0 0.5rem 0;
}

.stat-label {
  font-size: 1.125rem;
  color: var(--foreground);
}

/* About Preview */
.about-preview-section {
  background: var(--muted);
  color: var(--foreground);
}

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

.about-preview-text h2 {
  margin-bottom: 1.5rem;
}

.about-preview-text p {
  margin-bottom: 1.5rem;
}

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

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.about-image {
  border-radius: var(--radius);
}

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

/* Team Preview */
.team-preview-section {
  background: var(--background);
  color: var(--foreground);
}

.team-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.team-member-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member-card:hover {
  transform: scale(1.03);
}

.team-member-icon {
  margin-bottom: 1rem;
}

.team-member-card h3 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.team-member-card p {
  color: var(--card-foreground);
}

.team-preview-cta {
  text-align: center;
}

/* Partners */
.partners-section {
  background: var(--muted);
  color: var(--foreground);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  text-align: center;
}

.partner-logo span {
  color: var(--card-foreground);
  font-weight: 500;
}

/* Services Page */
.services-overview {
  background: var(--background);
  color: var(--foreground);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--card);
  padding: 3rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
}

.service-card-reverse {
  background: var(--muted);
}

.service-card-reverse .service-content {
  order: 2;
}

.service-card-reverse .service-image {
  order: 1;
}

.service-content h3 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--card-foreground);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.service-img {
  border-radius: var(--radius);
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .service-card {
    grid-template-columns: 1fr;
  }
  
  .service-card-reverse .service-content,
  .service-card-reverse .service-image {
    order: unset;
  }
}

/* Service Features */
.service-features {
  background: var(--muted);
  color: var(--foreground);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.03);
}

.feature-card h3 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

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

/* Pricing */
.pricing-section {
  background: var(--background);
  color: var(--foreground);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.03);
}

.pricing-featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

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

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.currency {
  font-size: 1.5rem;
  color: var(--primary);
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}

.period {
  color: var(--card-foreground);
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--card-foreground);
}

.check-icon {
  color: var(--accent);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.pricing-action {
  text-align: center;
}

/* About Page */
.company-story {
  background: var(--background);
  color: var(--foreground);
}

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

.story-text h2 {
  margin-bottom: 1.5rem;
}

.story-text p {
  margin-bottom: 1.5rem;
}

.story-img {
  border-radius: var(--radius);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

/* Mission and Values */
.mission-values {
  background: var(--muted);
  color: var(--foreground);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: scale(1.03);
}

.value-card h3 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--card-foreground);
}

/* Team Section */
.team-section {
  background: var(--background);
  color: var(--foreground);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.team-member {
  display: flex;
  gap: 2rem;
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
}

.team-member-image {
  flex-shrink: 0;
}

.team-icon {
  width: 4rem;
  height: 4rem;
  color: var(--primary);
}

.team-member-info h3 {
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member-info p {
  color: var(--card-foreground);
  margin-bottom: 1.5rem;
}

.team-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.expertise-tag {
  background: var(--muted);
  color: var(--foreground);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-member {
    flex-direction: column;
    text-align: center;
  }
}

/* Achievements */
.achievements-section {
  background: var(--muted);
  color: var(--foreground);
}

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

.achievement-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.achievement-content h3 {
  margin-bottom: 1rem;
}

.achievements-img {
  border-radius: var(--radius);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

/* Contact Page */
.contact-info-bar {
  background: var(--background);
  color: var(--foreground);
  padding: 4rem 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
}

.contact-info-content h3 {
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  color: var(--card-foreground);
  margin: 0;
}

.contact-info-content a {
  color: var(--primary);
}

/* Contact Form */
.aerotripoxum_contact-form-section {
  background: var(--muted);
  color: var(--foreground);
}

.aerotripoxum_contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

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

.aerotripoxum_contact-form-header h2 {
  margin-bottom: 1rem;
}

.aerotripoxum_contact-form {
  background: var(--card);
  padding: 3rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--card-foreground);
  font-weight: 500;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-text {
  color: var(--card-foreground);
  font-size: 0.875rem;
  line-height: 1.4;
}

.form-actions {
  text-align: center;
  margin-top: 2rem;
}

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

/* Additional Contact Options */
.additional-contact {
  background: var(--background);
  color: var(--foreground);
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-option-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-option-card:hover {
  transform: scale(1.03);
}

.contact-option-card h3 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.contact-option-card p {
  color: var(--card-foreground);
  margin-bottom: 2rem;
}

/* Legal Content */
.legal-content {
  background: var(--background);
  color: var(--foreground);
  padding: 4rem 0;
}

.legal-header {
  text-align: center;
  margin-bottom: 4rem;
}

.legal-header h1 {
  margin-bottom: 1rem;
}

.legal-intro {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.legal-updated {
  color: var(--muted-foreground);
  font-style: italic;
}

.legal-sections {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.legal-section h3 {
  margin: 2rem 0 1rem 0;
  font-size: 1.25rem;
}

.legal-section ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.contact-details {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  margin-top: 2rem;
}

.contact-details p {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.contact-details a {
  color: var(--primary);
}

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

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
}

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

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

.cookie-table td {
  color: var(--card-foreground);
}

/* FAQ */
.faq-section {
  background: var(--background);
  color: var(--foreground);
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-intro h2 {
  margin-bottom: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--muted);
}

.faq-question h3 {
  color: var(--card-foreground);
  margin: 0;
  font-size: 1.125rem;
}

.faq-icon {
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

/* FAQ Contact CTA */
.faq-contact-cta {
  background: var(--muted);
  color: var(--foreground);
  padding: 4rem 0;
}

.faq-contact-cta .cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-text {
  margin-bottom: 2rem;
}

.cta-text h2 {
  margin-bottom: 1rem;
}

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

/* Blog */
.blog-section {
  background: var(--background);
  color: var(--foreground);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.blog-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: scale(1.03);
}

.blog-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-category {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
}

.blog-date {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.blog-content h2 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blog-content p {
  color: var(--card-foreground);
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tag {
  background: var(--muted);
  color: var(--foreground);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
}

/* Newsletter CTA */
.newsletter-cta-section {
  background: var(--muted);
  color: var(--foreground);
}

.newsletter-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-cta-text {
  margin-bottom: 2rem;
}

.newsletter-cta-text h2 {
  margin-bottom: 1rem;
}

.newsletter-cta-form {
  margin-bottom: 1rem;
}

.newsletter-disclaimer {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 1rem 0 0 0;
}

/* Cookie Banner */
.aerotripoxum_cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 2px solid var(--border);
  z-index: 1000;
  padding: 1rem 0;
}

.aerotripoxum_cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.aerotripoxum_cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.aerotripoxum_cookie-banner-text p {
  color: var(--card-foreground);
  margin: 0;
  font-size: 0.875rem;
}

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

.aerotripoxum_cookie-banner-actions button {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

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

.aerotripoxum_cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}

.aerotripoxum_cookie-modal-content {
  position: relative;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.aerotripoxum_cookie-modal-content h3 {
  color: var(--card-foreground);
}

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

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

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

.aerotripoxum_cookie-toggle-row p {
  color: var(--card-foreground);
  margin: 0;
}

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

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

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

.footer-column h3 {
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.footer-column p {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-contact p {
  margin-bottom: 1rem;
}

.footer-contact a {
  color: var(--primary);
}

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

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

.footer-links a {
  color: var(--primary);
  font-size: 0.875rem;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.business-hours p {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.footer-legal-links {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-legal-links a {
  color: var(--primary);
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}

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

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

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .aerotripoxum_cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
  
  .aerotripoxum_cookie-banner-actions {
    justify-content: center;
  }
}

/* Animation Classes */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.fade-up {
  
  transform: translateY(2rem);
  transition: all 0.6s ease;
}

.scale-in {
  
  transform: scale(0.95);
  transition: all 0.6s ease;
}

/* === CLASS ALIAS FIXES (injected by engine) === */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

/* === 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 */
#aerotripoxum_cookie-banner.hidden, #cookie-consent-banner.hidden { display: none !important; }
#aerotripoxum_cookie-banner:not(.hidden), #cookie-consent-banner:not(.hidden) { display: block !important; }
#aerotripoxum_cookie-modal.hidden { display: none !important; }
.hidden { display: none !important; }

/* === AEROTRIPOXUM: Missing classes + fixes === */

/* hero-image (right side) */
.hero-image {
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-image img, .hero-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
@media (max-width: 768px) { .hero-image { height: 260px; } }

/* Image layouts */
.about-preview-image, .achievements-image, .story-image {
  height: 420px; border-radius: var(--radius); overflow: hidden;
}
.about-preview-image img, .achievements-image img, .story-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.achievements-text { display: flex; flex-direction: column; gap: 1rem; }
.achievements-text p { color: var(--muted-foreground); }

/* Blog image */
.blog-image { height: 220px; border-radius: var(--radius); overflow: hidden; margin-bottom: 1.25rem; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Partner icon */
.partner-icon { color: var(--muted-foreground); }

/* Utility classes */
.navbar { background: var(--card); border-bottom: 1px solid var(--border); padding: 1rem 0; position: sticky; top: 0; z-index: 100; }
.nav-brand { font-size: 1.25rem; font-weight: 700; color: var(--foreground); text-decoration: none; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.font-bold { font-weight: 700; }
.text-xl { font-size: 1.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-8 { margin-top: 2rem; }

/* Table */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.table-full { width: 100%; border-collapse: collapse; border: 1px solid var(--border); }
.table-head { background: var(--muted); }
.table-cell { border: 1px solid var(--border); padding: 0.75rem 1rem; text-align: left; }

/* Prose */
.prose { max-width: 65ch; line-height: 1.75; }
.prose p { margin-bottom: 1rem; color: var(--muted-foreground); }
.prose h2 { margin-top: 2rem; margin-bottom: 1rem; }

