.fly-section,
.fly-section * {
  box-sizing: border-box;
}

.fly-section h2,
.fly-section p {
  margin: 0;
  padding: 0;
}

.fly-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background-color: #000;
  background-image: url('../assets/fly/background.webp');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  font-family: "Raleway", sans-serif;
  text-align: center;
}

.fly-section::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9));
  content: '';
}

.fly-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.fly-title {
  margin-bottom: 60px !important;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1.2;
  text-transform: uppercase;
}

.fly-orange {
  color: #ff5a1f;
  font-weight: 700;
}

.fly-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 70px;
  gap: 20px;
}

.fly-item {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  padding: 45px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fly-item:hover {
  border-color: #ff5a1f;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-10px);
}

.fly-icon {
  width: auto;
  height: 65px;
  margin-bottom: 25px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.fly-item-title {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #ff5a1f;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.fly-item-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.5;
}

.fly-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.fly-btn {
  min-width: 240px;
  padding: 20px 40px;
  border: 0;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 300ms ease;
}

.fly-btn--main {
  background: #ff5a1f;
  color: #fff;
}

.fly-btn--main:hover {
  background: #e54e1a;
  box-shadow: 0 10px 30px rgba(255, 90, 31, 0.4);
  transform: scale(1.03);
}

.fly-btn--sub {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.fly-btn--sub:hover {
  border-color: #ff5a1f;
  background: rgba(255, 90, 31, 0.1);
}

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

@media (max-width: 768px) {
  .fly-section { padding: 70px 15px; background-attachment: scroll; }
  .fly-title { margin-bottom: 40px !important; }
  .fly-grid { gap: 15px; }
}

@media (max-width: 480px) {
  .fly-grid { grid-template-columns: 1fr; }
  .fly-btn { width: 100%; min-width: 0; }
  .fly-item { padding: 35px 20px; }
}
