/* ==========================================
   Boss Media Network - Global Styling Sheet
   ========================================== */

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Colors */
  --bg-main: #050508;
  --bg-header: rgba(5, 5, 8, 0.85);
  --bg-card: #0d0d12;
  --bg-card-hover: #121218;
  --bg-section-accent: #0b0b0f;
  
  --primary-red: #ff0e27;
  --primary-red-hover: #d80018;
  --primary-red-glow: rgba(255, 14, 39, 0.4);
  --red-gradient: linear-gradient(135deg, #ff0e27 0%, #b20716 100%);
  --text-gradient: linear-gradient(90deg, #ffffff 30%, #ff0e27 100%);

  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-glow: rgba(255, 14, 39, 0.25);
  
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  --container-max-width: 1200px;
}

/* Reset and Core Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

button, select, input, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  color: inherit;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #1c1c24;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red);
}

/* Helper Utilities */
.container {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

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

.text-red {
  color: var(--primary-red);
}

.text-muted {
  color: var(--text-secondary);
}

.text-gradient-red {
  background: var(--red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--red-gradient);
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(255, 14, 39, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 14, 39, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-outline:hover {
  background: rgba(255, 14, 39, 0.08);
  border-color: var(--primary-red);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 14, 39, 0.2);
}

.btn-outline-red {
  background: transparent;
  border: 1px solid rgba(255, 14, 39, 0.3);
  color: var(--text-primary);
}

.btn-outline-red:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-2px);
}

.icon-right {
  margin-left: 10px;
}

.icon-left {
  margin-right: 10px;
}

/* Section Common Styling */
section {
  position: relative;
  padding: 5.5rem 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.1rem;
  margin-top: 0.8rem;
  color: var(--text-secondary);
}

/* Header */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-nav-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition-fast);
}

.logo-link:hover .logo-nav-img {
  transform: scale(1.03);
  filter: drop-shadow(0 0 10px rgba(255, 14, 39, 0.45));
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

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

.nav-item {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: var(--transition-fast);
}

.nav-item:hover, .nav-item.active {
  color: var(--primary-red);
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.25rem;
  transition: var(--transition-fast);
}

.whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border-color: #25d366;
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.btn-apply {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero-section {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-color: #000000;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(90%, var(--container-max-width));
  background-image: url('/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 14, 39, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 14, 39, 0.06) 0%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}

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

.hero-content,
.hero-graphic-container {
  min-width: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.btn-outline-red {
  background: transparent;
  border: 1px solid var(--primary-red);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-red:hover {
  background: rgba(255, 14, 39, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 14, 39, 0.2);
}

.btn-outline-red i {
  color: var(--primary-red);
}

.hero-actions .btn-primary {
  border-radius: 8px;
}

/* Badges Row inside Hero */
.hero-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  grid-column: 1 / -1;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: fit-content;
}

.badge-icon {
  font-size: 1.15rem;
  color: var(--primary-red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.badge-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.2;
  margin-top: 2px;
}

/* Hero Mascot Graphic */
.hero-graphic-container {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}

.hero-mascot-glow {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 90%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 14, 39, 0.35) 0%, rgba(255, 14, 39, 0.15) 45%, rgba(0, 0, 0, 0) 70%);
  filter: url(#smoke-filter) blur(20px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
  mix-blend-mode: screen;
  animation: smoke-drift 12s infinite alternate ease-in-out;
}

@keyframes smoke-drift {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.75; }
  50% { transform: translate(-15px, 20px) scale(1.1) rotate(3deg); opacity: 0.9; }
  100% { transform: translate(20px, -15px) scale(0.95) rotate(-3deg); opacity: 0.75; }
}

.hero-mascot-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 560px;
  transition: var(--transition-normal);
}

.hero-mascot-wrapper:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 0 25px rgba(255, 14, 39, 0.3));
}

.hero-mascot-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Stats Section */
.stats-section {
  background: var(--bg-section-accent);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 0;
}

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

.stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 1rem;
  border-radius: 12px;
  transition: var(--transition-fast);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.02);
}

.stat-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 14, 39, 0.08);
  border: 1px solid rgba(255, 14, 39, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Brands Section */
.brands-section {
  padding: 4rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.brands-section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
  margin-bottom: 3.5rem;
}

.brands-section-header::before {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 14, 39, 0.5) 80%, rgba(255, 14, 39, 0.75) 100%);
}

