@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

:root {
  /* Colors */
  --barn-red: #780000;
  --fire-brick: #c1121f;
  --papaya-whip: #fdf0d5;
  --prussian-blue: #003049;
  --dark-blue: #001a28;
  --air-superiority-blue: #669bbc;
  --active-menu-red: #c1121f;

  --white: #ffffff;
  --black: #000000;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Footer text colors - matching React version */
  --text-footer: #d1d5dc;
  --text-footer-subtitle: #99a1af;
  --text-muted: #6a7282;

  /* Typography */
  --font-sans: 'Inter', sans-serif;

  /* Layout */
  --container-max-width: 1280px;
  /* max-w-7xl */
}

/* ==========================================
   HERO MODERN STYLES
   ========================================== */
.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #780000 0%, #c1121f 40%, #8b0000 100%);
  z-index: 0;
}

.hero-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
}

.hero-line-1 {
  width: 1px;
  height: 40%;
  left: 15%;
  top: 0;
}

.hero-line-2 {
  width: 1px;
  height: 60%;
  right: 20%;
  bottom: 0;
}

.hero-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: transparent;
  -webkit-text-stroke: 2px white;
  text-stroke: 2px white;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  min-height: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-btn-primary {
  background: white;
  color: #c1121f;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero-btn-primary svg {
  fill: #c1121f;
  stroke: none;
}

.hero-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ==========================================
   ABOUT STEVE SECTION
   ========================================== */
.about-steve-section {
  position: relative;
  padding: 6rem 0;
  background: #0a0a0a;
  overflow: hidden;
}

.about-steve-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(193, 18, 31, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(102, 155, 188, 0.1) 0%, transparent 40%);
}

.about-steve-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-steve-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-steve-text {
  order: 2;
}

@media (min-width: 768px) {
  .about-steve-text {
    order: 1;
  }
}

.about-steve-label {
  display: inline-block;
  color: #c1121f;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-steve-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.about-steve-description {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-steve-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.about-steve-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-steve-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
}

.about-steve-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-steve-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: #c1121f;
  color: white;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.about-steve-btn:hover {
  background: #a00f1a;
  transform: translateX(5px);
}

.about-steve-image {
  position: relative;
  order: 1;
}

@media (min-width: 768px) {
  .about-steve-image {
    order: 2;
  }
}

.about-steve-image-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.about-steve-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-steve-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
}

.about-steve-image-frame img + .about-steve-image-placeholder {
  display: none;
}

.about-steve-badge {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: white;
  color: #c1121f;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-steve-badge svg {
  color: #fbbf24;
}

/* ==========================================
   STEVE PAGE STYLES
   ========================================== */
.steve-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.steve-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.steve-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(17,24,39,0.85) 50%, rgba(0,26,40,0.9) 100%);
}

.steve-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.steve-hero-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(193, 18, 31, 0.2);
  border: 1px solid rgba(193, 18, 31, 0.4);
  border-radius: 50px;
  color: #ff6b6b;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.steve-hero-title {
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1;
}

.steve-hero-role {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.steve-hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

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

.steve-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #c1121f;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.steve-hero-btn-primary:hover {
  background: #a00f1a;
  transform: translateY(-2px);
}

.steve-hero-btn-secondary {
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.steve-hero-btn-secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.steve-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.steve-hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

/* Bio Section */
.steve-bio-section {
  padding: 5rem 0;
  background: #fafafa;
}

.steve-bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .steve-bio-grid {
    grid-template-columns: 300px 1fr;
    gap: 4rem;
  }
}

.steve-bio-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.steve-bio-image {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.steve-bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steve-bio-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.steve-bio-image.no-image .steve-bio-image-placeholder {
  display: flex;
}

.steve-bio-image img:not([src=""]) + .steve-bio-image-placeholder {
  display: none;
}

.steve-bio-quick-facts {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.steve-bio-quick-facts h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.steve-bio-quick-facts ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.steve-bio-quick-facts li {
  font-size: 0.9375rem;
  color: #4b5563;
}

.steve-bio-quick-facts strong {
  color: #111;
}

.steve-section-label {
  display: inline-block;
  color: #c1121f;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.steve-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.steve-bio-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.steve-bio-text p {
  font-size: 1.0625rem;
  color: #4b5563;
  line-height: 1.8;
}

.steve-bio-text strong {
  color: #111;
}

/* Skills Section */
.steve-skills-section {
  padding: 5rem 0;
  background: white;
}

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

.steve-skills-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .steve-skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steve-skills-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.steve-skill-card {
  background: #fafafa;
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.steve-skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #c1121f;
}

.steve-skill-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #c1121f 0%, #780000 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
}

.steve-skill-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.75rem;
}

