/* FONT FOR LOGO */
@font-face {
  font-family: "Vanitas Stencil";
  src: url("../assets/Vanitas Stencil.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --aj-primary: #1a5fb4;
  --aj-secondary: #26a269;
  --aj-accent: #f5b731;

  --aj-bg: #f5f5f7;
  --aj-bg-soft: #ffffff;

  --aj-text: #121212;
  --aj-text-muted: #6b7280;

  --aj-radius-xl: 28px;
  --aj-radius-lg: 20px;
  --aj-radius-pill: 999px;

  --aj-shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.18);
  --aj-shadow-card: 0 18px 40px rgba(15, 23, 42, 0.12);

  --aj-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Dynamic widths computed by language.js to keep header steady */
  --aj-nav-link-min: 96px;
  --aj-ticket-min: 150px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--aj-bg);
  color: var(--aj-text);
}

/* Accessibility helper */
.aj-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* REUSABLE */
.aj-section {
  padding: 96px clamp(20px, 4vw, 32px);
  max-width: 1120px;
  margin: 0 auto;
}

.aj-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.aj-section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  margin-bottom: 10px;
}

.aj-section-header p {
  color: var(--aj-text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* HEADER (always centered + steady) */
.aj-header {
  position: fixed;
  inset-inline: 0;
  top: 20px;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.aj-header-inner {
  pointer-events: auto;
  width: min(1120px, 100% - 32px);
  padding: 10px 20px;
  border-radius: var(--aj-radius-pill);

  /* Stronger contrast by default */
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(16px);

  /* Grid keeps center locked */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;

  transition: var(--aj-transition);
}

/* extra contrast when scrolled */
.aj-header.aj-header-scrolled .aj-header-inner {
  background: rgba(15, 23, 42, 0.86);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.42);
}

.aj-logo {
  justify-self: start;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.aj-logo-text {
  font-family: "Vanitas Stencil", serif;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

/* Nav centered and steady across languages */
.aj-nav {
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.aj-nav-link {
  min-width: var(--aj-nav-link-min);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: var(--aj-transition);
  white-space: nowrap;
}

.aj-nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: var(--aj-transition);
}

.aj-nav-link:hover,
.aj-nav-link-active {
  color: #ffffff;
}

.aj-nav-link:hover::after,
.aj-nav-link-active::after {
  width: 60%;
}

.aj-header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Language switch (visible on mobile too) */
.aj-lang-switch {
  display: flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.aj-lang-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--aj-transition);
  white-space: nowrap;
}

.aj-lang-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.aj-lang-active {
  background: #ffffff !important;
  color: #111827 !important;
}

/* Ticket button (min width computed so header doesn't shift between languages) */
.aj-ticket-btn {
  min-width: var(--aj-ticket-min);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #0f172a;
  color: #f9fafb;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.45);
  transition: var(--aj-transition);
  white-space: nowrap;
}

.aj-ticket-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.6);
}

.aj-ticket-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f9fafb;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
}

.aj-ticket-label {
  line-height: 1;
}

/* Burger */
.aj-burger {
  display: none;
  border: none;
  background: transparent;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  cursor: pointer;
}

.aj-burger span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: var(--aj-transition);
}

.aj-burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.aj-burger.active span:nth-child(2) {
  opacity: 0;
}

.aj-burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav - REMOVED LANGUAGE BUTTONS */
.aj-mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  padding: 96px 24px 40px;
  gap: 14px;
  transform: translateY(-100%);
  transition: var(--aj-transition);
  z-index: 40;
  pointer-events: none;
  opacity: 0;
}

.aj-mobile-nav-open {
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
}

.aj-mobile-link {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 12px 16px;
  border-radius: 12px;
  transition: var(--aj-transition);
}

.aj-mobile-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.aj-mobile-book-btn {
  margin-top: 10px;
  border-radius: 14px;
  border: none;
  padding: 12px 14px;
  font-weight: 700;
  background: #ffffff;
  color: #111827;
  cursor: pointer;
}