.brands-section-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 14, 39, 0.75) 0%, rgba(255, 14, 39, 0.5) 20%, transparent 100%);
}

.brands-section-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
  text-transform: uppercase;
  flex-shrink: 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  justify-items: center;
  gap: 2rem;
}

.brand-logo {
  opacity: 0.8;
  transition: var(--transition-fast);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.brand-logo:hover {
  opacity: 1;
  transform: scale(1.06);
}

.brand-logo svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Why Choose Us Section */
.section-glow-1 {
  position: absolute;
  top: 30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 14, 39, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: rgba(13, 13, 18, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.25rem 1rem 1.75rem;
  transition: var(--transition-normal);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-align: center;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 14, 39, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 14, 39, 0.08);
}

.service-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 14, 39, 0.08);
  border: 1px solid rgba(255, 14, 39, 0.25);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.5rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-wrapper {
  background: var(--primary-red);
  color: #fff;
  box-shadow: 0 0 15px var(--primary-red-glow);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card-description {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* How It Works Section */
.how-it-works-section {
  background: var(--bg-section-accent);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.how-it-works-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
  margin-bottom: 4rem;
}

.how-it-works-header::before {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 14, 39, 0.5) 80%, rgba(255, 14, 39, 0.75) 100%);
}

.how-it-works-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 14, 39, 0.75) 0%, rgba(255, 14, 39, 0.5) 20%, transparent 100%);
}

.how-it-works-header .section-title {
  flex-shrink: 0;
  margin-bottom: 0;
}

.process-timeline-container {
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  top: calc(2rem + 40px);
  left: 12%;
  right: 12%;
  height: 0;
  border-top: 2px dotted rgba(255, 255, 255, 0.35);
  z-index: 1;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

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

.step-badge {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0d0d12;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--text-secondary);
  font-size: 1.6rem;
  transition: var(--transition-normal);
}

.step-number-tag {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-red);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  border: 2px solid #0d0d12;
}

.timeline-step:hover .step-badge {
  color: var(--primary-red);
  border-color: var(--primary-red);
  box-shadow: 0 0 20px rgba(255, 14, 39, 0.2);
  transform: scale(1.05);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 200px;
  margin: 0 auto;
}

/* Loved By Creators Section */
.section-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 14, 39, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.creators-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}

.creators-header-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
}

.creators-header-title-wrapper::before {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 14, 39, 0.5) 80%, rgba(255, 14, 39, 0.75) 100%);
}

.creators-header-title-wrapper::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 14, 39, 0.75) 0%, rgba(255, 14, 39, 0.5) 20%, transparent 100%);
}

.creators-layout-grid {
  display: grid;
  grid-template-columns: 0.8fr 2.4fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Left Column: Benefits */
.creator-benefits-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  transition: var(--transition-fast);
}

.benefit-item-card:hover {
  transform: translateX(5px);
}

.benefit-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 14, 39, 0.05);
  border: 1.5px solid var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 14, 39, 0.15);
}

.benefit-content {
  display: flex;
  flex-direction: column;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.benefit-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Middle Column: Receipts */
.receipts-container-col {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
}

.receipt-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.25rem 1rem;
  color: #18181b;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: var(--transition-normal);
  border: 1px solid transparent;
  flex: 1;
  min-width: 0;
}

.receipt-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.receipt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.receipt-status-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.receipt-badge-check {
  color: #10b981;
  font-size: 1.2rem;
}

.receipt-amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
  color: #09090b;
}

.receipt-provider {
  font-size: 0.82rem;
  font-weight: 700;
  color: #27272a;
  margin: 0.25rem 0 0.75rem;
}

.receipt-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f4f4f5;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

.receipt-meta-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  min-width: 0;
}

.receipt-account {
  font-size: 0.72rem;
  font-weight: 600;
  color: #27272a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.receipt-date {
  font-size: 0.65rem;
  color: #71717a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.receipt-download-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #f4f4f5;
  color: #71717a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition-fast);
  cursor: pointer;
  flex-shrink: 0;
}

.receipt-download-btn:hover {
  background-color: #e4e4e7;
  color: var(--primary-red);
}

/* Right Column: Testimonial */
.testimonial-card-col {
  height: 100%;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(20, 20, 25, 0.7) 0%, rgba(10, 10, 12, 0.9) 100%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}

.quote-mark-large {
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--primary-red);
  line-height: 0.2;
  margin-top: 1.5rem;
  font-weight: bold;
  opacity: 0.85;
  user-select: none;
}