.steve-skill-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.steve-skill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.steve-skill-list li {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  color: #4b5563;
}

/* Awards Section */
.steve-awards-section {
  padding: 5rem 0;
  background: #0a0a0a;
}

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

.steve-awards-header .steve-section-title {
  color: white;
}

.steve-awards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steve-awards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steve-award-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.steve-award-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.steve-award-featured {
  background: linear-gradient(135deg, rgba(193, 18, 31, 0.2) 0%, rgba(120, 0, 0, 0.2) 100%);
  border-color: rgba(193, 18, 31, 0.3);
}

.steve-award-icon {
  color: #fbbf24;
  margin-bottom: 1.5rem;
}

.steve-award-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #c1121f;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.steve-award-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.steve-award-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* CTA Section */
.steve-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #c1121f 0%, #780000 100%);
}

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

.steve-cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.steve-cta-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

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

.steve-cta-btn-primary {
  padding: 1rem 2rem;
  background: white;
  color: #c1121f;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.steve-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.steve-cta-btn-secondary {
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.steve-cta-btn-secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .steve-hero-scroll {
    display: none;
  }
}

/* ==========================================
   FILMS PAGE STYLES
   ========================================== */
.films-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}

.films-hero-bg {
  position: absolute;
  inset: 0;
}

.films-hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  transition: opacity 1s ease;
}

.films-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(10,10,10,0.85) 50%, rgba(193,18,31,0.4) 100%);
}

.films-hero-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.films-hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.films-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.films-hero-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(193, 18, 31, 0.15);
  border: 1px solid rgba(193, 18, 31, 0.3);
  border-radius: 50px;
  color: #ff6b6b;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.films-hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.films-hero-accent {
  color: #c1121f;
}

.films-hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.films-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.films-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.films-hero-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.films-hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.films-hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.films-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Filter Section */
.films-filter-section {
  position: sticky;
  top: 72px;
  z-index: 30;
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
}

.films-filter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.films-filter-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  display: none;
}

@media (min-width: 768px) {
  .films-filter-label {
    display: block;
  }
}

.films-filter-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.films-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.films-filter-btn:hover {
  border-color: #c1121f;
  color: #c1121f;
}

.films-filter-btn.active {
  background: #c1121f;
  border-color: #c1121f;
  color: white;
}

.films-filter-btn svg {
  opacity: 0.7;
}

.films-filter-btn.active svg {
  opacity: 1;
}

@media (max-width: 640px) {
  .films-filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
  
  .films-filter-btn svg {
    display: none;
  }
  
  .films-hero-stat-divider {
    display: none;
  }
  
  .films-hero-stats {
    gap: 1.5rem;
  }
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */
.contact-hero {
  position: relative;
  padding: 6rem 2rem 4rem;
  background: #0a0a0a;
  text-align: center;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(193, 18, 31, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(102, 155, 188, 0.1) 0%, transparent 40%);
}

.contact-hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(193, 18, 31, 0.15);
  border: 1px solid rgba(193, 18, 31, 0.3);
  border-radius: 50px;
  color: #ff6b6b;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.contact-hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.contact-hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Contact Options Section */
.contact-options-section {
  padding: 4rem 0 5rem;
  background: #fafafa;
}

.contact-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 4rem;
}

@media (min-width: 768px) {
  .contact-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-option-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-option-card:hover {
  border-color: #c1121f;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-option-card:hover .contact-option-arrow {
  transform: translateX(5px);
  color: #c1121f;
}

.contact-option-featured {
  border-color: #c1121f;
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.contact-option-badge {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  padding: 0.375rem 1rem;
  background: #c1121f;
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
}

.contact-option-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #c1121f 0%, #780000 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
}

.contact-option-content {
  flex: 1;
}

.contact-option-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.75rem;
}

