/* ============================================================
   WORLDS TRAVEL LLC — Main Stylesheet
   Website: worldstravel.co.uk
   Phone: 080 8501 0080 (UK 24/7 Helpline)
   ============================================================ */

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

/* ── CSS CUSTOM PROPERTIES (DESIGN TOKENS) ── */
:root {
  /* Brand Colors */
  --blue:         #1a56db;
  --blue-dark:    #1342b0;
  --blue-light:   #3b82f6;

  /* Background Tints */
  --sky:          #e8f0fe;
  --sky2:         #dbeafe;

  /* Neutrals */
  --white:        #ffffff;
  --gray-50:      #f8fafc;
  --gray-100:     #f1f5f9;
  --gray-200:     #e2e8f0;
  --gray-600:     #475569;
  --gray-700:     #334155;
  --gray-800:     #1e293b;

  /* Accent Colors */
  --gold:         #f59e0b;
  --green:        #10b981;
  --red:          #ef4444;

  /* Typography */
  --font-main:    'Inter', sans-serif;

  /* Spacing */
  --section-pad:  80px 24px;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(26, 86, 219, 0.10);
  --shadow-md:    0 8px 28px rgba(26, 86, 219, 0.14);
  --shadow-lg:    0 20px 50px rgba(26, 86, 219, 0.12);
  --shadow-gold:  0 8px 30px rgba(245, 158, 11, 0.40);

  /* Transitions */
  --trans-fast:   0.2s ease;
  --trans-med:    0.3s ease;
}

/* ── GLOBAL HTML & BODY ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── TYPOGRAPHY UTILITIES ── */
.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ── LAYOUT CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── SECTION BASE ── */
section {
  padding: var(--section-pad);
}

/* ── SECTION LABELS ── */
.section-tag {
  display: inline-block;
  background: var(--sky);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--gray-800);
}

.section-title span {
  color: var(--blue);
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 600px;
}

/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */
.topbar {
  background: var(--blue-dark);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
}

.topbar a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

.topbar a:hover {
  text-decoration: underline;
}

/* ============================================================
   NAVIGATION BAR
   ============================================================ */
nav {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.logo-text {
  line-height: 1.2;
}

.logo-text span:first-child {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.logo-text span:last-child {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: 0.5px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--trans-fast);
}

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

/* Nav CTA Button */
.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  transition: background var(--trans-fast) !important;
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #0f2d6b 0%, #1a56db 50%, #3b82f6 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 24px 100px;
  text-align: center;
  color: var(--white);
}

/* Hero decorative wave overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(255,255,255,0.04)' d='M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,224C672,213,768,171,864,154.7C960,139,1056,149,1152,165.3C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  pointer-events: none;
}

/* Live agent badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

/* Hero Headline */
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero h1 span {
  color: var(--gold);
}

/* Hero Subtext */
.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Phone Box */
.hero-phone-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  color: var(--blue-dark);
  border-radius: var(--radius-lg);
  padding: 28px 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  margin-bottom: 40px;
}

.hero-phone-box .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.hero-phone-box a {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color var(--trans-fast);
}

.hero-phone-box a:hover {
  color: var(--blue-dark);
}

.hero-phone-box .sub {
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 4px;
}

/* Hero Feature Badges */
.hero-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-feat {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
}

.hero-feat span {
  font-size: 1rem;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

/* Service Card */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1.5px solid var(--gray-200);
  transition: all var(--trans-med);
  position: relative;
  overflow: hidden;
}

/* Animated top border on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transition: transform var(--trans-med);
  transform-origin: left;
}

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

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

/* Service Icon */
.service-icon {
  width: 60px;
  height: 60px;
  background: var(--sky);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
}

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

/* Service CTA Link */
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.service-cta:hover {
  text-decoration: underline;
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
#how {
  background: linear-gradient(135deg, #0f2d6b, #1a56db);
  color: var(--white);
}

#how .section-title {
  color: var(--white);
}

#how .section-sub {
  color: rgba(255, 255, 255, 0.75);
}

#how .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* Steps Grid */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 52px;
  position: relative;
}

/* Individual Step */
.step {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform var(--trans-med), background var(--trans-med);
}

.step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.step-num {
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.6;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
#why {
  background: var(--white);
}

/* Two-column layout */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 20px;
}

/* Why List Items */
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-item-icon {
  width: 48px;
  height: 48px;
  background: var(--sky);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Visual Stats Panel */
.why-visual {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky2) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.08);
}

.stat-box .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  display: block;
}

.stat-box .desc {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 500;
  margin-top: 4px;
}