/* HERO */
.aj-hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 16px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.aj-hero-compact {
  min-height: 60vh;
}

.aj-hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.aj-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aj-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.78));
}

.aj-hero-overlay-strong {
  background: rgba(15, 23, 42, 0.82);
}

.aj-hero-center {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  color: #f9fafb;
  padding-inline: 16px;
}

.aj-hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.aj-hero-subtitle {
  font-size: 0.98rem;
  color: rgba(243, 244, 246, 0.92);
  max-width: 520px;
  margin: 0 auto;
}

/* BOOKING PILL */
.aj-booking-pill {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  width: min(880px, 100% - 32px);
  scroll-margin-top: 120px;
}

.aj-booking-form {
  display: flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 8px;
  box-shadow: var(--aj-shadow-soft);
  gap: 8px;
}

.aj-booking-field {
  flex: 1;
  padding-inline: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.aj-booking-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(209, 213, 219, 0.9);
}

.aj-booking-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f9fafb;
}

.aj-booking-input-wrapper i {
  font-size: 0.9rem;
  opacity: 0.9;
}

.aj-booking-input-wrapper select,
.aj-booking-input-wrapper input {
  border: none;
  background: transparent;
  color: #f9fafb;
  font-size: 0.95rem;
  font-weight: 600;
  width: 100%;
  outline: none;
  cursor: pointer;
  padding: 8px 0;
}

.aj-booking-input-wrapper select option {
  color: #111827;
  background: #ffffff;
}

.aj-booking-divider {
  width: 1px;
  height: 38px;
  background: rgba(148, 163, 184, 0.5);
}

.aj-booking-submit {
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #f9fafb;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--aj-transition);
  flex-shrink: 0;
}

.aj-booking-submit:hover {
  transform: translateY(-1px) scale(1.03);
  background: #ffffff;
}

/* AWARD STRIP */
.aj-award {
  padding: 56px 16px 0;
  max-width: 1120px;
  margin: 0 auto;
}

.aj-award-inner {
  border-radius: var(--aj-radius-xl);
  background: #ffffff;
  box-shadow: var(--aj-shadow-card);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.aj-award-inner h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.aj-award-inner p {
  font-size: 0.95rem;
  color: var(--aj-text-muted);
  line-height: 1.5;
}

.aj-award-inner img {
  height: 46px;
  object-fit: contain;
}

.aj-award-inner-stacked {
  flex-direction: column;
  text-align: center;
  gap: 26px;
}

.aj-award-stack-center {
  max-width: 860px;
}

.aj-award-big {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.aj-award-lead {
  color: var(--aj-text-muted);
  line-height: 1.7;
}

.aj-award-logo {
  height: 60px !important;
  margin-top: 16px;
}

.aj-link-inline {
  margin-top: 8px;
  border: none;
  background: transparent;
  color: var(--aj-primary);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--aj-transition);
  text-decoration: none;
}

.aj-link-inline:hover {
  gap: 10px;
}

/* FILTER CHIPS */
.aj-filter-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.aj-chip {
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: #111827;
  cursor: pointer;
  transition: var(--aj-transition);
}

.aj-chip-active,
.aj-chip:hover {
  background: #111827;
  color: #f9fafb;
  border-color: #111827;
}

/* DESTINATIONS GRID */
.aj-dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.aj-dest-card {
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--aj-shadow-card);
  display: flex;
  flex-direction: column;
  transition: var(--aj-transition);
}

.aj-dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

.aj-dest-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.aj-dest-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.aj-dest-card:hover .aj-dest-media img {
  transform: scale(1.1);
}

.aj-dest-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.85);
  color: #f9fafb;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.aj-dest-body {
  padding: 18px 18px 14px;
  flex: 1;
}

