/* ==========================================================================
   TRAVEL & TOURISM DIGITAL MARKETING AGENCY PAGE
   Uses the same design tokens as website-development.css:
   --color-primary, --color-primary-hover, --color-white,
   --gradient-premium-dark
   ========================================================================== */

/* Alert Notification/Success Box (shared) */
.contact-alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeIn 0.4s ease;
}

.contact-alert.success {
  background-color: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
}

.contact-alert.error {
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
}

/* --- 1. HERO SECTION --- */
.travel-hero {
  background: var(--gradient-premium-dark);
  padding: 140px 24px 0;
  position: relative;
  overflow: hidden;
}

.travel-hero .glow-blob-hero {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(231, 24, 27, 0.14) 0%,
    transparent 70%
  );
  top: -12%;
  right: 0%;
  border-radius: 50%;
  z-index: 1;
}

.travel-hero-grid {
  /* display: grid;
  grid-template-columns: 1.1fr;
  gap: 50px; */
  text-align: center;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
}

.hero-content-left {
  color: var(--color-white);
}

.hero-content-left .badge {
  margin-bottom: 24px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.hero-content-left .badge-pulse {
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

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

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 35px;
  /* max-width: 560px; */
  text-align: center;

  justify-content: center;
}

.hero-buttons {
  /* display: flex; */
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* .hero-image-right img {
  width: 100%;
  height: auto;
  border-radius: 24px;
} */

/* Floating Enquire Badge (shared) */
.float-enquire {
  position: fixed;
  right: 0;
  top: 40%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right bottom;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  border-radius: 8px 8px 0 0;
  z-index: 999;
  box-shadow: -4px 0 20px rgba(231, 24, 27, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-enquire:hover {
  background: var(--color-primary-hover);
  padding-bottom: 34px;
}

.float-enquire i {
  margin-right: 8px;
}

/* Hero Stats Strip */
.hero-stats-strip {
  background: #05060a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 24px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.hero-stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* --- 2. WHY CONCEPTIAL MEDIA SECTION --- */
.why-travel-section {
  padding: 100px 24px;
  background: var(--color-white);
}

.why-travel-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.why-travel-left .section-line {
  margin: 20px 0 25px;
}

.why-travel-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 20px;
}

.travel-expertise-card {
  background: var(--gradient-premium-dark);
  border-radius: 24px;
  padding: 45px;
  color: var(--color-white);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.travel-expertise-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.expertise-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.expertise-pill {
  background: rgba(231, 24, 27, 0.12);
  border: 1px solid rgba(231, 24, 27, 0.35);
  color: var(--color-white);
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
}

.expertise-since {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 25px;
}

.expertise-since-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 8px;
}

.expertise-since-year {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #d31013 30%, #ff5252 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1;
  margin-bottom: 8px;
}

.expertise-since-sub {
  display: block;
  font-size: 0.9rem;
  color: #cbd5e1;
}

/* --- 3. SERVICES GRID (reuses shared .service-card pattern) --- */
.services-grid-section {
  padding: 100px 24px;
  background: #f8fafc;
}

.services-grid-section .container {
  max-width: 1280px;
  margin: 0 auto;
}

.services-subtext {
  max-width: 640px;
  margin: 16px auto 0;
  color: #475569;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 55px;
}

.service-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  border-color: rgba(231, 24, 27, 0.15);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 2px solid #f1f5f9;
  position: relative;
}

.service-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.service-card:hover h3::after {
  width: 80px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

/* --- 4. COMMISSION CTA BANNER --- */
.commission-banner-section {
  padding: 100px 24px;
  background: var(--color-white);
}

.commission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.commission-text p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #475569;
  margin: 20px 0 30px;
}

.commission-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

/* --- 5. TRAVEL CATEGORIES (dark section, reuses tech-category pattern) --- */
.travel-categories-section {
  padding: 100px 24px;
  background: var(--gradient-premium-dark);
  position: relative;
  overflow: hidden;
}

.travel-categories-section .glow-blob-tech {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(231, 24, 27, 0.12) 0%,
    transparent 70%
  );
}

.travel-categories-section .container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.categories-subtext {
  color: #cbd5e1;
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

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

.category-card-new {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 30px 22px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card-new:hover {
  transform: translateY(-6px);
  background: rgba(231, 24, 27, 0.08);
  border-color: rgba(231, 24, 27, 0.3);
}

.category-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(231, 24, 27, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.category-card-new h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.category-card-new p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* --- 6. AI / GEO SECTION --- */
.ai-geo-section {
  padding: 100px 24px;
  background: #ffffff;
}

.ai-geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.ai-geo-left p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #475569;
  margin: 20px 0;
}

.ai-geo-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ai-geo-card {
  /* background: var(--color-white); */
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  /* border-left: 3px solid var(--color-primary); */
  border-radius: 14px;
  padding: 26px 28px;
}

.ai-geo-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.ai-geo-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.55;
}

/* --- 7. KEYWORDS SECTION --- */
.keywords-section {
  padding: 100px 24px;
  /* background: var(--color-white); */
  background: #f8fafc;
}

.keywords-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.keywords-subtext {
  max-width: 620px;
  margin: 16px auto 0;
  color: #475569;
  font-size: 1.05rem;
}

.keyword-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 45px;
}

.keyword-tag {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.keyword-tag:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(231, 24, 27, 0.04);
}

/* --- 8. FAQ SECTION ---
   .faq-section / .faq-grid / .faq-info-col / .faq-form-card /
   .faq-form-control / .faq-submit-btn / .faq-accordion-col /
   .faq-right-header / .faq-accordion-container / .faq-item /
   .faq-trigger / .faq-panel / .faq-content
   are all reused as-is from the shared site CSS (same file that styles
   website-development.php) — no page-specific overrides needed here so
   this page matches that FAQ section exactly, content only differs via
   the PHP markup above. */

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 991px) {
  .travel-hero {
    padding: 100px 16px 0;
  }
  .travel-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  /* .hero-image-right {
    order: -1;
  } */
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-travel-grid,
  .commission-grid,
  .ai-geo-grid,
  .travel-contact-grid {
    grid-template-columns: 1fr;
  }
  .commission-image {
    order: -1;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-badge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .category-badge-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }
  .why-travel-section,
  .services-grid-section,
  .commission-banner-section,
  .travel-categories-section,
  .ai-geo-section,
  .keywords-section,
  .travel-faq-section,
  .travel-contact-section {
    padding: 60px 16px;
  }
  .travel-expertise-card {
    padding: 30px;
  }
  .travel-contact-highlights {
    gap: 18px;
  }
}

.ai-geo-card:hover {
  background: var(--color-white);
  transform: translateX(8px);
  /* border-left: 4px solid var(--color-primary); */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
