/* Corporate Travel page: premium hero + two-column section */

/* --- Hero --- */
.hero-corporate {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      rgba(11, 92, 122, 0.85),
      rgba(11, 92, 122, 0.85)
    ),
    url("../images/corporate/corporate-bg.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white, #fff);
}

.hero-corporate-inner {
  display: grid;
  grid-template-columns: 1fr minmax(0, 0.45fr);
  gap: 3rem;
  align-items: center;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-corporate-left {
  max-width: 38rem;
}

.hero-corporate-left h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--white, #fff);
}

.hero-corporate-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1.25rem;
}

.hero-corporate-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.75rem;
}

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

.hero-corporate .btn-primary {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-corporate .btn-secondary {
  background: transparent;
  color: var(--white, #fff);
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.hero-corporate .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: #fff;
}

.hero-corporate-right {
  min-height: 12rem;
}

/* --- Two-column corporate section --- */
.corporate-section-wrap {
  background: var(--off-white, #f5f7f9);
}

.corporate-section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.corporate-section-header .section-subtitle {
  display: block;
  margin-bottom: 0.75rem;
}

.corporate-section-title {
  margin-bottom: 0;
}

.corporate-section {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 80px 10%;
  max-width: 1400px;
  margin: 0 auto;
}

.corporate-section-content {
  flex: 1;
  min-width: 0;
}

.corporate-section-headline {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  color: var(--gaho-blue, #1f5e7a);
  margin: 0 0 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.corporate-section-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted, #4a5568);
  margin: 0 0 1rem;
}

.corporate-section-detail {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted, #4a5568);
  margin: 0 0 1.5rem;
}

.corporate-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.corporate-bullets li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-dark, #2d3748);
}

.corporate-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gaho-orange, #f26a21);
}

.corporate-section-visual {
  flex: 0 1 46%;
  min-width: 0;
}

.corporate-visual-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(11, 92, 122, 0.18);
  aspect-ratio: 16 / 9;
}

.corporate-visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  object-fit: cover;
}

/* Floating badges */
@keyframes floatSoft {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

.corporate-visual-frame .badge {
  position: absolute;
  padding: 0.55rem 1rem;
  font-size: clamp(0.78rem, 1.2vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gaho-blue, #1f5e7a);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  animation: floatSoft 5s ease-in-out infinite;
  z-index: 2;
  white-space: nowrap;
}

.corporate-badge--1 {
  top: 10%;
  right: 6%;
}

.corporate-badge--2 {
  bottom: 26%;
  left: 6%;
  animation-delay: 1.2s;
}

.corporate-badge--3 {
  bottom: 12%;
  right: 10%;
  animation-delay: 2.4s;
}

.corporate-contact-wrap {
  text-align: center;
  padding: 0 10% 4rem;
  margin: 0;
}

/* Scroll reveal */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.active,
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-corporate-inner {
    grid-template-columns: 1fr;
  }

  .hero-corporate-right {
    display: none;
  }

  .corporate-section {
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem 6%;
  }

  .corporate-section-content {
    order: 1;
  }

  .corporate-section-visual {
    order: 2;
    flex: none;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .corporate-contact-wrap {
    padding: 0 6% 3rem;
  }

  .corporate-visual-frame .badge {
    padding: 0.5rem 0.85rem;
  }

  .corporate-badge--1 {
    top: 8%;
    right: 4%;
  }

  .corporate-badge--2 {
    bottom: 30%;
    left: 4%;
  }

  .corporate-badge--3 {
    bottom: 8%;
    right: 6%;
  }
}

@media (max-width: 480px) {
  .hero-corporate-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-corporate-cta .btn {
    text-align: center;
    justify-content: center;
  }

  .corporate-section {
    padding: 2.5rem 5%;
    gap: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .corporate-visual-frame .badge {
    animation: none;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
