/* ==========================================================================
   Global TV Services - White Minimalist Landing Page Stylesheet
   Clean White Aesthetic with Official Purple Logo & Branding
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  /* Official Purple Brand Palette matching Logo Typography */
  --primary: #7C3AED;
  --primary-hover: #6D28D9;
  --primary-light: #F5F3FF;
  --primary-subtle: #DDD6FE;
  --primary-dark: #4C1D95;

  --accent-green: #16A34A;
  --accent-amber: #D97706;

  --body-bg: #FAFAFA;
  --surface-white: #FFFFFF;
  --surface-muted: #F8FAFC;

  --border-light: #E2E8F0;
  --border-subtle: #F1F5F9;

  --text-main: #0F172A;
  --text-muted: #475569;
  --text-sub: #64748B;
  --text-light: #94A3B8;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.06), 0 4px 12px -2px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 40px -10px rgba(124, 58, 237, 0.14);

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--body-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 74px; /* Space for floating mobile bar */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

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

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Minimal Typography & Section Helpers --- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--primary-light);
  border: 1px solid var(--primary-subtle);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 44px auto;
  font-weight: 400;
}

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

/* --- Top Minimal Utility Strip --- */
.top-bar {
  background: var(--surface-white);
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item i {
  color: var(--primary);
}

.badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F0FDF4;
  border: 1px solid #DCFCE7;
  color: var(--accent-green);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
  animation: pulse-animation 1.8s infinite;
}

@keyframes pulse-animation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* --- Clean White Sticky Navbar --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

/* Prominent Logo Image Styling */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
}

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

.nav-links a {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: var(--transition);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* --- Brand Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--surface-white);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.28);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary-light);
  color: var(--primary-hover);
}

.btn-green {
  background: #16A34A;
  color: white;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
}

.btn-green:hover {
  background: #15803D;
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1rem;
}

/* --- Hero Section with Ultra-Subtle Background Image Overlay --- */
.hero {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%), url('../images/hero-bg.jpg') center/cover no-repeat;
  padding: 50px 0 70px 0;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-header-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.8px;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 0;
}

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

.hero-details-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin: 0 auto 24px auto;
  line-height: 1.6;
  text-align: center;
  max-width: 540px;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
  width: 100%;
  max-width: 520px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
}

.hero-feature-item i {
  color: var(--primary);
  font-size: 1rem;
}

.hero-call-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-call-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--primary-light);
  border: 1px solid var(--primary-subtle);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  margin: 0 auto;
  max-width: 420px;
  width: 100%;
}

.hero-call-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.hero-call-text {
  text-align: center;
}

