/* ============================================
   TERRAVANA, PAGE STYLES
   ============================================ */

/* ─────────────────────────────────────────────
   HERO SECTIONS
   ───────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--primary-deep);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(10, 10, 10, 0.85) 0%,
      rgba(10, 10, 10, 0.5) 40%,
      rgba(10, 10, 10, 0.3) 100%);
}

/* Shimmer overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(105deg,
      transparent 40%,
      rgba(254, 206, 0, 0.03) 45%,
      rgba(254, 206, 0, 0.06) 50%,
      rgba(254, 206, 0, 0.03) 55%,
      transparent 60%);
  animation: heroShimmer 8s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes heroShimmer {

  0%,
  100% {
    transform: translateX(-20%);
  }

  50% {
    transform: translateX(20%);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 8rem 0 6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(254, 206, 0, 0.1);
  border: 1px solid rgba(254, 206, 0, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
}

.hero h1 em,
.hero h1 .typing-text {
  color: var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}


.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(254, 206, 0, 0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.4;
  }
}

/* ─── Page Hero (sub-pages) ─── */

.page-hero {
  padding: 10rem 0 5rem;
  background: var(--primary-deep);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(254, 206, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  max-width: 640px;
}

.page-hero .section-tag {
  color: var(--accent);
}

/* ─────────────────────────────────────────────
   TRUST STRIP
   ───────────────────────────────────────────── */

.trust-strip {
  padding: 1.5rem 0;
  background: var(--primary-deep);
  overflow: hidden;
  border-top: 1px solid rgba(254, 206, 0, 0.1);
  border-bottom: 1px solid rgba(254, 206, 0, 0.1);
}

.trust-strip-track {
  display: flex;
  animation: trustScroll 30s linear infinite;
  width: max-content;
}

.trust-strip-item {
  flex-shrink: 0;
  padding: 0 3rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.trust-strip-item::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

@keyframes trustScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─────────────────────────────────────────────
   HOME, SECTIONS
   ───────────────────────────────────────────── */

/* Who We Are */
.s-about {
  padding: var(--space-2xl) 0;
}

.s-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.s-about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.s-about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.s-about-image:hover img {
  transform: scale(1.04);
}

.s-about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.3), transparent);
  pointer-events: none;
}

.s-about-content p {
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

/* What We Do */
.s-services {
  padding: var(--space-2xl) 0;
  background: var(--bg-warm);
}

.s-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

/* Why Terravana */
.s-why {
  padding: var(--space-2xl) 0;
  background: var(--primary-deep);
  overflow: hidden;
  position: relative;
}

.s-why::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254, 206, 0, 0.06), transparent 70%);
  pointer-events: none;
}

.s-why .section-tag {
  color: var(--accent);
}

.s-why .section-headline {
  color: var(--white);
}

.s-why .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.s-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.why-card {
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: all var(--t-base) var(--ease-smooth);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(254, 206, 0, 0.2);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(254, 206, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-size: 1.125rem;
}

.why-card h3 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375rem;
}

/* Experiences Showcase */
.s-experiences {
  padding: var(--space-2xl) 0;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.exp-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.exp-card:hover img {
  transform: scale(1.08);
}

.exp-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 2rem 2rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
  z-index: 2;
}

.exp-card h3 {
  color: var(--white);
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.exp-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.exp-card-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 3;
  transition: all var(--t-base) var(--ease-spring);
  opacity: 0;
  transform: translate(-8px, 8px);
}

.exp-card:hover .exp-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ─── CTA Section ─── */
.s-cta {
  padding: var(--space-2xl) 0;
  background: var(--primary-deep);
  position: relative;
  overflow: hidden;
}

.s-cta::before,
.s-cta::after {
  content: '';
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.15;
  animation: blobFloat 12s ease-in-out infinite;
}

.s-cta::before {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: var(--accent);
}

.s-cta::after {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: -80px;
  background: var(--accent);
  animation-delay: 4s;
  animation-direction: reverse;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  33% {
    transform: rotate(60deg) scale(1.1);
  }

  66% {
    transform: rotate(-30deg) scale(0.95);
  }
}

.s-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.s-cta h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.s-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

/* ─────────────────────────────────────────────
   DESTINATIONS
   ───────────────────────────────────────────── */

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.dest-card:hover img {
  transform: scale(1.06);
}

.dest-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  z-index: 2;
}

.dest-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.dest-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

/* ─────────────────────────────────────────────
   SERVICES PAGE
   ───────────────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

/* ─────────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────────── */

