:root {
  /* Colors */
  --clr-primary: #52C486;
  --clr-primary-light: #70D59F;
  --clr-primary-dark: #3FA669;

  --clr-secondary: #1B2132;
  --clr-secondary-light: #2A334C;

  --clr-accent: #52C486;
  --clr-accent-light: #70D59F;

  --clr-bg: #FFFFFF;
  --clr-surface: #F6F7F9;
  --clr-surface-alt: #F0F2F5;

  --clr-text: #4B5563;
  --clr-text-light: #6B7280;
  --clr-heading: #1B2132;

  /* Fonts */
  --font-text: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;

  /* Spacing & Sizes */
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 30px rgba(82, 196, 134, 0.3);

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

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--clr-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  border-radius: var(--radius-sm);
}

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

section {
  padding: 6rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--clr-text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(82, 196, 134, 0.1);
  color: var(--clr-primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-text);
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--clr-primary);
  color: var(--clr-secondary);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--clr-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: white;
  color: var(--clr-secondary);
  border: 1px solid var(--clr-surface-alt);
}

.btn-secondary:hover {
  background-color: var(--clr-surface);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--clr-surface-alt);
  transition: padding 0.3s ease;
}

.navbar.scrolled {
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--clr-primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--clr-text);
}

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

.nav-btn {
  background: var(--clr-secondary);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-btn:hover {
  background: var(--clr-primary);
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

.hero-bg {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 196, 134, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

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

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-text h1 span {
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--clr-text-light);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* Animated Ticket Visual */
.hero-visual {
  position: relative;
  perspective: 1000px;
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 400px;
  background: var(--clr-primary);
  filter: blur(100px);
  opacity: 0.2;
  border-radius: 50%;
  z-index: 0;
}

.floating-ticket {
  position: relative;
  z-index: 1;
  width: 320px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  transform: rotateY(-15deg) rotateX(10deg);
  animation: float 6s ease-in-out infinite;
  border: 1px solid var(--clr-surface-alt);
  overflow: hidden;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotateY(-15deg) rotateX(10deg);
  }

  50% {
    transform: translateY(-20px) rotateY(-10deg) rotateX(5deg);
  }

  100% {
    transform: translateY(0px) rotateY(-15deg) rotateX(10deg);
  }
}

.ticket-header {
  background: var(--clr-secondary);
  color: white;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-family: var(--font-heading);
}

.ticket-body {
  padding: 1.5rem;
}

.ticket-route {
  font-size: 0.875rem;
  color: var(--clr-text-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.ticket-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-heading);
  margin-bottom: 1.5rem;
}

.ticket-ad-space {
  background: var(--clr-surface);
  border: 2px dashed #cbd5e1;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  position: relative;
}

.ad-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--clr-accent);
  color: white;
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
}