.hero-call-text small {
  display: block;
  font-size: 0.78rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.hero-call-text a {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
}

/* --- Hero Lead Booking Form Container --- */
.hero-form-card {
  background: var(--surface-white);
  color: var(--text-main);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.form-header {
  text-align: center;
  margin-bottom: 22px;
}

.form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.form-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.92rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: var(--body-bg);
  color: var(--text-main);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  background-color: var(--surface-white);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.form-status {
  margin-top: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  display: none;
}

.form-status.success {
  background-color: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
}

.form-status.error {
  background-color: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
}

/* --- Trust Proof Bar --- */
.trust-bar {
  background: var(--body-bg);
  padding: 26px 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-item {
  padding: 10px;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.trust-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* --- Clean Services Section --- */
.services-section {
  padding: 70px 0;
  background: var(--surface-white);
}

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

.service-card {
  background: var(--surface-white);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.83rem;
  font-weight: 700;
}

.service-price {
  color: var(--primary);
}

.service-time {
  color: var(--accent-green);
}

/* --- Why Choose Us Section --- */
.why-section {
  background: var(--body-bg);
  padding: 70px 0;
  border-y: 1px solid var(--border-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--surface-white);
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  text-align: center;
}

.why-card:hover {
  border-color: var(--primary);
}

.why-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Minimal Brand Chips Section --- */
.brands-section {
  padding: 60px 0;
  background: var(--surface-white);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.brand-badge {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
}

.brand-badge:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

/* --- Common Faults Section --- */
.faults-section {
  padding: 70px 0;
  background: var(--body-bg);
  border-top: 1px solid var(--border-light);
}

.faults-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.fault-card {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  gap: 16px;
  transition: var(--transition);
}

.fault-card:hover {
  border-color: var(--primary);
}

.fault-icon {
  width: 42px;
  height: 42px;
  background: #FEF3C7;
  color: var(--accent-amber);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.fault-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.fault-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --- 4-Step Process Section --- */
.process-section {
  background: var(--surface-white);
  padding: 70px 0;
  border-top: 1px solid var(--border-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.process-step {
  background: var(--body-bg);
  padding: 26px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
  position: relative;
}

.step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 12px 0 6px 0;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Customer Reviews Section --- */
.reviews-section {
  padding: 70px 0;
  background: var(--body-bg);
  border-top: 1px solid var(--border-light);
}

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

.review-card {
  background: var(--surface-white);
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #F59E0B;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 20px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.user-details h5 {
  font-weight: 700;
  font-size: 0.9rem;
}

.user-details small {
  color: var(--text-sub);
  font-size: 0.8rem;
}

/* --- FAQ Accordion Section --- */
.faq-section {
  padding: 70px 0;
  background: var(--surface-white);
  border-top: 1px solid var(--border-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

/* --- Brand Purple CTA Banner Section --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--surface-white);
  padding: 55px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-banner p {
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 600px;
  margin: 0 auto 26px auto;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* --- Minimal Footer --- */
.footer {
  background: var(--surface-white);
  color: var(--text-muted);
  padding: 50px 0 24px 0;
  font-size: 0.88rem;
  border-top: 1px solid var(--border-light);
}

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

.footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  display: block;
  object-fit: contain;
}

.footer-about p {
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-title {
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-sub);
}

/* --- Mobile Floating Quick-Call & WhatsApp Bar --- */
.mobile-floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--surface-white);
  display: flex;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  border-top: 1px solid var(--border-light);
}

.mobile-floating-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: white;
  text-decoration: none;
}

.mobile-floating-btn.call-btn {
  background: var(--primary);
}

.mobile-floating-btn.wa-btn {
  background: var(--accent-green);
}

@media (min-width: 769px) {
  .mobile-floating-bar {
    display: none;
  }
}

/* --- Mobile View Lead Capture Above The Fold Optimization --- */
@media (max-width: 992px) {
  .hero {
    padding: 24px 0 40px 0;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .hero-content {
    display: contents;
  }

  /* 1. First: Hero Heading */
  .hero-header-wrap {
    order: 1;
  }

  .hero-title {
    font-size: 2.1rem;
    margin-bottom: 12px;
  }

  /* 2. Second: Quick Call Button Box */
  .hero-call-wrap {
    order: 2;
    margin-bottom: 10px;
  }

  .hero-call-box {
    max-width: 100%;
  }

  /* 3. Third: Lead Booking Form Card (Visible Above The Fold on Page Load) */
  .hero-form-card {
    order: 3;
    width: 100%;
    padding: 20px;
  }

  /* 4. Fourth: Description Paragraph & Feature Badges */
  .hero-details-wrap {
    order: 4;
    margin-top: 10px;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

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

@media (max-width: 768px) {
  .top-bar {
    padding: 6px 0;
    font-size: 0.72rem;
  }

  /* Hide location & working hours on mobile screens to prevent top bar crowding */
  .top-bar-left {
    display: none !important;
  }

  .top-bar-right {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .badge-pulse {
    font-size: 0.68rem;
    padding: 2px 8px;
  }

  .top-bar-item a {
    font-size: 0.72rem;
  }

  /* Hide navigation links on mobile view for clean, uncluttered layout */
  .nav-links {
    display: none !important;
  }

  /* Mobile header logo height */
  .logo-img {
    height: 42px;
  }

  .nav-cta .btn {
    padding: 7px 14px;
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}