.aj-dest-body h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.aj-dest-location {
  font-size: 0.85rem;
  color: var(--aj-text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.aj-dest-location i {
  font-size: 0.75rem;
}

.aj-dest-desc {
  font-size: 0.85rem;
  color: var(--aj-text-muted);
  line-height: 1.5;
  margin-bottom: 16px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.aj-dest-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 10px;
  border-top: 1px solid #e5e7eb;
}

.aj-arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--aj-transition);
}

.aj-arrow-btn:hover {
  background: var(--aj-primary);
  border-color: var(--aj-primary);
  color: #ffffff;
}

/* BUTTONS */
.aj-center {
  text-align: center;
  margin-top: 28px;
}

.aj-ghost-btn {
  padding: 10px 24px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid #111827;
  color: #111827;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--aj-transition);
}

.aj-ghost-btn:hover {
  background: #111827;
  color: #f9fafb;
}

/* SOLUTIONS (centered) */
.aj-section-gradient {
  border-radius: 32px;
  background: radial-gradient(circle at top left, #1d4ed8, #0891b2 40%, #16a34a 80%);
  color: #f9fafb;
  position: relative;
  overflow: hidden;
}

.aj-section-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.25) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 80% 35%, rgba(255,255,255,0.25) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.25) 0 2px, transparent 2px 100%);
}

.aj-section-gradient .aj-section-header {
  position: relative;
  z-index: 1;
}

.aj-section-gradient .aj-section-header h2,
.aj-section-gradient .aj-section-header p {
  color: #ffffff;
}

.aj-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;

  /* Center grid contents */
  justify-items: center;
}

.aj-solution-card {
  width: 100%;
  max-width: 360px;

  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.40);
  backdrop-filter: blur(10px);
  padding: 20px 18px;

  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--aj-transition);

  /* Center card content (requested for Journey Solutions) */
  align-items: center;
  text-align: center;
}

.aj-solution-card:hover {
  transform: translateY(-5px);
  background: rgba(15, 23, 42, 0.52);
  border-color: rgba(148, 163, 184, 0.6);
}

.aj-solution-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.aj-solution-card h3 {
  font-size: 1.05rem;
  margin-bottom: 2px;
  color: #ffffff;
}

.aj-solution-card p {
  font-size: 0.88rem;
  color: rgba(241, 245, 249, 0.92);
  line-height: 1.5;
}

/* About: centered mission/vision */
.aj-center-section .aj-solution-card {
  max-width: 520px;
}

/* About page: 3 cards in award section */
.aj-cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  width: 100%;
  margin-top: 20px;
}

/* Light cards (fix contrast on About page) */
.aj-card-light {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  backdrop-filter: none !important;
  box-shadow: var(--aj-shadow-card);
}

.aj-card-light h3 {
  color: #0f172a !important;
}

.aj-card-light p {
  color: var(--aj-text-muted) !important;
}

.aj-icon-primary {
  background: var(--aj-primary) !important;
  color: #ffffff !important;
}

/* DEALS */
.aj-deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.aj-deal-card {
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--aj-shadow-card);
  display: flex;
  flex-direction: column;
  transition: var(--aj-transition);
}

.aj-deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

.aj-deal-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.aj-deal-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.aj-deal-card:hover .aj-deal-media video {
  transform: scale(1.05);
}

.aj-deal-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--aj-accent);
  color: #111827;
  font-size: 0.75rem;
  font-weight: 800;
  z-index: 2;
}

.aj-play-pulse {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aj-deal-card:hover .aj-play-pulse {
  opacity: 1;
}

.aj-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--aj-transition);
}

.aj-play-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 1);
}