.ticket-ad-space h3 {
  color: var(--clr-primary);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.ticket-ad-space p {
  font-size: 0.8rem;
  color: var(--clr-text-light);
}

.ticket-footer {
  background: #f8fafc;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed #cbd5e1;
  font-size: 0.8rem;
  color: var(--clr-text-light);
}

.barcode {
  height: 20px;
  width: 100px;
  background: repeating-linear-gradient(90deg,
      #0f172a,
      #0f172a 2px,
      #fff 2px,
      #fff 4px,
      #0f172a 4px,
      #0f172a 5px,
      #fff 5px,
      #fff 8px);
}

/* What is Ticket Advertising */
.what-is {
  background: #fff;
}

.what-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.what-text p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.key-benefits {
  margin-top: 2rem;
}

.key-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.key-benefits i {
  color: var(--clr-accent);
  margin-right: 1rem;
  font-size: 1.25rem;
}

.illustration-card {
  background: var(--clr-surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.arrow-icon {
  color: var(--clr-text-light);
  font-size: 1.5rem;
}

/* Why It Works (4 cols) */
.why-works {
  background: var(--clr-surface-alt);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  height: 80px;
  width: 80px;
  background: var(--clr-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

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

.feature-card p {
  color: var(--clr-text-light);
  font-size: 0.95rem;
}

/* Reach & Impact */
.stats {
  background: var(--clr-secondary);
  color: white;
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  display: inline-block;
  color: #fff;
}

.stat-symbol {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--clr-primary-light);
  display: inline-block;
}

.stat-item p {
  color: #94a3b8;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* How It Works */
.how-it-works {
  background: #fff;
}

.steps-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4rem;
  position: relative;
}

.step-card {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--clr-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 10px rgba(82, 196, 134, 0.3);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

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

.step-card p {
  color: var(--clr-text-light);
  font-size: 0.95rem;
}

.step-connector {
  flex: 0 0 100px;
  height: 2px;
  background: dashed 2px var(--clr-surface-alt);
  margin-top: 20px;
  z-index: 1;
}

/* Local Businesses */
.businesses {
  background: var(--clr-surface);
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.biz-card {
  background: #fff;
  padding: 2rem 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.biz-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom: 3px solid var(--clr-primary);
}

.biz-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.biz-card h4 {
  font-size: 1rem;
  color: var(--clr-text);
}

/* Service Locations */
.locations {
  background: var(--clr-surface-alt);
}

.location-split {
  display: flex;
  background: #fff;
  border-radius: var(--radius-lg);
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.split-side {
  flex: 1;
  padding: 4rem 3rem;
  position: relative;
}

.local-side {
  background: #fff;
}

.large-side {
  background: var(--clr-secondary);
  color: #fff;
}

.split-content {
  max-width: 400px;
  margin: 0 auto;
}

.split-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(82, 196, 134, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.large-side .split-icon {
  background: rgba(255, 255, 255, 0.1);
}

.split-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.large-side h3 {
  color: #fff;
}

.split-content p {
  font-size: 1.1rem;
  color: var(--clr-text-light);
  margin-bottom: 2rem;
}

.large-side p {
  color: #94a3b8;
}

.split-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.loc-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--clr-surface);
  border-radius: 50px;
  font-weight: 600;
  color: var(--clr-heading);
  font-size: 0.95rem;
}

.loc-tag i {
  color: var(--clr-text-light);
  width: 1rem;
  height: 1rem;
}

.loc-tag.highlight-tag {
  background: rgba(82, 196, 134, 0.15);
  color: var(--clr-primary-light);
  border: 1px solid rgba(82, 196, 134, 0.3);
}

.loc-tag.highlight-tag i {
  color: var(--clr-primary-light);
}

.split-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 40px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(82, 196, 134, 0.3);
  transform: translateX(-50%);
}

.divider-badge {
  background: var(--clr-primary);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 8px #fff;
}

.volume-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--clr-primary-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .location-split {
    flex-direction: column;
  }

  .split-divider {
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    height: 40px;
    transform: translateY(-50%);
  }

  .divider-line {
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
  }

  .divider-badge {
    box-shadow: 0 0 0 8px var(--clr-secondary);
  }
}

/* Comparison */
.comparison {
  background: #fff;
}

.table-container {
  overflow-x: auto;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-top: 3rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.compare-table th,
.compare-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--clr-surface-alt);
}

.compare-table th {
  background: var(--clr-surface);
  font-weight: 600;
  color: var(--clr-heading);
}

.compare-table td {
  color: var(--clr-text);
  font-weight: 500;
}

.highlight-row {
  background: rgba(82, 196, 134, 0.05);
}

.highlight-row td {
  color: var(--clr-primary);
  font-weight: 700;
}

/* About Us */
.about-company {
  background: var(--clr-surface-alt);
}

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

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

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tech-box {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  text-align: center;
  font-size: 1.1rem;
}

.tech-box.highlight {
  background: var(--clr-primary);
  color: white;
}

/* Testimonials */
.testimonials {
  background: #fff;
  overflow: hidden;
}

.testimonial-swiper {
  padding: 2rem 1rem 4rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--clr-surface);
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 100%;
}

.quote-icon {
  font-size: 4rem;
  color: rgba(82, 196, 134, 0.1);
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-family: serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.author-info h4 {
  margin: 0;
  font-size: 1rem;
}

.author-info p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--clr-text-light);
  font-style: normal;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
  color: white;
  text-align: center;
  padding: 8rem 0;
}

.cta-container h2 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.cta-container p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cta-actions .btn-primary {
  background: white;
  color: var(--clr-primary);
}

.cta-actions .btn-primary:hover {
  background: var(--clr-surface);
}

/* Footer */
.footer {
  background: var(--clr-secondary);
  color: #fff;
  padding: 6rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-brand span {
  color: var(--clr-primary-light);
}

.footer-brand p {
  color: #94a3b8;
  max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links a {
  display: block;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.social-icons a:hover {
  background: var(--clr-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #64748b;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {

  .hero-container,
  .what-container,
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p,
  .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

  .what-text {
    order: 2;
  }

  .what-visual {
    order: 1;
  }

  .key-benefits li {
    justify-content: center;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .step-connector {
    width: 2px;
    height: 50px;
    flex: 0 0 50px;
    margin-top: 0;
    margin-bottom: -15px;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

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

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

  .cta-actions {
    flex-direction: column;
  }
}

/* Icons styling */
.lucide {
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

.inline-icon {
  margin-right: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--clr-primary);
}