
.about-hero {
  position: relative;
  height: 45vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 119, 204, 0.85) 0%, rgba(0, 102, 179, 0.75) 100%);
  z-index: 2;
}

.about-hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 800px;
  color: white;
  text-align: center;
  margin: 0 auto;
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.about-hero p {
  font-family: var(--font-main);
  font-size: 20px;
  margin: 0;
  opacity: 0.95;
  line-height: 1.6;
}

.about-intro {
  background: white;
}

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

.intro-lead {
  font-family: var(--font-main);
  font-size: 20px;
  color: #666;
  line-height: 1.8;
  margin: 24px 0 0 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(0, 119, 204, 0.03), rgba(0, 119, 204, 0.01));
  border: 2px solid #e9ecef;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
}

.value-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 119, 204, 0.15);
}

.value-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--color-primary), #005599);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}

.value-card p {
  font-family: var(--font-main);
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.meet-team {
  background: #f8f9fa;
}

.team-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.team-profile {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.profile-image-section {
  position: sticky;
  top: 120px;
}

.profile-image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  margin-bottom: 32px;
}

.profile-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.profile-image-frame:hover img {
  transform: scale(1.05);
}

.image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--color-secondary);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}

.profile-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-box {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.highlight-box:hover {
  transform: translateX(8px);
}

.highlight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 119, 204, 0.1), rgba(0, 119, 204, 0.05));
  color: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-box h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}

.highlight-box p {
  font-family: var(--font-main);
  font-size: 14px;
  color: #666;
  margin: 0;
}

.profile-content-section h2 {
  margin-bottom: 32px;
}

.story-block {
  margin-bottom: 32px;
}

.story-block h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-primary);
  margin: 0 0 16px 0;
}

.story-block p {
  font-family: var(--font-main);
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-block p:last-child {
  margin-bottom: 0;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.tag {
  padding: 10px 20px;
  background: white;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--color-primary);
  color: white;
}

.specialties {
  background: white;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.specialty-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.specialty-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.specialty-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.specialty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.specialty-card:hover .specialty-image img {
  transform: scale(1.1);
}

.specialty-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  transition: background 0.4s ease;
}

.specialty-card:hover .specialty-overlay {
  background: linear-gradient(to bottom, rgba(0, 119, 204, 0.3) 0%, rgba(0, 119, 204, 0.7) 100%);
}

.specialty-content {
  padding: 32px;
  position: relative;
}

.specialty-icon {
  position: absolute;
  top: -28px;
  left: 32px;
  width: 56px;
  height: 56px;
  background: var(--color-secondary);
  color: #1a1a1a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.specialty-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #1a1a1a;
  margin: 8px 0 16px 0;
}

.specialty-content p {
  font-family: var(--font-main);
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.specialty-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.specialty-link:hover {
  gap: 12px;
}
.why-choose {
  background: white;
}

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

.why-content h2 {
  margin-bottom: 64px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.reason-item {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(0, 119, 204, 0.03), rgba(0, 119, 204, 0.01));
  border: 2px solid #e9ecef;
  border-radius: 16px;
  text-align: left;
  transition: all 0.4s ease;
}

.reason-item:hover {
  border-color: var(--color-primary);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 119, 204, 0.15);
}

.reason-number {
  position: absolute;
  top: -20px;
  left: 32px;
  width: 48px;
  height: 48px;
  background: var(--color-secondary);
  color: #1a1a1a;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.reason-item h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #1a1a1a;
  margin: 8px 0 12px 0;
}

.reason-item p {
  font-family: var(--font-main);
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.about-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/about-cta-bg.jpg') center/cover no-repeat;
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 119, 204, 0.92) 0%, rgba(0, 102, 179, 0.88) 100%);
  z-index: 2;
}

.about-cta .container {
  position: relative;
  z-index: 3;
}

.about-cta .cta-content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.about-cta h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.about-cta p {
  font-family: var(--font-main);
  font-size: 18px;
  margin: 0 0 40px 0;
  opacity: 0.95;
  line-height: 1.6;
}


@media (max-width: 1024px) {
  .about-hero {
    min-height: 500px;
  }

  .about-hero h1 {
    font-size: 42px;
  }

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

  .team-profile {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .profile-image-section {
    position: static;
  }

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

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

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 60vh;
    min-height: 450px;
  }

  .about-hero h1 {
    font-size: 32px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .intro-lead {
    font-size: 18px;
  }

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

  .about-cta h2 {
    font-size: 36px;
  }

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

  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 28px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  .specialty-content {
    padding: 24px;
  }

  .cruise-card {
    padding: 32px 24px;
  }

  .reason-item {
    padding: 32px 24px;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0%, 100% { opacity: 0; top: 8px; }
  50% { opacity: 1; top: 16px; }
}