/* ============================================
   AVYRO TRAVEL SERVICES — STYLESHEET
   Design: Warm white + coral/rose, editorial feel
   Fonts: DM Sans (body) + Playfair Display (headings)
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  --primary: #E8636F;
  --primary-dark: #D14F5B;
  --primary-light: #FFEAEC;
  --primary-glow: rgba(232, 99, 111, 0.12);
  --accent-amber: #F4A261;
  --accent-green: #81B29A;
  --accent-purple: #7B68EE;
  --bg: #FFFAF8;
  --bg-alt: #FFF5F2;
  --surface: #FFFFFF;
  --text: #2D2A27;
  --text-secondary: #5A5653;
  --text-muted: #8A8683;
  --text-light: #B8B4B1;
  --border: #F0EDED;
  --border-hover: #E0DCDA;
  --shadow-sm: 0 1px 3px rgba(45, 42, 39, 0.04), 0 1px 2px rgba(45, 42, 39, 0.06);
  --shadow-md: 0 4px 14px rgba(45, 42, 39, 0.06), 0 2px 6px rgba(45, 42, 39, 0.04);
  --shadow-lg: 0 12px 40px rgba(45, 42, 39, 0.08), 0 4px 12px rgba(45, 42, 39, 0.04);
  --shadow-xl: 0 20px 60px rgba(45, 42, 39, 0.1), 0 8px 20px rgba(45, 42, 39, 0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* Subtle grain texture overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.02;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 16px rgba(232, 99, 111, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 24px rgba(232, 99, 111, 0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 14px 20px;
}

.btn-ghost:hover {
  color: var(--primary);
}

.btn-ghost svg {
  transition: transform 0.3s var(--ease-out);
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

.btn-white {
  background: white;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

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

/* ---------- Section Common ---------- */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 18px;
  color: var(--text);
}

