/* ==========================================================================
   B\u00c3\u201eSTA IPTV - MASTER DESIGN SYSTEM & COHESIVE LUXURY DARK THEME
   Brand: b\u00c3\u00a4sta iptv (b\u00c3\u00a4staiptv.shop)
   Accent: Emerald Mint #00D9A0
   Background: Cinema Dark Obsidian #070E14
   ========================================================================== */

:root {
  --primary: #00D9A0;
  --primary-hover: #00F5B4;
  --primary-dark: #00B887;
  --accent: #00D9A0;
  --accent-gradient: linear-gradient(135deg, #00D9A0 0%, #00F5B4 100%);
  --accent-glow: rgba(0, 217, 160, 0.28);
  
  --bg-page: #070E14;
  --bg-dark: #04080D;
  --bg-card: #0D1924;
  --bg-card-hover: #132536;
  --bg-card-featured: #102232;
  --bg-surface: #101F2C;
  --bg-glass: rgba(13, 25, 36, 0.92);
  
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --text-light: #64748B;
  --text-dark: #070E14;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(0, 217, 160, 0.22);
  --border-featured: rgba(0, 217, 160, 0.55);
  --border-hover: rgba(0, 217, 160, 0.5);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 0 25px rgba(0, 217, 160, 0.35);
  
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --container-max: 1240px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  font-family: var(--font-main);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(0, 217, 160, 0.06) 0px, transparent 45%),
    radial-gradient(circle at 90% 40%, rgba(0, 217, 160, 0.04) 0px, transparent 50%),
    radial-gradient(circle at 50% 85%, rgba(0, 217, 160, 0.05) 0px, transparent 55%);
  background-attachment: fixed;
}

img, picture, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

ul, ol {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 20px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin-bottom: 12px; }
h4 { font-size: 1.2rem; margin-bottom: 8px; }

p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.text-gradient, .brand-highlight, .text-highlight, h1 span, h2 span.text-gradient {
  color: var(--primary) !important;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Unified Badges / Pills */
.section-tag, .glass-badge, .badge, .screen-badge, .featured-tag, .tp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 217, 160, 0.12);
  color: var(--primary);
  border: 1px solid rgba(0, 217, 160, 0.35);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px auto;
}

.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.08rem; }

section {
  padding: 85px 0;
  position: relative;
}

/* Card Component */
.card, .step-card, .cust-rev-card, .rev-card, .pricing-card, .pricing-horizontal-card, .article-cta, .cta-banner {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover, .step-card:hover, .cust-rev-card:hover, .rev-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(0, 217, 160, 0.18);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
}