.aj-deal-body {
  padding: 18px 18px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.aj-deal-title {
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.aj-deal-desc {
  font-size: 0.92rem;
  color: var(--aj-text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
  flex: 1;
}

.aj-deal-cta {
  border-radius: 999px;
  border: 1px solid #111827;
  padding: 10px 18px;
  font-size: 0.92rem;
  background: transparent;
  cursor: pointer;
  transition: var(--aj-transition);
  font-weight: 600;
}

.aj-deal-cta:hover {
  background: #111827;
  color: #ffffff;
}

/* TESTIMONIALS */
.aj-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.aj-test-card {
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--aj-shadow-card);
  padding: 18px 18px 16px;
  transition: var(--aj-transition);
}

.aj-test-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.aj-test-header {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.aj-test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.aj-test-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aj-test-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.aj-test-country {
  font-size: 0.8rem;
  color: var(--aj-text-muted);
}

.aj-test-rating {
  font-size: 0.85rem;
  color: #facc15;
  margin-bottom: 8px;
  margin-top: 4px;
}

.aj-test-text {
  font-size: 0.92rem;
  color: var(--aj-text-muted);
  line-height: 1.5;
  font-style: italic;
}

/* GALLERY */
.aj-gallery {
  margin: 80px 0;
}

.aj-gallery-track {
  display: flex;
  gap: 16px;
  animation: scrollGallery 30s linear infinite;
  padding: 20px 0;
}

@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.aj-gallery-track:hover {
  animation-play-state: paused;
}

.aj-gallery-track img {
  height: 300px;
  width: auto;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

/* JOURNEY CTA (centered text & button) */
.aj-journey {
  position: relative;
  width: min(1120px, 100% - 32px);
  margin: 0 auto 80px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--aj-shadow-soft);
  height: 500px;
}

.aj-journey video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78);
}

.aj-journey-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(20px, 5vw, 56px);
  color: #f9fafb;
}

.aj-journey-overlay-centered {
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.20));
}

.aj-journey-overlay h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.aj-journey-btn {
  margin-top: 12px;
  border-radius: 999px;
  border: none;
  background: #f9fafb;
  color: #111827;
  padding: 11px 24px;
  font-weight: 800;
  font-size: 0.98rem;
  cursor: pointer;
  transition: var(--aj-transition);
}

.aj-journey-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

/* TRUSTED */
.aj-trusted {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.aj-trusted-text h2 {
  font-size: 1.9rem;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.aj-trusted-text p {
  font-size: 0.95rem;
  color: var(--aj-text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.aj-trusted-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.aj-trusted-stats > div {
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--aj-shadow-card);
  min-width: 120px;
  text-align: center;
}

.aj-trusted-stats h3 {
  font-size: 1.8rem;
  color: var(--aj-primary);
  margin-bottom: 4px;
}

.aj-trusted-stats p {
  font-size: 0.85rem;
  color: var(--aj-text-muted);
  margin: 0;
}

.aj-trusted-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--aj-shadow-soft);
}

.aj-trusted-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.aj-trusted-image:hover img {
  transform: scale(1.05);
}

/* CTA */
.aj-cta {
  background: linear-gradient(135deg, var(--aj-primary), var(--aj-secondary));
  color: #ffffff;
  border-radius: 32px;
  margin: 80px 16px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.aj-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.25) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 80% 35%, rgba(255,255,255,0.25) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.25) 0 2px, transparent 2px 100%);
}

.aj-cta-inner {
  position: relative;
  z-index: 1;
}

.aj-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.aj-cta p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.aj-cta-btn {
  background: #ffffff;
  color: var(--aj-primary);
  border: none;
  border-radius: 999px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--aj-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.aj-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.22);
}

/* FOOTER */
.aj-footer {
  background: #111827;
  color: #ffffff;
  padding: 60px 16px 30px;
}

.aj-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.aj-footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aj-footer-col .aj-logo-text {
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: 0.10em;
}

.aj-footer-col p {
  font-size: 0.9rem;
  color: rgba(209, 213, 219, 0.85);
  line-height: 1.5;
}

.aj-footer-col h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.aj-footer-col a {
  color: rgba(209, 213, 219, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--aj-transition);
}

.aj-footer-col a:hover {
  color: #ffffff;
}

.aj-footer-col i {
  width: 20px;
  margin-right: 8px;
  opacity: 0.9;
}

.aj-footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(209, 213, 219, 0.75);
}

