/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0a1628;
  --deep-blue: #0d2137;
  --ocean: #0e4166;
  --cyan: #00bcd4;
  --cyan-light: #4dd0e1;
  --gold: #ffc107;
  --gold-dark: #e6a800;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 188, 212, 0.15);
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  white-space: nowrap;
}

.logo-icon {
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu li a {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-menu li a:hover {
  color: var(--white);
  background: rgba(0, 188, 212, 0.1);
}

.nav-cta {
  background: var(--cyan) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--cyan-light) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 40%, var(--ocean) 100%);
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
}

.wave-1 {
  animation: wave-move 8s ease-in-out infinite;
}

.wave-2 {
  animation: wave-move 12s ease-in-out infinite reverse;
}

@keyframes wave-move {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-20px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
}

.btn-primary:hover {
  background: var(--cyan-light);
  border-color: var(--cyan-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-small {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}

.btn-small:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}

/* === Sections === */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--deep-blue);
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--gray-600);
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* === Notices === */
.notice {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.notice-info {
  background: #e0f7fa;
  border-left: 4px solid var(--cyan);
  color: #006064;
}

.notice-warning {
  background: #fff8e1;
  border-left: 4px solid var(--gold);
  color: #e65100;
}

/* === Job Cards === */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.job-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan);
}

.job-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 188, 212, 0.15);
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
}

.job-card h3 {
  font-size: 1.3rem;
  color: var(--deep-blue);
  margin-bottom: 0.25rem;
}

.job-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(0, 188, 212, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.job-details h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600);
  margin: 1rem 0 0.5rem;
}

.job-details ul {
  padding-left: 1.25rem;
}

.job-details ul li {
  list-style: disc;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 0.3rem;
  line-height: 1.5;
}

.toggle-qa {
  margin-top: 1.25rem;
}

/* === Q&A Sections === */
.qa-section {
  margin-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 1.25rem;
}

.qa-section.hidden {
  display: none;
}

.qa-item {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.question {
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.answer {
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* === Experienced Positions Grid === */
.experienced-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.exp-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  transition: var(--transition);
}

.exp-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.exp-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255, 193, 7, 0.2);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
}

.exp-card h3 {
  font-size: 1.1rem;
  color: var(--deep-blue);
  margin-bottom: 0.25rem;
}

.exp-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(255, 193, 7, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.exp-card p:last-child {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* === Steps / How to Apply === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--ocean));
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  font-size: 1rem;
  color: var(--deep-blue);
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* === TikTok Section === */
.tiktok-section {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.tiktok-section h3 {
  font-size: 1.5rem;
  color: var(--deep-blue);
  margin-bottom: 0.75rem;
}

.tiktok-section > p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.tiktok-handle a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan);
}

.tiktok-handle a:hover {
  color: var(--cyan-light);
}

.tiktok-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

/* === Help Box === */
.help-box {
  text-align: center;
  background: linear-gradient(135deg, var(--deep-blue), var(--ocean));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}

.help-box p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* === Cruise Line Grid === */
.cruise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.cruise-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}

.cruise-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.cruise-card h3 {
  font-size: 1rem;
  color: var(--deep-blue);
  margin-bottom: 0.5rem;
}

.cruise-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.cruise-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
}

/* === Interview CTA === */
.interview-cta {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.interview-cta .btn-outline {
  color: var(--deep-blue);
  border-color: var(--gray-300);
}

.interview-cta .btn-outline:hover {
  background: var(--deep-blue);
  color: var(--white);
  border-color: var(--deep-blue);
}

/* === Visa Section === */
.visa-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.visa-intro p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.visa-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.visa-tips {
  background: linear-gradient(135deg, var(--deep-blue), var(--ocean));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.visa-tips h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.visa-tips ul {
  padding-left: 0;
}

.visa-tips li {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.visa-tips li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

/* === Services Grid === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--deep-blue);
  margin-bottom: 0.75rem;
}

.service-card > p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-card ul {
  text-align: left;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}

.service-card ul li {
  list-style: disc;
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

/* === Stats Grid === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: linear-gradient(135deg, var(--deep-blue), var(--ocean));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-300);
}

/* === Testimonials === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.badge-cv {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-job {
  background: #e3f2fd;
  color: #1565c0;
}

.badge-interview {
  background: #fce4ec;
  color: #c62828;
}

.badge-growth {
  background: #fff3e0;
  color: #e65100;
}

.badge-progression {
  background: #f3e5f5;
  color: #6a1b9a;
}

blockquote {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
}

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.contact-card h3 {
  font-size: 1rem;
  color: var(--deep-blue);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  word-break: break-word;
}

/* === Footer === */
.footer {
  background: var(--navy);
  color: var(--gray-300);
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}

.footer-domain {
  font-size: 0.9rem;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    border-bottom: 1px solid rgba(0, 188, 212, 0.15);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .hero {
    min-height: auto;
    padding: 8rem 1.5rem 4rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

  .experienced-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

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

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

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

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

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

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

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

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

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