/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Services Hero Section */
.services-hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.services-hero-video {
  height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-hero-content {
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background: linear-gradient(135deg, 
    #0d1117 0%, 
    #1a3254 50%, 
    #0d1117 100%);
  padding: 40px 40px 60px 40px;
  position: relative;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-divider {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 10;
}

.divider-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #AB966C 0%, #8B7A5A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 4px 20px rgba(171, 150, 108, 0.4),
    0 0 0 3px rgba(0, 0, 0, 0.3),
    0 0 0 6px rgba(171, 150, 108, 0.2);
  animation: iconFloat 3s ease-in-out infinite;
  position: relative;
}

.divider-icon:nth-child(2) {
  animation-delay: 0.5s;
}

.divider-icon:nth-child(3) {
  animation-delay: 1s;
}

.divider-icon i {
  color: #fff;
  font-size: 16px;
  animation: iconRotate 4s linear infinite;
}

.divider-icon:nth-child(2) i {
  animation-delay: 0.5s;
}

.divider-icon:nth-child(3) i {
  animation-delay: 1s;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 
      0 4px 20px rgba(171, 150, 108, 0.4),
      0 0 0 3px rgba(0, 0, 0, 0.3),
      0 0 0 6px rgba(171, 150, 108, 0.2);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 
      0 8px 30px rgba(171, 150, 108, 0.6),
      0 0 0 3px rgba(0, 0, 0, 0.3),
      0 0 0 6px rgba(171, 150, 108, 0.4);
  }
}

@keyframes iconRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.services-hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.08) 0%, 
    transparent 100%);
  pointer-events: none;
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #AB966C;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(171, 150, 108, 0.5);
  position: relative;
  z-index: 2;
}

.hero-logo {
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.cirrus-logo {
  max-width: 180px;
  height: auto;
  filter: brightness(1.1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.combined-logo-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.combined-manufacturer-logo {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.hero-badge i {
  font-size: 16px;
}

.services-hero-title {
  font-size: 26px;
  line-height: 1.3;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}

.services-hero-subtitle {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 28px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.hero-cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
  white-space: nowrap;
}

.hero-btn-primary {
  background: #AB966C;
  color: #fff;
  box-shadow: 0 8px 24px rgba(171, 150, 108, 0.3);
}

.hero-btn-primary:hover {
  background: #8B7A5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(171, 150, 108, 0.4);
  color: #fff;
}

.hero-btn-secondary {
  background: #f0f7ff;
  color: #2D5085;
  border: 2px solid #2D5085;
}

.hero-btn-secondary:hover {
  background: #2D5085;
  border-color: #2D5085;
  color: #fff;
}

/* Cirrus & Piper Section */
.cirrus-piper-section {
  padding: 120px 0;
  background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.section-number {
  font-size: 120px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: rgba(45, 80, 133, 0.08);
  line-height: 1;
  margin-bottom: -40px;
}

.section-badge {
  display: inline-block;
  background: #f0f7ff;
  color: #2D5085;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 48px;
  line-height: 1.3;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: #141417;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 17px;
  line-height: 1.8;
  color: #647187;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 40px;
}

.feature-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 150px;
}

.stat-number {
  font-size: 48px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: #2D5085;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #647187;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.manufacturer-logos {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 40px;
}

.logo-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(45, 80, 133, 0.15);
}

.manufacturer-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.logo-badge {
  background: linear-gradient(135deg, #2D5085 0%, #AB966C 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

/* World Class Service Section */
.world-class-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0d1117 0%, #1a3254 50%, #0d1117 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.world-class-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(171, 150, 108, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(45, 80, 133, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.world-class-content {
  position: relative;
  z-index: 2;
}

.section-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-center .section-title {
  color: #141417;
  margin-bottom: 16px;
}

.world-class-section .section-header-center .section-title {
  color: #fff;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #AB966C 0%, #2D5085 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.lead-text {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 24px;
  font-weight: 300;
}

.body-text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(171, 150, 108, 0.3);
  transform: translateY(-8px);
}

.service-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #AB966C 0%, #2D5085 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
  color: #fff;
}

.service-title {
  font-size: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.service-description {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

/* Full Service Section */
.full-service-section {
  padding: 120px 0;
  background: #fff;
}

.full-service-video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(171, 150, 108, 0.2);
  background: #000;
}

.service-video {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.2);
}

.full-service-video::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  pointer-events: none;
}

.video-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: linear-gradient(135deg, #AB966C 0%, #8B7A5A 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 
    0 8px 24px rgba(171, 150, 108, 0.5),
    0 0 0 3px rgba(0, 0, 0, 0.3),
    0 0 0 6px rgba(171, 150, 108, 0.2);
  backdrop-filter: blur(10px);
  animation: badgePulse 3s ease-in-out infinite;
  z-index: 2;
}

.video-badge i {
  font-size: 20px;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 8px 24px rgba(171, 150, 108, 0.5),
      0 0 0 3px rgba(0, 0, 0, 0.3),
      0 0 0 6px rgba(171, 150, 108, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 
      0 12px 32px rgba(171, 150, 108, 0.7),
      0 0 0 3px rgba(0, 0, 0, 0.3),
      0 0 0 6px rgba(171, 150, 108, 0.4);
  }
}

.manufacturer-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.combined-icon {
  max-width: 250px;
  height: auto;
}

.manufacturer-icon {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.manufacturer-icon:hover {
  opacity: 1;
}

.capabilities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #141417;
  font-weight: 500;
}

.capability-item i {
  color: #AB966C;
  font-size: 18px;
}

/* Contact & Locations Section */
.contact-locations-section {
  padding: 120px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.section-subtitle {
  font-size: 18px;
  color: #647187;
  margin-top: 12px;
  margin-bottom: 0;
}

.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.form-title {
  font-size: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: #141417;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #141417;
  margin-bottom: 8px;
  font-family: 'Open Sans', sans-serif;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #d7dbea;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #2D5085;
  box-shadow: 0 0 0 3px rgba(45, 80, 133, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: #AB966C;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Open Sans', sans-serif;
}

.submit-btn:hover {
  background: #8B7A5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(171, 150, 108, 0.3);
}

.locations-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 80, 133, 0.12);
}

.location-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f7ff;
}