/* MODALS */
.aj-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aj-modal.show {
  display: flex;
  opacity: 1;
}

.aj-modal-content {
  background: #ffffff;
  border-radius: 28px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.aj-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #f3f4f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  transition: var(--aj-transition);
}

.aj-modal-close:hover {
  background: #e5e7eb;
  transform: rotate(90deg);
}

.aj-modal-body {
  padding: 40px;
}

/* BOOKING MODAL */
.aj-booking-modal {
  max-width: 600px;
}

.aj-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.aj-step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--aj-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.aj-step-header h3 {
  font-size: 1.2rem;
  color: #111827;
}

.aj-form-group {
  margin-bottom: 20px;
}

.aj-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #374151;
}

.aj-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: var(--aj-transition);
}

.aj-form-input:focus {
  outline: none;
  border-color: var(--aj-primary);
  box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.12);
}

.aj-form-textarea {
  min-height: 100px;
  resize: vertical;
}

.aj-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.aj-summary-item {
  padding: 16px;
  background: #f9fafb;
  border-radius: 12px;
}

.aj-summary-label {
  font-size: 0.8rem;
  color: #6b7280;
  display: block;
  margin-bottom: 4px;
}

.aj-summary-value {
  font-weight: 800;
  color: #111827;
}

.aj-send-options {
  margin: 32px 0;
}