.btn-primary, .btn-claim, .plan-cta, .pricing-card .btn, .pricing-horizontal-card .btn, .nav-cta {
  background: linear-gradient(135deg, #00D9A0 0%, #00B887 100%) !important;
  color: #070E14 !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(0, 217, 160, 0.35) !important;
}

.btn-primary:hover, .btn-claim:hover, .plan-cta:hover, .pricing-card .btn:hover, .pricing-horizontal-card .btn:hover, .nav-cta:hover {
  background: linear-gradient(135deg, #00F5B4 0%, #00D9A0 100%) !important;
  color: #070E14 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 217, 160, 0.55) !important;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  font-weight: 600;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

.btn-block { width: 100%; display: flex; }
.btn-sm { padding: 9px 18px; font-size: 0.9rem; }

/* Desktop Navigation (Optimized) */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 14, 20, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}

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

.logo-img {
  height: 38px;
  width: auto;
  border-radius: 6px;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: #CBD5E1;
  position: relative;
  padding: 6px 0;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.desktop-nav a:hover, .desktop-nav a.active {
  color: var(--primary);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-currency-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  font-weight: 600;
  color: #CBD5E1;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #FFFFFF;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile Drawer (Optimized Touch Navigation) */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: #0A141E;
  border-left: 1px solid var(--border-subtle);
  z-index: 2000;
  padding: 24px 20px;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 15px;
}

.close-drawer {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #FFFFFF;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.close-drawer:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav a {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: #CBD5E1;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.mobile-nav a:hover, .mobile-nav a.active {
  background: rgba(0, 217, 160, 0.1);
  border-color: rgba(0, 217, 160, 0.3);
  color: var(--primary);
}

.mobile-drawer-cta {
  margin-top: auto;
  padding-top: 25px;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 85px 0 60px 0;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video-wrapper iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7,14,20,0.85) 0%, rgba(7,14,20,0.98) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

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

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-quote-box {
  border-left: 3px solid var(--primary);
  padding: 10px 16px;
  background: rgba(0, 217, 160, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: #E2E8F0;
  margin-bottom: 30px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.hero-trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #E2E8F0;
  font-weight: 500;
}

.hero-trust-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

/* Flash Sale Card */
.flash-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 217, 160, 0.18);
}

.flash-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.flash-sub {
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.cd-block {
  background: rgba(0, 217, 160, 0.1);
  border: 1px solid rgba(0, 217, 160, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  min-width: 60px;
}

.cd-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.cd-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.cd-sep {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

/* ==========================================================================
   DYNAMIC CONTINUOUS ANIMATED CAROUSELS (ACTIVE INFINITE MARQUEE)
   ========================================================================== */
.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-item {
  flex: 0 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(0, 217, 160, 0.25);
}

.carousel--logos .carousel-item { width: 140px; height: 80px; padding: 12px; display: flex; align-items: center; justify-content: center; }
.carousel--movies .carousel-item { width: 200px; height: 296px; }
.carousel--sport .carousel-item { width: 210px; height: 373px; }
.carousel--preview .carousel-item { width: 320px; height: 144px; }
.carousel--devices .carousel-item { width: 180px; height: 180px; padding: 15px; display: flex; align-items: center; justify-content: center; }
.carousel--wtsp .carousel-item { width: 240px; height: 520px; }
.carousel--trustpilot .carousel-item { width: 460px; height: auto; }

/* Comparison Table */
.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 30px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  background: #11202E;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.05rem;
}

.comparison-table .highlight-col {
  background: rgba(0, 217, 160, 0.09);
  color: var(--primary);
  font-weight: 700;
  border-left: 1px solid var(--border-card);
  border-right: 1px solid var(--border-card);
}

.compare-check { color: var(--primary); font-weight: 800; margin-right: 8px; font-size: 1.1rem; }
.compare-cross { color: #EF4444; font-weight: 800; margin-right: 8px; font-size: 1.1rem; }

/* Pricing Section */
.screen-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}

.screen-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.screen-card:hover, .screen-card.is-selected {
  border-color: var(--primary);
  background: var(--bg-card-hover);
  box-shadow: 0 0 20px rgba(0, 217, 160, 0.25);
  transform: translateY(-3px);
}

.screen-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

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

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 35px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.is-featured {
  background: var(--bg-card-featured);
  border: 2px solid var(--primary);
  box-shadow: 0 15px 50px rgba(0, 217, 160, 0.25);
  transform: scale(1.03);
}

.pricing-duration {
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.pricing-amount {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1;
}

.pricing-breakdown {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #E2E8F0;
}

.pricing-feature-item svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  flex-shrink: 0;
}

.pricing-horizontal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.price-breakdown-bar {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

/* Trustpilot Marquee */
.reviews-track-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 30px;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 45s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.rev-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
}

.rev-stars-row {
  color: #00B67A;
  font-size: 1.15rem;
  display: flex;
  gap: 3px;
}

.rev-title {
  font-weight: 700;
  color: #FFFFFF;
  margin: 10px 0 6px 0;
  font-size: 1rem;
}

.rev-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.rev-author {
  font-size: 0.88rem;
  font-weight: 600;
  color: #CBD5E1;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rev-city {
  color: var(--primary);
  font-size: 0.8rem;
}

/* Step Activation */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.step-card {
  position: relative;
  padding: 35px 28px;
}

.step-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: rgba(0, 217, 160, 0.25);
  line-height: 1;
  margin-bottom: 15px;
}

.step-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Customer Reviews Grid */
.cust-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
}

.cust-rev-card {
  display: flex;
  flex-direction: column;
}

.cust-rev-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.cust-rev-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cust-rev-name {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1rem;
}

.verified-badge {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

.cust-rev-device {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

/* FAQ Accordion */
.faq-grid {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

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

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  color: #FFFFFF;
  user-select: none;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

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

.faq-answer p {
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: #04080D;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 30px 0;
  margin-top: 60px;
}

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

.footer-desc {
  font-size: 0.95rem;
  margin: 15px 0 20px 0;
}

.footer-trust-badge {
  color: #00B67A;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 30px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Floating WhatsApp Button & Pulse Effect */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn {
  position: relative;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.75);
}

.whatsapp-btn svg {
  width: 36px;
  height: 36px;
  fill: #FFFFFF;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover svg {
  transform: scale(1.05);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.7;
  z-index: -1;
  animation: waPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.45);
    opacity: 0;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}