.contact-option-desc {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.contact-option-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-option-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.contact-option-list svg {
  color: #10b981;
  flex-shrink: 0;
}

.contact-option-arrow {
  margin-top: 1.5rem;
  color: #9ca3af;
  transition: all 0.3s ease;
  align-self: flex-end;
}

/* Direct Contact Section */
.contact-direct-section {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-direct-title {
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.contact-direct-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-direct-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-direct-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

a.contact-direct-item:hover {
  border-color: #c1121f;
  background: #fff5f5;
}

.contact-direct-icon {
  width: 48px;
  height: 48px;
  background: #f3f4f6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  flex-shrink: 0;
}

.contact-direct-icon-whatsapp {
  background: #dcfce7;
  color: #22c55e;
}

.contact-direct-item > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.contact-direct-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-direct-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111;
}

/* ==========================================
   TESTIMONIALS PAGE STYLES
   ========================================== */
.testimonials-hero {
  position: relative;
  padding: 6rem 2rem 5rem;
  background: linear-gradient(135deg, #003049 0%, #001829 100%);
  text-align: center;
  overflow: hidden;
}

.testimonials-hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(193, 18, 31, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(102, 155, 188, 0.15) 0%, transparent 40%);
}

.testimonials-hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-hero-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.testimonials-hero-title {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.testimonials-hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.testimonials-hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.testimonials-hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonials-hero-stat-icon {
  color: #fbbf24;
}

.testimonials-hero-stat-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* Intro Section */
.testimonials-intro {
  padding: 4rem 0;
  background: white;
}

.testimonials-intro-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-intro-label {
  display: inline-block;
  color: #c1121f;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.testimonials-intro-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 1.25rem;
}

.testimonials-intro-text {
  font-size: 1.0625rem;
  color: #4b5563;
  line-height: 1.8;
}

/* CTA Section */
.testimonials-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #c1121f 0%, #780000 100%);
}

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

.testimonials-cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.testimonials-cta-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

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

.testimonials-cta-btn-primary {
  padding: 1rem 2rem;
  background: white;
  color: #c1121f;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.testimonials-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonials-cta-btn-secondary {
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.testimonials-cta-btn-secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================
   FILM META TAGS (Duration & Year)
   ========================================== */
.film-meta-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.film-meta-duration,
.film-meta-year {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
}

.film-meta-duration {
  background: #003049;
  color: white;
}

.film-meta-year {
  background: #669bbc;
  color: white;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero-badge {
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
  }
  
  .hero-title-accent {
    -webkit-text-stroke: 1.5px white;
    text-stroke: 1.5px white;
  }
  
  .hero-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .hero-circle {
    display: none;
  }
  
  .hero-scroll-indicator {
    display: none;
  }
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Typography Classes */
.text-xs {
  font-size: 0.75rem;
}

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

.text-base {
  font-size: 1rem;
}

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

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-bold {
  font-weight: 700;
}

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

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

.uppercase {
  text-transform: uppercase;
}

.w-32 {
  width: 8rem;
}

.h-10 {
  height: 2.5rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.container {
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.hidden {
  display: none !important;
}

.block {
  display: block;
}

.relative {
  position: relative;
}

.cursor-pointer {
  cursor: pointer;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 {
  z-index: 10;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.min-h-screen {
  min-height: 100vh;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.size-full {
  width: 100%;
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

.video-card .relative {
  overflow: hidden;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-out;
}

.video-card:hover img {
  transform: scale(1.05);
}

/* Play Button Overlay */
.play-button {
  position: absolute;
  bottom: 0.9375rem;
  /* 15px */
  right: 1.0625rem;
  /* 17px */
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}

.group:hover .play-button {
  background-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.15);
}

.play-button svg {
  width: 16px;
  height: 16px;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
}

.modal-container {
  position: relative;
  width: 100%;
  max-width: 1024px;
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 110;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.modal-close:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  background-color: black;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-info {
  padding: 1.5rem;
}

.modal-info h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.modal-info p {
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.5;
}

.bg-white {
  background-color: var(--white);
}

.bg-black {
  background-color: var(--black);
}

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

.text-gray-100 {
  color: var(--gray-100);
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Custom Components */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.25rem;
  transition: all 0.2s;
  font-weight: 500;
}

.btn-primary {
  background-color: var(--fire-brick);
  color: white;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-white {
  background-color: white;
  color: black;
}

.btn-white:hover {
  background-color: var(--gray-100);
}

.btn-outline-white {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header {
  height: var(--header-height);
}

.nav-link {
  color: white;
  padding-bottom: 0.25rem;
  position: relative;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #d1d5db;
}

.nav-link.active {
  color: white;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--fire-brick);
}

/* Forms */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background-color: white;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #111827;
  transition: all 0.2s;
}

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

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.border-b {
  border-bottom: 1px solid #e5e7eb;
}

.pb-4 {
  padding-bottom: 1rem;
}

/* Animations */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.animate-gradient {
  animation: gradient 8s ease infinite;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

.animate-blink {
  animation: blink 1s infinite;
}

/* Filter Buttons */
.filter-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  border: 2px solid #e5e7eb;
  background-color: white;
  color: #4b5563;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.filter-btn:hover {
  border-color: #001A28;
  color: #001A28;
}

.filter-btn.active {
  background-color: #001A28;
  border-color: #001A28;
  color: white;
  font-weight: 700;
}

/* Additional utility classes for filters */
.flex-wrap {
  flex-wrap: wrap;
}

.gap-3 {
  gap: 0.75rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.border-gray-100 {
  border-color: #f3f4f6;
}

.z-30 {
  z-index: 30;
}

.top-\[72px\] {
  top: 72px;
}

/* Contact Page Utilities */
.max-w-4xl {
  max-width: 56rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.min-h-\[60vh\] {
  min-height: 60vh;
}

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

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

.p-8 {
  padding: 2rem;
}

.space-y-2>*+* {
  margin-top: 0.5rem;
}

.space-y-3>*+* {
  margin-top: 0.75rem;
}

.space-y-4>*+* {
  margin-top: 1rem;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-600 {
  color: #4b5563;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.border-2 {
  border-width: 2px;
}

.border-gray-200 {
  border-color: #e5e7eb;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.hover\:border-\[\#c1121f\]:hover {
  border-color: #c1121f;
}

.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.group:hover .group-hover\:text-\[\#c1121f\] {
  color: #c1121f;
}

.group:hover .group-hover\:translate-x-2 {
  transform: translateX(0.5rem);
}

.gap-12 {
  gap: 3rem;
}

.pt-12 {
  padding-top: 3rem;
}

.border-gray-700 {
  border-color: #374151;
}

.mt-4 {
  margin-top: 1rem;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

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

/* Brief Form Styles */
.bg-gray-50 {
  background-color: #f9fafb;
}

.space-y-6>*+* {
  margin-top: 1.5rem;
}

.space-y-8>*+* {
  margin-top: 2rem;
}

.form-section {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .form-section {
    padding: 2rem;
  }
}

.form-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.form-section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: #001A28;
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.form-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #001A28;
  margin: 0;
}

.form-section-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0.25rem 0 0 0;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-hint {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.text-red-500 {
  color: #ef4444;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

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

@media (min-width: 768px) {
  .checkbox-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.checkbox-item:hover {
  border-color: #001A28;
  background-color: #f3f4f6;
}

.checkbox-item input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: #001A28;
}

.checkbox-item input[type="checkbox"]:checked+.checkbox-label {
  color: #001A28;
  font-weight: 500;
}

.checkbox-label {
  font-size: 0.875rem;
  color: #374151;
}

.form-submit-section {
  text-align: center;
  padding-top: 1rem;
}

.form-privacy-note {
  font-size: 0.75rem;
  color: #6b7280;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background-color: #c1121f;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-submit:hover {
  background-color: #a10e1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(193, 18, 31, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

.gap-6 {
  gap: 1.5rem;
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-700 {
  color: #374151;
}

.w-8 {
  width: 2rem;
}

.h-8 {
  height: 2rem;
}

.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

.inline-flex {
  display: inline-flex;
}

.inline-block {
  display: inline-block;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Footer Utilities */
.space-y-1>*+* {
  margin-top: 0.25rem;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.fixed {
  position: fixed;
}

.bottom-6 {
  bottom: 1.5rem;
}

.right-6 {
  right: 1.5rem;
}

.w-14 {
  width: 3.5rem;
}

.h-14 {
  height: 3.5rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.hover\:text-white:hover {
  color: white;
}

.hover\:opacity-90:hover {
  opacity: 0.9;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Tailwind bracket syntax replacements - these don't work in plain CSS */
.bg-\[var\(--dark-blue\)\] {
  background-color: var(--dark-blue);
}

.bg-\[\#00c950\] {
  background-color: #00c950;
}

.bg-\[\#003049\] {
  background-color: #003049;
}

.bg-\[var\(--air-superiority-blue\)\] {
  background-color: var(--air-superiority-blue);
}

.text-\[var\(--text-footer\)\] {
  color: var(--text-footer);
}

.text-\[var\(--text-footer-subtitle\)\] {
  color: var(--text-footer-subtitle);
}

.text-\[var\(--text-muted\)\] {
  color: var(--text-muted);
}

/* Quick Contact Page */
.quick-contact-page {
  min-height: calc(100vh - 72px - 96px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #001A28 0%, #001A28 50%, #f9fafb 50%, #f9fafb 100%);
}

@media (max-width: 767px) {
  .quick-contact-page {
    background: #f9fafb;
  }
}

.quick-contact-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .quick-contact-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 2rem;
  }
}

.quick-contact-info {
  color: white;
  display: none;
}

@media (min-width: 768px) {
  .quick-contact-info {
    display: block;
  }
}

.quick-contact-info h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.quick-contact-info p {
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: white;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
  font-size: 0.9375rem;
}

.contact-item svg {
  color: #669bbc;
  flex-shrink: 0;
}

.quick-contact-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-contact-form {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

@media (min-width: 768px) {
  .quick-contact-form {
    padding: 2.5rem;
  }
}

.quick-contact-form .form-group {
  margin-bottom: 1.25rem;
}

.quick-contact-form .form-group:last-of-type {
  margin-bottom: 1.5rem;
}

.btn-submit-simple {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background-color: #001A28;
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-submit-simple:hover {
  background-color: #002a40;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 26, 40, 0.3);
}

/* Testimonials Page */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.testimonial-featured {
  background: linear-gradient(135deg, #001A28 0%, #003049 100%);
  border-color: transparent;
}

.testimonial-featured .testimonial-quote-icon {
  color: #669bbc;
}

.testimonial-featured .testimonial-text {
  color: #e5e7eb;
}

.testimonial-featured .testimonial-name {
  color: white;
}

.testimonial-featured .testimonial-role {
  color: #9ca3af;
}

.testimonial-featured .testimonial-avatar {
  background: #669bbc;
  color: #001A28;
}

.testimonial-quote-icon {
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #374151;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.testimonial-featured .testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #001A28;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #001A28;
  margin: 0;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0.125rem 0 0 0;
}

.max-w-3xl {
  max-width: 48rem;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Modern Footer */
.footer-modern {
  background: linear-gradient(180deg, #001A28 0%, #000d14 100%);
  color: white;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

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

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
  width: 100px;
  height: 30px;
}

.footer-logo svg {
  width: 100%;
  height: 100%;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: #9ca3af;
  transition: all 0.2s;
}

.footer-social-link:hover {
  background: #c1121f;
  border-color: #c1121f;
  color: white;
  transform: translateY(-2px);
}

.footer-column {
  min-width: 0;
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 2px;
  background: #c1121f;
}

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

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

.footer-links a {
  font-size: 0.875rem;
  color: #9ca3af;
  transition: all 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #9ca3af;
  transition: color 0.2s;
}

a.footer-contact-item:hover {
  color: white;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: #669bbc;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0;
}

.footer-credits {
  font-size: 0.8125rem;
  color: #4b5563;
  margin: 0;
  letter-spacing: 0.05em;
}

/* Media Queries - LAST to ensure overrides work */
@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:block {
    display: block !important;
  }

  .md\:hidden {
    display: none !important;
  }

  .md\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

.animate-fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.animate-fade-in.animated {
  opacity: 1;
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-slide-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-slide-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-scale.animated {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--barn-red, #780000);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top:hover {
  background: var(--fire-brick, #c1121f);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }
}