/* Wide gradient stat bar */
.stat-wide {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 18px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.stat-wide .left .big {
  font-size: 1.8rem;
  font-weight: 900;
}

.stat-wide .left .sm {
  font-size: 0.8rem;
  opacity: 0.85;
}

.stat-wide .icon {
  font-size: 2.5rem;
}

/* ============================================================
   AIRLINES SECTION
   ============================================================ */
#airlines {
  background: var(--gray-50);
}

.airlines-scroll {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.airline-pill {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--trans-fast);
  cursor: default;
  user-select: none;
}

.airline-pill:hover {
  background: var(--sky);
  border-color: var(--blue-light);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.10);
}

/* ============================================================
   DESTINATIONS SECTION
   ============================================================ */
#destinations {
  background: var(--white);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.dest-card {
  background: linear-gradient(135deg, #1a56db, #3b82f6);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  color: var(--white);
  transition: transform var(--trans-med), box-shadow var(--trans-med);
  cursor: default;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 86, 219, 0.25);
}

.dest-card .icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.dest-card .city {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.dest-card .code {
  font-size: 0.75rem;
  opacity: 0.75;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
#testimonials {
  background: var(--sky);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(26, 86, 219, 0.07);
  transition: transform var(--trans-med), box-shadow var(--trans-med);
}

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

/* Star Rating */
.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.testi-card p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

/* Author Row */
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testi-author .name {
  font-weight: 700;
  font-size: 0.92rem;
  display: block;
}

.testi-author .loc {
  font-size: 0.78rem;
  color: var(--gray-600);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
#faq {
  background: var(--white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--trans-fast);
}

/* FAQ Question Button */
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--trans-fast), color var(--trans-fast);
  font-family: var(--font-main);
  line-height: 1.4;
}

.faq-q:hover {
  background: var(--sky);
}

/* Chevron Arrow */
.faq-q .arrow {
  font-size: 0.7rem;
  color: var(--blue);
  transition: transform var(--trans-med);
  flex-shrink: 0;
}

/* FAQ Answer */
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Open State */
.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .arrow {
  transform: rotate(180deg);
}

.faq-item.open {
  border-color: var(--blue-light);
}

.faq-item.open .faq-q {
  background: var(--sky);
  color: var(--blue);
}

/* ============================================================
   CALL TO ACTION BANNER
   ============================================================ */
.call-banner {
  background: linear-gradient(135deg, #0f2d6b, #1a56db);
  padding: 80px 24px;
  text-align: center;
  color: var(--white);
}

.call-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.call-banner h2 span {
  color: var(--gold);
}

.call-banner p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Big Call Button */
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--gray-800);
  padding: 18px 40px;
  border-radius: var(--radius-md);
  font-size: 1.3rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all var(--trans-med);
  box-shadow: var(--shadow-gold);
}

.call-btn:hover {
  background: #e08c00;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(245, 158, 11, 0.50);
}

.call-note {
  margin-top: 20px;
  font-size: 0.82rem;
  opacity: 0.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--gray-800);
  color: var(--white);
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* Footer Brand Column */
.footer-brand p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.7;
  margin: 16px 0 20px;
}

.footer-phone .label {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 4px;
}

.footer-phone a {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  transition: color var(--trans-fast);
}

.footer-phone a:hover {
  color: #e08c00;
}

/* Footer Columns */
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: 0.3px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color var(--trans-fast);
}

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

/* Footer Hours */
.footer-hours p {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
}

.footer-hours p strong {
  color: var(--white);
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #64748b;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
  transition: color var(--trans-fast);
}

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

/* Trust Badges */
.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
}

.float-call a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: all var(--trans-med);
}

.float-call a:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(26, 86, 219, 0.50);
}

.float-call .icon {
  font-size: 1.1rem;
}

/* ============================================================
   ANIMATIONS & KEYFRAMES
   ============================================================ */

/* Pulsing live indicator */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* Fade up on scroll (optional — apply class "fade-up") */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.6s ease forwards;
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .why-grid {
    gap: 40px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Hide desktop nav links */
  .nav-links {
    display: none;
  }

  /* Sections */
  section {
    padding: 60px 20px;
  }

  /* Hero */
  .hero {
    padding: 60px 20px 80px;
  }

  .hero-phone-box {
    padding: 22px 32px;
    width: 100%;
    max-width: 340px;
  }

  /* Why grid becomes single column */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  /* Float button */
  .float-call {
    bottom: 16px;
    right: 16px;
  }

  .float-call a {
    padding: 12px 20px;
    font-size: 0.875rem;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Call banner button */
  .call-btn {
    font-size: 1.1rem;
    padding: 16px 28px;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max-width: 500px)
   ============================================================ */
@media (max-width: 500px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

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

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

  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-phone-box {
    padding: 18px 24px;
  }

  .hero-phone-box a {
    font-size: 1.5rem;
  }

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