.aj-send-buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.aj-send-btn {
  flex: 1;
  padding: 12px;
  border-radius: 12px;
  border: none;
  font-weight: 800;
  cursor: pointer;
  transition: var(--aj-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.aj-send-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.aj-send-email {
  background: #ea4335;
  color: #ffffff;
}

.aj-send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* LEGAL (Privacy page) */
.aj-legal {
  max-width: 1100px;
  margin: 0 auto;
}

.aj-legal-intro {
  margin-bottom: 22px;
  text-align: center;
}

.aj-legal-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.aj-legal-intro p {
  color: var(--aj-text-muted);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

.aj-legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.aj-legal-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: var(--aj-shadow-card);
  padding: 18px 18px 16px;
}

.aj-legal-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.aj-legal-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--aj-primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.aj-legal-card p {
  color: var(--aj-text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.aj-legal-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.aj-legal-list li {
  color: var(--aj-text-muted);
  line-height: 1.55;
  position: relative;
  padding-left: 18px;
}

.aj-legal-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--aj-primary);
  position: absolute;
  left: 0;
  top: 0.65em;
}

.aj-legal-card-accent {
  border: 1px solid rgba(26, 95, 180, 0.25);
  background: linear-gradient(180deg, rgba(26, 95, 180, 0.06), #ffffff);
}

.aj-legal-contact {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
}

.aj-legal-contact li {
  display: flex;
  gap: 10px;
  color: var(--aj-text-muted);
  line-height: 1.5;
}

.aj-legal-contact span {
  color: #111827;
  font-weight: 700;
}

/* ANIMATIONS */
.aj-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.aj-reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .aj-header-inner {
    width: calc(100% - 16px);
    padding: 8px 12px;
    grid-template-columns: auto 1fr auto;
  }

  .aj-nav {
    display: none;
  }

  .aj-burger {
    display: flex;
  }

  .aj-logo-text {
    font-size: 1.15rem;
  }

  .aj-booking-form {
    flex-direction: column;
    border-radius: 24px;
    padding: 16px;
    gap: 16px;
  }

  .aj-booking-field {
    width: 100%;
    padding-inline: 0;
  }

  .aj-booking-divider {
    width: 100%;
    height: 1px;
  }

  .aj-booking-submit {
    width: 100%;
    height: 44px;
  }

  .aj-section {
    padding: 60px 16px;
  }

  .aj-award-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .aj-deals-grid {
    grid-template-columns: 1fr;
  }

  .aj-dest-grid {
    grid-template-columns: 1fr;
  }

  .aj-solutions-grid {
    grid-template-columns: 1fr;
  }

  .aj-trusted {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aj-trusted-image {
    order: -1;
  }

  .aj-journey {
    height: 400px;
    border-radius: 24px;
  }

  .aj-cta {
    margin: 40px 16px;
    padding: 40px 24px;
  }

  .aj-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .aj-hero-title {
    font-size: 2rem;
  }

  .aj-hero-subtitle {
    font-size: 0.9rem;
  }

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

  /* keep language switch visible (no longer hidden) */
  .aj-lang-switch {
    padding: 3px;
  }

  .aj-lang-btn {
    padding: 4px 8px;
  }

  /* ticket becomes icon-only to save space (still stable width via CSS var if needed) */
  .aj-ticket-label {
    display: none;
  }

  .aj-ticket-btn {
    min-width: auto;
    padding: 8px 10px;
  }

  .aj-gallery-track img {
    height: 200px;
  }
}

/* RTL SUPPORT */
[dir="rtl"] .aj-logo-text {
  letter-spacing: 0;
}

[dir="rtl"] .aj-nav-link::after {
  left: auto;
  right: 50%;
  translate: 50% 0;
}

[dir="rtl"] .aj-ticket-icon {
  order: -1;
}

[dir="rtl"] .aj-booking-input-wrapper i {
  order: 1;
}

[dir="rtl"] .aj-section-gradient {
  background: radial-gradient(circle at top right, #1d4ed8, #0891b2 40%, #16a34a 80%);
}

[dir="rtl"] .aj-footer-col i {
  margin-right: 0;
  margin-left: 8px;
}

/* Add these styles to the end of your existing style.css file */

/* Fix for destinations grid reveal animation */
.aj-dest-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.aj-dest-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Booking modal fixes */
#booking-name,
#booking-email,
#booking-phone,
#booking-message {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

#booking-name:focus,
#booking-email:focus,
#booking-phone:focus,
#booking-message:focus {
  outline: none;
  border-color: var(--aj-primary);
  box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.12);
}

/* RTL fixes for booking form */
[dir="rtl"] .aj-booking-form {
  direction: rtl;
}

[dir="rtl"] .aj-booking-input-wrapper i {
  margin-right: 0;
  margin-left: 10px;
}

/* No destinations message styling */
.aj-no-destinations {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--aj-text-muted);
}

.aj-no-destinations i {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.5;
}

.aj-no-destinations p {
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Fix for show more button */
.aj-center {
  margin-top: 40px;
}

.aj-ghost-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.aj-ghost-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

/* Language switcher persistence indicator */
.aj-lang-btn::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: var(--aj-accent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aj-lang-active::after {
  opacity: 1;
}

/* Cross-page booking button fix */
[data-scroll-booking="true"] {
  cursor: pointer;
}

/* Mobile fixes */
@media (max-width: 768px) {
  .aj-dest-card {
    opacity: 1;
    transform: none;
  }
  
  .aj-no-destinations {
    padding: 40px 20px;
  }
  
  .aj-no-destinations i {
    font-size: 2rem;
  }
}

/* Updated Gallery Styles - Similar to framer-kpkvgo-container */
.aj-gallery {
  margin: 80px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.aj-gallery::before,
.aj-gallery::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.aj-gallery::before {
  left: 0;
  background: linear-gradient(to right, var(--aj-bg), transparent);
}

.aj-gallery::after {
  right: 0;
  background: linear-gradient(to left, var(--aj-bg), transparent);
}

.aj-gallery-track {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  animation: scrollGallery 40s linear infinite;
  width: max-content;
}

.aj-gallery-item {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.aj-gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
}

.aj-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.aj-gallery-item:hover img {
  transform: scale(1.1);
}

.aj-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aj-gallery-item:hover .aj-gallery-overlay {
  opacity: 1;
}

/* Pause animation on hover */
.aj-gallery-track:hover {
  animation-play-state: paused;
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 10 - 20px * 10));
  }
}

/* Responsive gallery */
@media (max-width: 768px) {
  .aj-gallery-item {
    width: 250px;
    height: 350px;
  }
  
  .aj-gallery-track {
    gap: 15px;
  }
  
  @keyframes scrollGallery {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 10 - 15px * 10));
    }
  }
}

