/* CSS Variables */
:root {
  /* Colors */
  --navy: #1e3a8a;
  --soft-blue: #3b82f6;
  --gold: #f59e0b;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  
  /* Fonts */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--gray-700);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* Navigation */
.main-nav {
  background: white;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}

.logo-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}

.logo-text {
  font-family: var(--font-serif);
}

/* Affiliate Partners Bar */
.affiliate-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--soft-blue) 100%);
  color: white;
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.affiliate-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.affiliate-label {
  font-weight: 600;
  white-space: nowrap;
}

.affiliate-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.affiliate-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.8rem;
}

.affiliate-link:hover {
  color: var(--gold);
  transform: scale(1.05);
}

.affiliate-link .icon {
  width: 0.75rem;
  height: 0.75rem;
}

.affiliate-link .external-icon {
  width: 0.5rem;
  height: 0.5rem;
  opacity: 0.5;
}

/* New Hero Banner */
.hero-banner {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--soft-blue) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}

.hero-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 138, 0.1);
  z-index: 1;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-banner-button {
  background: var(--gold);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.hero-banner-button:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

/* Flexible Affiliate Layout */
.affiliate-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}

.affiliate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  min-width: 90px;
  white-space: nowrap;
}

.affiliate-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: var(--gold);
}

.affiliate-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.affiliate-name {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

/* Extra Talents Section */
.extra-talents {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--gray-200);
}

.extra-talents h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.talents-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-600);
}