.title-accent {
  color: var(--primary);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(255, 250, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 1px 12px rgba(45, 42, 39, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  margin: 0 0 10px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: var(--primary);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 99, 111, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
  background: linear-gradient(165deg, var(--bg) 0%, #FFF0EB 40%, var(--bg-alt) 70%, var(--bg) 100%);
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #FFDEE2 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: blobFloat 12s ease-in-out infinite;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #FFE8D6 0%, transparent 70%);
  bottom: 0;
  left: -80px;
  animation: blobFloat 15s ease-in-out infinite reverse;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #E8D5F5 0%, transparent 70%);
  top: 40%;
  left: 45%;
  animation: blobFloat 18s ease-in-out infinite 3s;
}

@keyframes blobFloat {

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

  33% {
    transform: translate(30px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  background: white;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  border: 1px solid var(--primary-light);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

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

.hero-headline {
  font-size: clamp(42px, 6.5vw, 72px);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.headline-accent {
  color: var(--primary);
  font-style: italic;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-subtitle strong {
  color: var(--text);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  border: 2px solid var(--bg);
  margin-left: -8px;
}

.trust-avatar:first-child {
  margin-left: 0;
}

.hero-trust strong {
  color: var(--text);
  font-weight: 600;
}

/* Floating Cards */
.hero-visual {
  position: relative;
  height: 480px;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(240, 237, 237, 0.6);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.floating-card:hover {
  transform: scale(1.03) !important;
  box-shadow: var(--shadow-xl);
}

.floating-card-1 {
  top: 30px;
  right: 0;
  transform: rotate(2deg);
  animation: float1 6s ease-in-out infinite;
}

.floating-card-2 {
  top: 180px;
  left: 10px;
  transform: rotate(-1deg);
  animation: float2 7s ease-in-out infinite 1s;
}

.floating-card-3 {
  bottom: 50px;
  right: 30px;
  transform: rotate(1.5deg);
  animation: float3 8s ease-in-out infinite 2s;
}

@keyframes float1 {

  0%,
  100% {
    transform: rotate(2deg) translateY(0);
  }

  50% {
    transform: rotate(2deg) translateY(-14px);
  }
}

@keyframes float2 {

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

  50% {
    transform: rotate(-1deg) translateY(-18px);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: rotate(1.5deg) translateY(0);
  }

  50% {
    transform: rotate(1.5deg) translateY(-12px);
  }
}

.fc-icon {
  font-size: 28px;
  line-height: 1;
}

.fc-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fc-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.fc-prices {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.fc-original {
  color: var(--text-light);
  text-decoration: line-through;
}

.fc-arrow {
  color: var(--text-light);
  font-size: 11px;
}

.fc-avyro {
  color: var(--accent-green);
  font-weight: 700;
}

.fc-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-green);
  background: #E6F9F0;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* ==========================================
   MARQUEE STRIP
   ========================================== */
.marquee-strip {
  background: var(--text);
  color: white;
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

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

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-dot {
  color: var(--primary);
  font-size: 10px;
}

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

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

/* ==========================================
   STATS
   ========================================== */
.stats {
  padding: 56px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 8px 16px;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: left;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-out);
  transform-origin: left;
  z-index: 2;
}

.service-card-img {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
}

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

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

.service-img-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.service-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  transition: transform 0.35s var(--ease-spring);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
}

.service-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.service-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-save {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-green);
  background: #E6F9F0;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ==========================================
   HORIZONTAL SHOWCASE SECTION
   ========================================== */
.horizontal-showcase {
  background: var(--bg-alt);
  overflow: hidden;
  padding: 90px 0;
}

.showcase-outer {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.showcase-outer::-webkit-scrollbar {
  display: none;
}

.showcase-track {
  display: flex;
  gap: 24px;
  padding: 0 5vw;
  width: max-content;
  will-change: transform;
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-card {
  width: 320px;
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
  flex-shrink: 0;
}

.showcase-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.showcase-img-holder {
  position: relative;
  height: 190px;
  overflow: hidden;
}

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

.showcase-card:hover .showcase-img-holder img {
  transform: scale(1.1);
}

.showcase-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-green);
  color: white;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.showcase-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.showcase-cat {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.showcase-info h4 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.showcase-info p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.showcase-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.showcase-old {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 6px;
}

.showcase-new {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--accent-green);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-it-works {
  background: var(--bg-alt);
}

.steps {
  max-width: 780px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
}

.step-reverse {
  direction: rtl;
}

.step-reverse>* {
  direction: ltr;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  min-width: 80px;
  text-align: center;
  transition: color 0.3s ease;
}

.step:hover .step-number {
  color: var(--primary);
}

.step-content h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-bg {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-spring);
}

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

.step-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary-light), transparent);
  margin: 0 auto;
  border-radius: 2px;
}

/* ==========================================
   SAVINGS
   ========================================== */
.savings {
  background: var(--bg);
}

.savings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.savings-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.35s var(--ease-out);
}

.savings-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.savings-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.savings-emoji {
  font-size: 32px;
  line-height: 1;
}

.savings-card-header h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.savings-card-header small {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 13px;
}

.savings-prices {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.price-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.price-original {
  color: var(--text-light);
  text-decoration: line-through;
  text-decoration-color: #E8636F;
  text-decoration-thickness: 2px;
}

.price-avyro {
  color: var(--accent-green);
}

.price-arrow-col {
  flex-shrink: 0;
}

.savings-footer {
  text-align: right;
}

.you-save {
  font-size: 14px;
  color: var(--accent-green);
  font-weight: 500;
}

.you-save strong {
  font-weight: 700;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
  background: var(--bg-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.35s var(--ease-out);
}

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

.testimonial-featured {
  border-color: var(--primary);
  border-width: 1.5px;
  background: linear-gradient(to bottom, #FFF8F7, var(--surface));
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 64px;
  color: var(--primary-light);
  line-height: 0.8;
  margin-bottom: 8px;
  user-select: none;
}

.testimonial-featured .testimonial-quote {
  color: var(--primary);
  opacity: 0.3;
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-meta strong {
  font-size: 14px;
  color: var(--text);
}

.testimonial-meta span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================
   FAQ
   ========================================== */
.faq {
  background: var(--bg);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.25s ease;
  gap: 16px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-alt);
  transition: all 0.3s var(--ease-out);
  color: var(--text-muted);
}

.faq-item.active .faq-toggle {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  padding: 0 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 0 22px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-right: 48px;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, #E8636F 0%, #D14F5B 40%, #C44456 100%);
  position: relative;
  overflow: hidden;
}

.cta-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cta-blob-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  top: -150px;
  right: -100px;
}

.cta-blob-2 {
  width: 300px;
  height: 300px;
  background: rgba(244, 162, 97, 0.15);
  bottom: -100px;
  left: -50px;
}

.cta-container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-size: clamp(32px, 5vw, 52px);
  color: white;
  margin-bottom: 18px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #1E1C1B;
  color: #C8C4C1;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo .logo-text {
  color: white;
  font-size: 20px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: #8A8683;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #8A8683;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a,
.footer-col ul span {
  font-size: 14px;
  color: #8A8683;
  transition: color 0.25s ease;
}

.footer-col ul a:hover {
  color: white;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact svg {
  flex-shrink: 0;
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #5A5653;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #5A5653;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

.savings-card-img {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

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

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

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(90px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays for grid children */
.services-grid .service-card:nth-child(1) {
  transition-delay: 0s;
}

.services-grid .service-card:nth-child(2) {
  transition-delay: 0.08s;
}

.services-grid .service-card:nth-child(3) {
  transition-delay: 0.16s;
}

.services-grid .service-card:nth-child(4) {
  transition-delay: 0.24s;
}

.services-grid .service-card:nth-child(5) {
  transition-delay: 0.32s;
}

.services-grid .service-card:nth-child(6) {
  transition-delay: 0.4s;
}

.services-grid .service-card:nth-child(7) {
  transition-delay: 0.48s;
}

.services-grid .service-card:nth-child(8) {
  transition-delay: 0.56s;
}

.savings-grid .savings-card:nth-child(1) {
  transition-delay: 0s;
}

.savings-grid .savings-card:nth-child(2) {
  transition-delay: 0.1s;
}

.savings-grid .savings-card:nth-child(3) {
  transition-delay: 0.2s;
}

.savings-grid .savings-card:nth-child(4) {
  transition-delay: 0.3s;
}

.testimonials-grid .testimonial-card:nth-child(1) {
  transition-delay: 0s;
}

.testimonials-grid .testimonial-card:nth-child(2) {
  transition-delay: 0.12s;
}

.testimonials-grid .testimonial-card:nth-child(3) {
  transition-delay: 0.24s;
}

/* ==========================================
   RESPONSIVE — TABLET
   ========================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 60px 40px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
    transition: right 0.4s var(--ease-out);
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 18px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 100px 0 40px;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-visual {
    height: 380px;
    max-width: 400px;
    margin: 0 auto;
  }

  .floating-card-1 {
    top: 10px;
    right: 10px;
    left: auto;
  }

  .floating-card-2 {
    top: 140px;
    left: 0;
  }

  .floating-card-3 {
    bottom: 20px;
    right: 20px;
  }

  .stats-container {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    min-width: 140px;
  }

  .step {
    grid-template-columns: auto 1fr;
    gap: 20px;
  }

  .step-reverse {
    direction: ltr;
  }

  .step-visual {
    display: none;
  }

  .step-number {
    font-size: 40px;
    min-width: 60px;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }
}

/* ==========================================
   RESPONSIVE — MOBILE
   ========================================== */
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 18px;
  }

  .hero-headline {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-visual {
    height: 320px;
  }

  .floating-card {
    padding: 12px 14px;
    gap: 10px;
  }

  .fc-icon {
    font-size: 22px;
  }

  .fc-name {
    font-size: 13px;
  }

  .fc-prices {
    font-size: 12px;
  }

  .fc-badge {
    font-size: 10px;
    padding: 3px 8px;
  }

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

  .service-card {
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .service-card-img {
    height: 140px;
  }

  .service-card-body {
    padding: 18px;
  }

  .service-icon-wrap {
    margin-bottom: 10px;
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .service-desc {
    display: block;
    font-size: 13px;
    margin-bottom: 12px;
  }

  .showcase-card {
    width: 280px;
  }

  .savings-prices {
    padding: 16px;
    flex-direction: column;
    gap: 12px;
  }

  .price-arrow-col {
    transform: rotate(90deg);
  }

  .price-col {
    text-align: center;
    align-items: center;
  }

  .savings-footer {
    text-align: center;
  }

  .cta-headline {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 16px;
  }

  .section {
    padding: 56px 0;
  }

  .faq-answer p {
    padding-right: 0;
  }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.show {
  opacity: 1;
  visibility: visible;
}