.creator-profile-heading {
  display: flex;
  align-items: center;
  gap: 15px;
}

.creator-avatar-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--primary-red);
  object-fit: cover;
}

.profile-text {
  display: flex;
  flex-direction: column;
}

.creator-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.creator-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.rating-stars {
  color: #fbbf24;
  display: flex;
  gap: 4px;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
}

/* Pricing Packages Section */
.live-campaigns-section {
  background: var(--bg-section-accent);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.campaigns-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.campaigns-eyebrow i {
  color: #22c55e;
  font-size: 0.55rem;
}

.live-campaigns-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.live-campaign-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.75rem;
  background: rgba(13, 13, 18, 0.72);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: var(--transition-normal);
}

.live-campaign-card:hover {
  border-color: rgba(255, 14, 39, 0.5);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.campaign-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.campaign-status {
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(34, 197, 94, 0.45);
  border-radius: 4px;
  color: #86efac;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.campaign-icon {
  color: var(--primary-red);
  font-size: 1.35rem;
}

.live-campaign-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.campaign-type {
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.campaign-description {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.campaign-apply-btn {
  flex: 1;
  margin-top: auto;
  padding: 0.75rem 0.8rem;
  border-radius: 6px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.campaign-card-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
  width: 100%;
}

.campaign-view-btn {
  flex: 1;
  padding: 0.75rem 0.6rem;
  border-radius: 6px;
  font-size: 0.78rem;
  white-space: nowrap;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.campaign-view-btn:hover {
  border-color: var(--primary-red);
  background: rgba(255, 14, 39, 0.06);
  color: var(--primary-red);
}

.packages-section {
  border-top: 1px solid var(--border-color);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
  align-items: stretch;
}

.package-card {
  background: rgba(13, 13, 18, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.package-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 14, 39, 0.2);
  transform: translateY(-5px);
}

.package-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.package-type {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.package-subtype {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.package-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.package-views {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.btn-package {
  width: 100%;
  padding: 0.7rem;
  border-radius: 12px;
  font-size: 0.9rem;
}

/* Premium Package Styling (Highlighted) */
.premium-pkg {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 14, 39, 0.05) 0%, rgba(13, 13, 18, 0.8) 100%);
  border: 2px solid var(--primary-red);
  box-shadow: 0 10px 25px rgba(255, 14, 39, 0.15);
  transform: scale(1.03);
}

.premium-pkg:hover {
  background: linear-gradient(135deg, rgba(255, 14, 39, 0.08) 0%, rgba(18, 18, 24, 0.95) 100%);
  box-shadow: 0 15px 35px rgba(255, 14, 39, 0.25);
  transform: scale(1.05) translateY(-3px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red-gradient);
  color: #fff;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Trust Bar Under Packages */
.packages-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--bg-section-accent);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--primary-red);
}

.trust-info {
  display: flex;
  flex-direction: column;
}

.trust-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.trust-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Call To Action Banner */
.cta-section {
  padding: 6rem 0;
  position: relative;
  background-color: #000000;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 14, 39, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.cta-layout-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.6fr 1.25fr;
  gap: 2rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(5, 5, 8, 0.42) 0%, rgba(5, 5, 8, 0.64) 100%),
    url('/cta_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1.5px solid rgba(255, 14, 39, 0.25);
  border-radius: 28px;
  padding: 3.5rem 2.5rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 35px rgba(255, 14, 39, 0.2);
  z-index: 2;
}

.cta-col-left, .cta-col-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  align-items: flex-start;
}

.cta-title-main {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  white-space: normal;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.cta-text-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.cta-buttons-row {
  display: flex;
  flex-direction: row;
  gap: 0.85rem;
  width: 100%;
  justify-content: flex-start;
}

.cta-buttons-row .btn {
  padding: 0.8rem 1.25rem;
  font-size: 0.88rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50px;
}

#cta-apply-creator-btn {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #ffffff;
}
#cta-apply-creator-btn:hover {
  border-color: var(--primary-red);
  background: rgba(255, 14, 39, 0.05);
}
#cta-apply-creator-btn i {
  color: var(--primary-red);
}

.btn-whatsapp-community {
  background-color: #006f1f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-whatsapp-community:hover {
  background-color: #005618;
  transform: translateY(-2px);
}

.btn-telegram-community {
  background-color: #004b93;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-telegram-community:hover {
  background-color: #003a72;
  transform: translateY(-2px);
}

