/* GioTrip Journey Pages - Business, Leisure, Medical */

/* Journey Hero */
.j-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 56px 80px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.92) 100%),
              url('../images/hero/business-hero.jpg') center/cover no-repeat;
}

.j-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.j-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(232, 168, 54, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240, 100, 72, 0.12) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.j-hero-c {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.j-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(232, 168, 54, 0.15);
  border: 1px solid var(--bdr);
  border-radius: 50px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 24px;
  font-family: 'DM Mono', monospace;
}

.j-hero h1 {
  margin-bottom: 32px;
}

.j-h1-main {
  display: block;
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  background: var(--gh);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.j-h1-sub {
  display: block;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 4px;
}

.j-hero-desc {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.j-hero-acts {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.j-hero-acts .btn-g,
.j-hero-acts .btn-o {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  cursor: pointer;
  transition: all 200ms ease;
}

.j-hero-acts svg {
  width: 20px;
  height: 20px;
}

/* Container */
.j-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

/* Section Header */
.j-sec-head {
  text-align: center;
  margin-bottom: 64px;
}

.j-sec-head h2 {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  background: linear-gradient(135deg, #e8a836 0%, #f06448 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.j-sec-head p {
  font-size: 18px;
  color: #64748b;
}

/* Services Section */
.j-services {
  padding: 120px 0;
  background: #f8fafc;
}

.j-services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.j-service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 300ms ease;
  position: relative;
  text-align: center;
}

.j-service-card:hover {
  border-color: #e8a836;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.j-service-highlight {
  border-color: #e8a836;
  background: linear-gradient(135deg, rgba(232, 168, 54, 0.05) 0%, rgba(240, 100, 72, 0.03) 100%);
}

.j-service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: #e8a836;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  font-family: 'DM Mono', monospace;
}

.j-service-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 168, 54, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.j-service-icon svg {
  width: 28px;
  height: 28px;
  stroke: #e8a836;
}

.j-service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.j-service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

/* Service Details Section */
.j-service-details {
  padding: 120px 0;
  background: #ffffff;
}

.j-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.j-detail-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}

.j-detail-card:hover {
  border-color: #e8a836;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.j-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #e8a836 0%, #f06448 100%);
  opacity: 0;
  transition: opacity 300ms ease;
}

.j-detail-card:hover::before {
  opacity: 1;
}

.j-detail-num {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(232, 168, 54, 0.1);
  border: 1px solid rgba(232, 168, 54, 0.3);
  border-radius: 20px;
  color: #e8a836;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'DM Mono', monospace;
}

.j-detail-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.j-detail-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* Local Advantage Section */
.j-advantage {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.03) 0%, rgba(30, 41, 59, 0.05) 100%),
              url('../images/backgrounds/handshake-bg.jpg') center/cover no-repeat fixed;
  position: relative;
}

.j-advantage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 0;
}

.j-advantage .j-container {
  position: relative;
  z-index: 1;
}

.j-advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.j-adv-card {
  text-align: center;
  padding: 40px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: all 300ms ease;
}

.j-adv-card:hover {
  border-color: #e8a836;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.j-adv-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #e8a836 0%, #f06448 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  font-family: 'DM Mono', monospace;
}

.j-adv-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.j-adv-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

.j-advantage-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.j-adv-feature {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: all 300ms ease;
}

.j-adv-feature:hover {
  border-color: #e8a836;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.j-adv-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(232, 168, 54, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.j-adv-icon svg {
  width: 28px;
  height: 28px;
  stroke: #e8a836;
}

.j-adv-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.j-adv-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* Cities Section */
.j-cities {
  padding: 120px 0;
  background: #f8fafc;
}

.j-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.j-city-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 300ms ease;
  cursor: pointer;
}

.j-city-card:hover {
  border-color: #e8a836;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.j-city-img {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: #e2e8f0;
  position: relative;
}

.j-city-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(15, 23, 42, 0.6) 100%);
}

.j-city-info {
  padding: 28px;
}

.j-city-info h3 {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.j-city-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(232, 168, 54, 0.1);
  border: 1px solid rgba(232, 168, 54, 0.3);
  border-radius: 20px;
  color: #e8a836;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 16px;
  font-family: 'DM Mono', monospace;
}

.j-city-info p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 20px;
}

.j-city-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.j-city-industries span {
  padding: 6px 14px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  font-size: 13px;
  color: #334155;
}

/* Process Section */
.j-process {
  padding: 120px 0;
  background: #ffffff;
}

.j-process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.j-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: all 300ms ease;
}

.j-step:hover {
  border-color: #e8a836;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.j-step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e8a836 0%, #f06448 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'DM Mono', monospace;
}

.j-step h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.j-step p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