.steps-section {
  padding: var(--space-2xl) 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px var(--accent-glow);
  transition: all var(--t-base) var(--ease-spring);
  border: 4px solid var(--white);
}

.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 32px var(--accent-glow);
}

.step-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ─────────────────────────────────────────────
   DESTINATIONS PAGE
   ───────────────────────────────────────────── */

.dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 450px;
  cursor: pointer;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.dest-card:hover img {
  transform: scale(1.06);
}

.dest-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4rem 2.5rem 2.5rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.4) 60%, transparent 100%);
  z-index: 2;
  transition: all var(--t-base);
}

.dest-card:hover .dest-card-overlay {
  padding-bottom: 3.5rem;
}

.dest-card h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.dest-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────
   PACKAGES
   ───────────────────────────────────────────── */

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: all var(--t-base) var(--ease-smooth);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.package-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.package-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.package-body {
  padding: 1.5rem 2rem;
}

.package-features {
  list-style: none;
  padding: 0;
}

.package-features li {
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.package-footer {
  padding: 1.5rem 2rem 2rem;
}

.package-footer .btn {
  width: 100%;
}

/* ─────────────────────────────────────────────
   VISA PAGE
   ───────────────────────────────────────────── */

.visa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.visa-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: all var(--t-base) var(--ease-smooth);
  position: relative;
}

.visa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(254, 206, 0, 0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-spring);
}

.visa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.visa-card:hover::before {
  transform: scaleX(1);
}

.visa-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.visa-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0;
}

/* Disclaimer */
.disclaimer {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}

.disclaimer p {
  margin: 0;
  font-size: 0.9375rem;
}

/* ─────────────────────────────────────────────
   CORPORATE
   ───────────────────────────────────────────── */

.corp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.corp-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: all var(--t-base) var(--ease-smooth);
}

.corp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.corp-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.corp-card p {
  margin-bottom: 1.25rem;
}

.corp-card ul {
  list-style: none;
  padding: 0;
}

.corp-card li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--muted);
  font-size: 0.9375rem;
}

.corp-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* Private client cards */
.private-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

/* ─────────────────────────────────────────────
   CONTACT PAGE
   ───────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-info-item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0;
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

/* Success/Error messages */
.alert {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.alert-success {
  background: rgba(0, 168, 107, 0.08);
  border-left: 3px solid #00a86b;
  color: #00703c;
}

.alert-error {
  background: rgba(220, 53, 69, 0.08);
  border-left: 3px solid #dc3545;
  color: #8b1a2b;
}

/* ─────────────────────────────────────────────
   ABOUT PAGE
   ───────────────────────────────────────────── */

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.philosophy-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--t-base) var(--ease-smooth);
}

.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.philosophy-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.philosophy-card p {
  font-size: 0.9375rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.audience-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--t-base) var(--ease-smooth);
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
  border-color: var(--accent);
}

.audience-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--accent);
  transition: all var(--t-base);
}

.audience-card:hover .audience-icon {
  background: var(--accent);
  color: var(--primary-deep);
}

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */

.footer {
  background: var(--charcoal);
  padding: 7rem 0 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9375rem;
  margin-top: 1.5rem;
  max-width: 280px;
}

.footer-brand img {
  height: 36px;
  width: auto;
}

.footer h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9375rem;
  padding: 0.375rem 0;
  transition: all var(--t-fast);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 0.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--t-fast) var(--ease-smooth);
  font-size: 0.875rem;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-deep);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8125rem;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */

@media (max-width: 1024px) {
  .s-about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .s-services-grid,
  .exp-grid,
  .dest-grid,
  .services-grid,
  .visa-grid,
  .philosophy-grid,
  .audience-grid,
  .private-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid::before {
    display: none;
  }

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

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

@media (max-width: 768px) {
  .hero-content {
    padding: 7rem 0 5rem;
    align-items: center;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-scroll {
    display: none;
  }

  .page-hero {
    padding: 8rem 0 3.5rem;
  }

  .s-services-grid,
  .exp-grid,
  .dest-grid,
  .services-grid,
  .visa-grid,
  .package-grid,
  .philosophy-grid,
  .audience-grid,
  .private-grid,
  .corp-grid {
    grid-template-columns: 1fr;
  }

  .s-why-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .s-about-image img {
    height: 350px;
  }

  .contact-form {
    padding: 2rem;
  }

  section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .s-about,
  .s-services,
  .s-why,
  .s-experiences,
  .s-cta,
  .steps-section {
    padding: 5rem 0;
  }
}