/* Overlapping Avatars inside CTA */
.cta-col-middle {
  display: flex;
  justify-content: center;
  position: relative;
}

.avatar-circles-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 110px;
}

.avatar-circle-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 14, 39, 0.2);
  overflow: hidden;
  position: relative;
  transition: var(--transition-fast);
}

.circ-1 {
  z-index: 1;
}
.circ-2 {
  z-index: 3;
  margin-left: -25px;
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(255, 14, 39, 0.4);
}
.circ-3 {
  z-index: 1;
  margin-left: -25px;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-circle-box:hover {
  transform: scale(1.15) translateY(-5px);
  z-index: 10;
  box-shadow: 0 10px 25px rgba(255, 14, 39, 0.5);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
}

.contact-detail-item i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 14, 39, 0.08);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Contact Form styling */
.contact-form {
  background: rgba(13, 13, 18, 0.5);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.form-group input, .form-group textarea, .form-group select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  color: #fff;
  transition: var(--transition-fast);
  outline: none;
}

.form-group select option {
  background-color: var(--bg-card);
  color: #fff;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary-red);
  background: rgba(255, 14, 39, 0.02);
  box-shadow: 0 0 10px rgba(255, 14, 39, 0.15);
}

.btn-submit-form {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  border-radius: 12px;
}

/* Footer styling */
.app-footer {
  background: #030305;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 0.9fr);
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  font-size: 1.4rem;
}

.footer-about-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-social-links a:hover {
  background: var(--primary-red);
  color: #fff;
  border-color: var(--primary-red);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links-list a:hover {
  color: var(--primary-red);
  padding-left: 5px;
}

.contact-list-footer {
  gap: 1rem;
}

.contact-list-footer li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-list-footer li i {
  color: var(--primary-red);
  margin-top: 3px;
}

/* Copyright footer bar */
.footer-copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.copyright-sublinks {
  display: flex;
  gap: 1.5rem;
}

.copyright-sublinks a:hover {
  color: var(--text-primary);
}


/* ==========================================
   Responsive Styles (Media Queries)
   ========================================== */

@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .premium-pkg {
    transform: none;
  }
  .premium-pkg:hover {
    transform: translateY(-3px);
  }
  .cta-layout-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .cta-col-middle {
    display: none;
  }
  .cta-title-main {
    white-space: normal;
  }
}