.j-step-arrow {
  font-size: 32px;
  color: #e8a836;
  flex-shrink: 0;
}

/* Why Section */
.j-why {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.02) 0%, rgba(30, 41, 59, 0.03) 100%),
              url('../images/backgrounds/skyline-bg.jpg') center/cover no-repeat fixed;
  position: relative;
}

.j-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(248, 250, 252, 0.95);
  z-index: 0;
}

.j-why .j-container {
  position: relative;
  z-index: 1;
}

.j-why-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.j-why-card {
  text-align: center;
  padding: 32px 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: all 300ms ease;
}

.j-why-card:hover {
  border-color: #e8a836;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.j-why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(232, 168, 54, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.j-why-icon svg {
  width: 32px;
  height: 32px;
  stroke: #e8a836;
}

.j-why-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.j-why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

/* Testimonials Section */
.j-testimonials {
  padding: 120px 0;
  background: #ffffff;
}

.j-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.j-testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  transition: all 300ms ease;
}

.j-testimonial-card:hover {
  border-color: #e8a836;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.j-test-stars {
  color: #e8a836;
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.j-test-content {
  font-size: 15px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 24px;
  font-style: italic;
}

.j-test-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.j-test-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e8a836 0%, #f06448 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.j-test-info {
  flex: 1;
}

.j-test-name {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.j-test-title {
  font-size: 14px;
  color: #64748b;
}

.j-test-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 48px;
  background: var(--card);
  border: 1px solid var(--bdrw);
  border-radius: 16px;
}

.j-test-stat {
  text-align: center;
}

.j-test-stat-num {
  font-size: 48px;
  font-weight: 700;
  background: var(--gh);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-family: 'DM Mono', monospace;
}

.j-test-stat-label {
  font-size: 16px;
  color: var(--muted);
}

/* CTA Section */
.j-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(232, 168, 54, 0.08) 0%, rgba(240, 100, 72, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.j-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.j-cta-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  background: linear-gradient(135deg, #e8a836 0%, #f06448 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.j-cta-content > p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 40px;
}

.j-cta-acts {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.j-cta-acts .btn-g,
.j-cta-acts .btn-o {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  cursor: pointer;
  transition: all 200ms ease;
}

.j-cta-acts svg {
  width: 20px;
  height: 20px;
}

.j-cta-note {
  font-size: 14px;
  color: #64748b;
  font-style: italic;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1100px) {
  .j-container {
    padding: 0 40px;
  }

  .j-hero {
    padding: 120px 40px 60px;
  }

  .j-services-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .j-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .j-advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .j-advantage-features {
    grid-template-columns: 1fr;
  }

  .j-cities-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .j-why-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .j-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .j-test-stats {
    gap: 48px;
  }
}

@media (max-width: 700px) {
  .j-container {
    padding: 0 24px;
  }

  .j-hero {
    min-height: 70vh;
    padding: 100px 24px 40px;
  }

  .j-h1-main {
    font-size: 40px;
  }

  .j-h1-sub {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .j-hero-desc {
    font-size: 16px;
  }

  .j-hero-acts {
    flex-direction: column;
    width: 100%;
  }

  .j-hero-acts .btn-g,
  .j-hero-acts .btn-o {
    width: 100%;
    justify-content: center;
  }

  .j-services,
  .j-service-details,
  .j-advantage,
  .j-cities,
  .j-process,
  .j-why,
  .j-testimonials,
  .j-cta {
    padding: 80px 0;
  }

  .j-sec-head {
    margin-bottom: 48px;
  }

  .j-sec-head h2 {
    font-size: 32px;
  }

  .j-services-row,
  .j-details-grid,
  .j-advantage-grid,
  .j-cities-grid,
  .j-why-row,
  .j-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .j-service-card,
  .j-detail-card,
  .j-adv-card,
  .j-city-card,
  .j-why-card,
  .j-testimonial-card {
    padding: 28px;
  }

  .j-advantage-grid {
    margin-bottom: 48px;
  }

  .j-adv-feature {
    flex-direction: column;
    text-align: center;
  }

  .j-adv-icon {
    margin: 0 auto;
  }

  .j-process-steps {
    flex-direction: column;
  }

  .j-step-arrow {
    transform: rotate(90deg);
  }

  .j-test-stats {
    flex-direction: column;
    gap: 32px;
  }

  .j-cta-acts {
    flex-direction: column;
    width: 100%;
  }

  .j-cta-acts .btn-g,
  .j-cta-acts .btn-o {
    width: 100%;
    justify-content: center;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .j-hero-bg::before {
    animation: none;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .j-service-card:hover,
  .j-city-card:hover,
  .j-step:hover,
  .j-why-card:hover {
    transform: none;
  }
}