@media (max-width: 480px) {
  .aj-gallery-item {
    width: 200px;
    height: 280px;
  }
  
  .aj-gallery-track {
    gap: 12px;
  }
  
  @keyframes scrollGallery {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-200px * 10 - 12px * 10));
    }
  }
}

/* Enhanced destination cards */
.aj-dest-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.aj-dest-card.show {
  opacity: 1;
  transform: translateY(0);
}

.aj-dest-card:hover {
  border-color: var(--aj-primary);
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

.aj-dest-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.aj-dest-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.aj-dest-card:hover .aj-dest-media img {
  transform: scale(1.1);
}

.aj-dest-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.85);
  color: #f9fafb;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* No destinations message */
.aj-no-destinations {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--aj-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.aj-no-destinations i {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.5;
  color: var(--aj-primary);
}

.aj-no-destinations p {
  font-size: 1.1rem;
  margin-top: 10px;
  max-width: 400px;
  line-height: 1.5;
}

/* Improved show more button */
.aj-ghost-btn {
  padding: 12px 28px;
  border-radius: 999px;
  background: transparent;
  border: 2px solid var(--aj-primary);
  color: var(--aj-primary);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.aj-ghost-btn:hover {
  background: var(--aj-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(26, 95, 180, 0.2);
}

.aj-ghost-btn:active {
  transform: translateY(0);
}

/* Destination modal improvements */
.aj-modal-body ul {
  list-style: none;
  color: var(--aj-text-muted);
  line-height: 1.6;
  padding-left: 0;
}

.aj-modal-body ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
}

.aj-modal-body ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--aj-primary);
  font-weight: bold;
}

/* Filter chips improvements */
.aj-chip {
  border-radius: 999px;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: #111827;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.aj-chip-active,
.aj-chip:hover {
  background: var(--aj-primary);
  color: #f9fafb;
  border-color: var(--aj-primary);
  transform: translateY(-1px);
}

.aj-chip-active {
  box-shadow: 0 4px 12px rgba(26, 95, 180, 0.2);
}

/* Responsive fixes */
@media (max-width: 768px) {
  .aj-gallery::before,
  .aj-gallery::after {
    width: 50px;
  }
  
  .aj-no-destinations {
    padding: 40px 20px;
  }
  
  .aj-no-destinations i {
    font-size: 2.5rem;
  }
}

/* Social Media Icons - Solid Style */
.aj-footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.aj-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: var(--aj-transition);
  position: relative;
  overflow: hidden;
}

.aj-social-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.aj-social-btn i {
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  /* RESET inherited styles that break centering */
  margin: 0;
  width: auto;
  line-height: 1;
}

/* Facebook - Blue */
.aj-social-fb {
  color: #1877F2;
  border: 1px solid rgba(24, 119, 242, 0.3);
}

.aj-social-fb:hover {
  background: #1877F2;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

/* Instagram - Purple/Orange Gradient */
.aj-social-ig {
  color: #E4405F;
  border: 1px solid rgba(228, 64, 95, 0.3);
}

.aj-social-ig:hover {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(228, 64, 95, 0.3);
}

/* X (Twitter) - Black */
.aj-social-x {
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.aj-social-x:hover {
  background: #000000;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Solid icon hover effect */
.aj-social-btn:hover i {
  animation: iconBounce 0.4s ease;
}

@keyframes iconBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .aj-footer-social {
    justify-content: flex-start;
    margin-top: 25px;
  }
  
  .aj-social-btn {
    width: 44px;
    height: 44px;
  }
  
  .aj-social-btn i {
    font-size: 1.2rem;
  }
}

/* Dark mode adjustment for X button */
@media (prefers-color-scheme: dark) {
  .aj-social-x {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
}