@media (max-width: 992px) {
  section {
    padding: 4rem 0;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-description {
    margin: 0 auto 2.5rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-badges {
    max-width: 600px;
    margin: 0 auto;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 1.5rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .live-campaigns-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-line {
    display: none;
  }
  .creators-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .receipts-container-col {
    flex-direction: column;
    gap: 1.25rem;
  }
  .testimonial-card {
    padding: 2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-logo-col {
    grid-column: span 2;
  }
  .mobile-nav-toggle {
    display: block;
    color: #fff;
    order: 2;
  }
  .header-actions {
    order: 1;
  }
  .nav-menu {
    position: fixed;
    top: 88px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 88px);
    background: #07070a;
    transition: var(--transition-normal);
    z-index: 999;
    padding: 3rem 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-menu-open {
    left: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
  .nav-item {
    font-size: 1.3rem;
    display: block;
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Mobile Menu Styles */
  .mobile-nav-toggle {
    display: block;
    color: #fff;
    order: 2;
  }
  
  .header-actions {
    order: 1;
  }
  
  .nav-menu {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 73px);
    background: #07070a;
    transition: var(--transition-normal);
    z-index: 999;
    padding: 3rem 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nav-menu-open {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
  
  .nav-item {
    font-size: 1.3rem;
    display: block;
    width: 100%;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .header-actions .whatsapp-btn {
    display: none;
  }

  .header-actions .btn-apply {
    display: inline-flex;
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.12;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }
  .hero-title br {
    display: none;
  }
  .hero-section {
    padding-top: 7.5rem;
    padding-bottom: 4rem;
  }
  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-badges {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
    margin-top: 0 !important;
    width: 100%;
    max-width: 400px;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-actions {
    margin-bottom: 2.5rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .badge-item {
    min-width: 0;
    align-items: flex-start;
  }
  .badge-text {
    min-width: 0;
  }
  .badge-title,
  .badge-desc {
    overflow-wrap: anywhere;
  }
  .stat-card {
    gap: 10px;
    padding: 0.75rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }
  .stat-icon-wrapper {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .brand-logo svg {
    max-width: 100%;
    height: auto;
  }
  .section-header,
  .how-it-works-header,
  .creators-header {
    margin-bottom: 2.5rem;
  }
  .section-title,
  .contact-title {
    font-size: 1.85rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
  .section-subtitle,
  .contact-subtitle {
    font-size: 1rem;
  }
  .brands-section-header,
  .how-it-works-header,
  .creators-header-title-wrapper {
    gap: 0.75rem;
  }
  .brands-section-title {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }
  .cta-section {
    padding: 4rem 0;
  }
  .cta-layout-grid {
    border-radius: 18px;
    padding: 2.25rem 1.25rem;
  }
  .cta-title-main {
    font-size: 1.35rem;
    letter-spacing: 0;
  }
  .contact-form {
    border-radius: 18px;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .live-campaigns-grid {
    grid-template-columns: 1fr;
  }
  .live-campaign-card {
    padding: 1.5rem;
  }
  .campaign-card-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .packages-trust-bar {
    grid-template-columns: 1fr;
  }
  .cta-layout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .cta-col-left, .cta-col-right {
    align-items: center;
    text-align: center;
  }
  .cta-col-right .cta-buttons-row {
    justify-content: center;
  }
  .cta-buttons-row {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .cta-buttons-row .btn {
    width: 100%;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .copyright-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0.65rem 5%;
  }
  .logo-nav-img {
    height: 48px;
  }
  .nav-menu {
    top: 62px;
    height: calc(100vh - 62px);
  }
  .hero-section {
    padding-top: 6.5rem;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card {
    padding: 0.75rem 0.5rem;
  }
  .stat-number {
    font-size: 1.6rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }
  .stat-icon-wrapper {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .brands-grid .brand-logo svg {
    width: 105px;
    height: auto;
  }
  .service-card,
  .package-card {
    padding: 1.75rem 1.25rem;
  }
  .timeline-grid {
    gap: 2.5rem;
  }
  .cta-layout-grid {
    padding: 2rem 1rem;
  }
  .contact-form {
    padding: 1.25rem;
  }
  .policy-section {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
  .policy-container {
    width: 90%;
    padding: 2rem 1.25rem;
    border-radius: 18px;
  }
  .policy-title {
    font-size: 1.9rem;
  }
  .hero-badges {
    margin-top: 0;
    gap: 0.75rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-logo-col {
    grid-column: span 1;
  }
}

/* Policy Content Page */
.policy-section {
  padding-top: 10rem;
  padding-bottom: 6rem;
  position: relative;
  background-image: url('/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}
.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, rgba(20, 20, 25, 0.8) 0%, rgba(10, 10, 12, 0.95) 100%);
  border: 1.5px solid rgba(255, 14, 39, 0.25);
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 35px rgba(255, 14, 39, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2;
}
.policy-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #fff;
  border-bottom: 1.5px solid rgba(255, 14, 39, 0.3);
  padding-bottom: 1rem;
}
.policy-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.policy-text h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  font-weight: 800;
}
.policy-text p {
  margin-bottom: 1.25rem;
}
.policy-text ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.policy-text li {
  margin-bottom: 0.5rem;
  list-style-type: square;
  color: var(--text-secondary);
}
.policy-last-updated {
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* ==========================================
   Mobile Sticky Bottom Navigation Bar
   ========================================== */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(5, 5, 8, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--border-color);
    padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  }

  .mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding: 0.4rem 0.5rem;
    border-radius: 10px;
    transition: var(--transition-fast);
    min-width: 60px;
    text-decoration: none;
  }

  .mobile-bottom-nav-item span {
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }

  .mobile-bottom-nav-item:hover,
  .mobile-bottom-nav-item:active,
  .mobile-bottom-nav-item.bottom-nav-active {
    color: var(--primary-red);
    background: rgba(255, 14, 39, 0.08);
  }

  /* Add bottom padding to body so footer content is not hidden behind sticky bar */
  body {
    padding-bottom: 70px;
  }

  .app-footer {
    padding-bottom: 70px;
  }
}

/* ==========================================
   Floating WhatsApp Button
   ========================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1002;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.floating-whatsapp i {
  font-size: 1.4rem;
}

.floating-whatsapp span {
  display: inline;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: calc(70px + 1rem);
    left: 1rem;
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
  }
  .floating-whatsapp i {
    font-size: 1.2rem;
  }
  .floating-whatsapp span {
    display: none;
  }
  .floating-whatsapp {
    border-radius: 50%;
    padding: 0.75rem;
  }
}