.talents-description strong {
  color: var(--navy);
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 58, 138, 0.8) 50%, rgba(59, 130, 246, 0.7) 100%);
  z-index: 1;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url('assets/HERO IMAGE1_1753415316398.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.4;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-button {
  background: var(--gold);
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(0);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-button:hover {
  background: rgba(245, 158, 11, 0.9);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-icon {
  width: 1.5rem;
  height: 1.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.section-title.white {
  color: white;
}

.section-divider {
  width: 6rem;
  height: 0.25rem;
  background: var(--gold);
  margin: 0 auto 2rem;
}

.section-divider.gold {
  background: var(--gold);
}

.section-description {
  font-size: 1.25rem;
  color: var(--gray-700);
  max-width: 64rem;
  margin: 0 auto;
  line-height: 1.6;
}

.section-description.white {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

/* Journey Section */
.journey-section {
  padding: 5rem 0;
  background: var(--gray-50);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.journey-card {
  text-align: center;
  padding: 1rem;
}

.journey-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(30, 58, 138, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.journey-icon .icon {
  width: 2rem;
  height: 2rem;
  color: var(--navy);
}

.journey-card h3 {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.journey-card p {
  color: var(--gray-600);
}



.expertise-years {
  text-align: right;
}

.years-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.years-label {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Results Panel */
.results-panel {
  background: linear-gradient(135deg, var(--navy) 0%, var(--soft-blue) 100%);
  border-radius: 1rem;
  padding: 2rem;
  color: white;
  position: sticky;
  top: 2rem;
}

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

.results-icon {
  width: 3rem;
  height: 3rem;
  color: var(--gold);
  margin: 0 auto 1rem;
}

.results-panel h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.total-years {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: all 0.5s ease;
  transform-origin: center;
}

.years-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.selection-details {
  transition: all 0.3s ease;
}

.selection-details.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.selection-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.count-icon {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}

.selection-breakdown {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1.5rem 0;
}

.selection-breakdown h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.breakdown-list {
  font-size: 0.875rem;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.breakdown-years {
  color: var(--gold);
  font-weight: 600;
}

.experience-note {
  background: rgba(245, 158, 11, 0.2);
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.note-icon {
  width: 1rem;
  height: 1rem;
}

.empty-state {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* World-Class Expertise Section */
.expertise-section {
  padding: 4rem 0 6rem 0;
  background: #F9FAFB;
}

@media (min-width: 768px) {
  .expertise-section {
    padding: 6rem 0 8rem 0;
  }
}

.expertise-title {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  color: var(--navy);
  margin-bottom: 1rem;
}

.expertise-underline {
  width: 4rem;
  height: 4px;
  background: linear-gradient(to right, rgba(30, 58, 138, 0.3), rgba(30, 58, 138, 0.8));
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.expertise-intro {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.6;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2rem;
  }
}

@media (min-width: 1024px) {
  .expertise-grid {
    gap: 3rem;
  }
}

.expertise-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(1rem);
}

.expertise-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.expertise-card.animate-fadeInUp {
  opacity: 1;
  transform: translateY(0);
}

.expertise-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.expertise-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

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

/* Profiles Section */
.profiles-section {
  padding: 5rem 0;
  background: var(--gray-50);
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.profile-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.profile-image {
  width: 100%;
  height: 16rem;
  object-fit: contain;
  object-position: center;
  background: var(--gray-50);
  padding: 1rem;
}

.profile-content {
  padding: 2rem;
}

.profile-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.profile-title {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.profile-languages {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.language-tag {
  background: var(--navy);
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-weight: 500;
}

.profile-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Expertise Section */
.expertise-section {
  padding: 5rem 0;
  background: white;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.expertise-card {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--color-start), var(--color-end));
}

.expertise-icon.blue {
  --color-start: #3b82f6;
  --color-end: #1d4ed8;
}

.expertise-icon.green {
  --color-start: #10b981;
  --color-end: #047857;
}

.expertise-icon.purple {
  --color-start: #8b5cf6;
  --color-end: #7c3aed;
}

.expertise-icon.indigo {
  --color-start: #6366f1;
  --color-end: #4f46e5;
}

.expertise-icon.orange {
  --color-start: #f59e0b;
  --color-end: #d97706;
}

.expertise-icon.teal {
  --color-start: #14b8a6;
  --color-end: #0f766e;
}

.expertise-icon .icon {
  width: 2.5rem;
  height: 2.5rem;
  color: white;
}

.expertise-card h3 {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.expertise-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Cruise Lines Section */
.cruise-section {
  padding: 5rem 0;
  background: var(--gray-50);
}

.cruise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cruise-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .cruise-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.cruise-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background: white;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cruise-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cruise-logo img {
  height: 3rem;
  object-fit: contain;
}

.cruise-additional {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(245, 158, 11, 0.05));
  border-radius: 0.5rem;
  margin-top: 1rem;
}

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

.additional-title {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.875rem;
}

.additional-text {
  color: var(--gray-600);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* Contact Section */
.contact-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy), var(--soft-blue));
  overflow: hidden;
}

.contact-background {
  position: absolute;
  inset: 0;
  background-image: url('assets/HERO IMAGE2_1753415316399.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.contact-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 3rem;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.trust-icon {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}

.contact-form-container {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  max-width: 48rem;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid var(--gray-300);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  background: var(--gold);
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: flex-start;
}

.submit-button:hover {
  background: rgba(245, 158, 11, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.button-icon {
  width: 1rem;
  height: 1rem;
}

/* Success Message */
.success-message {
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
  animation: slideInUp 0.5s ease-out;
}

.success-message.hidden {
  display: none;
}

.success-content {
  max-width: 400px;
  margin: 0 auto;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  color: white;
  margin: 0 auto 1.5rem;
}

.success-message h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.success-message p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.reset-button {
  background: white;
  color: #059669;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.reset-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1000;
  transition: all 0.3s ease;
  transform: translateX(100%);
}

.toast.show {
  transform: translateX(0);
}

.toast.hidden {
  transform: translateX(100%);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toast-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #10b981;
}

.toast-message {
  color: var(--gray-700);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .affiliate-container {
    padding: 0 1rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .affiliate-links {
    justify-content: center;
    gap: 1rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .profiles-grid {
    grid-template-columns: 1fr;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form-container {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .success-message {
    padding: 2rem;
  }
  
  .success-icon {
    width: 3rem;
    height: 3rem;
  }
  
  .toast {
    right: 1rem;
    left: 1rem;
    max-width: calc(100% - 2rem);
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

.animate-scaleIn {
  animation: scaleIn 0.5s ease-out;
}