.location-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2D5085 0%, #AB966C 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
}

.location-name h3 {
  font-size: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: #141417;
  margin: 0 0 4px 0;
}

.airport-code {
  font-size: 13px;
  color: #647187;
  font-weight: 600;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.detail-item {
  display: flex;
  gap: 14px;
}

.detail-item i {
  color: #AB966C;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.detail-item strong {
  display: block;
  font-size: 13px;
  color: #2D5085;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.detail-item p {
  font-size: 15px;
  color: #141417;
  margin: 0;
  line-height: 1.6;
}

.detail-item a {
  color: #2D5085;
  text-decoration: none;
  transition: color 0.3s ease;
}

.detail-item a:hover {
  color: #AB966C;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #f0f7ff;
  color: #2D5085;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.location-btn:hover {
  background: #2D5085;
  color: #fff;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.map-section .section-header {
  margin-bottom: 50px;
}

.map-section .section-subtitle {
  color: #647187;
  font-size: 16px;
  margin-top: 12px;
}

.map-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.map-header {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #e9ecef;
}

.map-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #AB966C 0%, #8B7A5A 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.map-header h3 {
  font-size: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #141417;
}

.map-header p {
  font-size: 14px;
  color: #647187;
  margin: 0;
}

.map-frame {
  position: relative;
  background: #e9ecef;
}

.map-frame iframe {
  display: block;
  width: 100%;
}

/* Responsive */
@media (max-width: 991px) {
  .services-hero-title {
    font-size: 48px;
  }

  .section-title {
    font-size: 36px;
  }

  .manufacturer-logos,
  .full-service-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .capabilities-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .services-hero-title {
    font-size: 36px;
  }

  .services-hero-subtitle {
    font-size: 18px;
  }

  .hero-cta-buttons {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .section-number {
    font-size: 80px;
  }

  .feature-stats {
    flex-direction: column;
    gap: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    margin-bottom: 30px;
  }
}
