/* ==========================================================================
   Gaza Cars (سيارات غزة) - Premium Unified Design System
   Theme: Light Modern Palette with Deep Brand Navy (#1c3547)
   ========================================================================== */

:root {
  /* Brand Core Colors */
  --color-brand-primary: #1c3547;
  --color-brand-primary-hover: #142836;
  --color-brand-dark: #0f1d27;

  /* Background Palette */
  --color-bg-main: #ffffff;
  --color-bg-subtle: #f8fafc;
  --color-bg-surface: #f1f5f9;
  --color-bg-card: #ffffff;

  /* Borders & Shadows */
  --color-border-light: rgba(28, 53, 71, 0.1);
  --color-border-hover: rgba(0, 150, 166, 0.35);
  --shadow-subtle: 0 4px 20px rgba(28, 53, 71, 0.05);
  --shadow-card: 0 10px 30px rgba(28, 53, 71, 0.07);
  --shadow-card-hover: 0 20px 40px rgba(28, 53, 71, 0.13);
  --shadow-deep: 0 25px 60px rgba(28, 53, 71, 0.16);

  /* Accents */
  --color-cyan: #0096a6;
  --color-cyan-glow: rgba(0, 150, 166, 0.12);
  --color-cyan-light: #0284c7;
  --color-gold: #d97706;
  --color-gold-glow: rgba(217, 119, 6, 0.12);

  /* Typography Colors */
  --color-text-heading: #10212d;
  --color-text-main: #1c3547;
  --color-text-muted: #475569;
  --color-text-subtle: #64748b;
  --color-text-white: #ffffff;

  --font-family-arabic: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-blur: blur(16px);
  --border-radius-card: 22px;
  --border-radius-pill: 9999px;
}

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

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

body {
  font-family: var(--font-family-arabic);
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 12%, rgba(28, 53, 71, 0.035) 0%, transparent 45%),
    radial-gradient(circle at 90% 30%, rgba(0, 150, 166, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(28, 53, 71, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 90%, rgba(217, 119, 6, 0.035) 0%, transparent 35%);
  background-attachment: fixed;
}

/* Ambient Subtle Background Tints */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 150, 166, 0.07) 0%, transparent 70%);
  top: 5%;
  left: -80px;
}

.ambient-glow-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(28, 53, 71, 0.05) 0%, transparent 70%);
  top: 35%;
  right: -100px;
}

.ambient-glow-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.05) 0%, transparent 70%);
  bottom: 10%;
  left: 5%;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-heading);
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.3rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.875rem;
  font-weight: 700;
  background: rgba(0, 150, 166, 0.08);
  color: var(--color-cyan);
  border: 1px solid rgba(0, 150, 166, 0.22);
  margin-bottom: 1.15rem;
  box-shadow: 0 2px 10px rgba(0, 150, 166, 0.06);
}

.badge-gold {
  background: rgba(217, 119, 6, 0.08);
  color: var(--color-gold);
  border-color: rgba(217, 119, 6, 0.25);
  box-shadow: 0 2px 10px rgba(217, 119, 6, 0.06);
}

.section-title {
  font-size: 2.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--color-brand-primary);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.15rem 0;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: 0 4px 25px rgba(28, 53, 71, 0.07);
}

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

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(28, 53, 71, 0.12);
}

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

.brand-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-brand-primary);
  line-height: 1.15;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--color-cyan);
  letter-spacing: 0.5px;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-text-main);
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.35rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-cyan);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0%;
  height: 2px;
  background: var(--color-cyan);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.45rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-white);
  background: var(--color-brand-primary);
  box-shadow: 0 4px 18px rgba(28, 53, 71, 0.25);
  transition: var(--transition-smooth);
}

.btn-header-cta:hover {
  background: var(--color-brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(28, 53, 71, 0.35);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-brand-primary);
  font-size: 1.65rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 9.5rem;
  padding-bottom: 5.5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.35rem;
  border-radius: var(--border-radius-pill);
  background: rgba(28, 53, 71, 0.06);
  border: 1px solid rgba(28, 53, 71, 0.12);
  box-shadow: 0 2px 10px rgba(28, 53, 71, 0.04);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-brand-primary);
  margin-bottom: 1.5rem;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 10px var(--color-cyan);
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 150, 166, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 150, 166, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 150, 166, 0); }
}

.hero-title {
  font-size: 3.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.35rem;
  line-height: 1.2;
  color: var(--color-text-heading);
}

.hero-title .highlight-cyan {
  color: var(--color-cyan);
  display: inline-block;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 2.35rem;
  max-width: 580px;
  line-height: 1.8;
}

/* Store Buttons Group */
.store-buttons-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 16px;
  background: var(--color-brand-primary);
  border: 1px solid var(--color-brand-primary);
  box-shadow: 0 6px 20px rgba(28, 53, 71, 0.22);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.btn-store::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.btn-store:hover::before {
  left: 200%;
}

.btn-store:hover {
  transform: translateY(-3px);
  background: var(--color-brand-primary-hover);
  box-shadow: 0 10px 28px rgba(28, 53, 71, 0.32);
}

.btn-store-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-store-icon svg {
  width: 100%;
  height: 100%;
}

.btn-store-text {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.btn-store-text .store-sub {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.2;
}

.btn-store-text .store-main {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

/* Quick Stats Bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border-light);
  width: 100%;
}

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

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-brand-primary);
  line-height: 1.2;
}

.stat-number span {
  color: var(--color-cyan);
}

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

/* Hero Visual & Phone Showcase */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  perspective: 1000px;
}

.phone-card {
  position: relative;
  border-radius: 42px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(28, 53, 71, 0.15);
  box-shadow: 
    0 25px 60px rgba(28, 53, 71, 0.18),
    0 0 25px rgba(0, 150, 166, 0.1);
  transform: rotate(-2.5deg) translateY(0);
  transition: var(--transition-smooth);
  animation: floatingMockup 6s ease-in-out infinite alternate;
}

@keyframes floatingMockup {
  0% { transform: rotate(-2deg) translateY(0); }
  100% { transform: rotate(-1deg) translateY(-14px); }
}

.phone-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.02);
  box-shadow: 
    0 30px 70px rgba(28, 53, 71, 0.24),
    0 0 35px rgba(0, 150, 166, 0.18);
}

.phone-screen-img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  display: block;
}

/* Floating Badges over Phone */
.floating-badge {
  position: absolute;
  padding: 0.9rem 1.35rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--color-border-light);
  box-shadow: 0 12px 30px rgba(28, 53, 71, 0.12);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
  animation: floatingBadge 4s ease-in-out infinite alternate;
}

.floating-badge-1 {
  top: 15%;
  right: -35px;
  animation-delay: 0.5s;
}

.floating-badge-2 {
  bottom: 18%;
  left: -40px;
  animation-delay: 1.5s;
}

@keyframes floatingBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.35rem;
}

.badge-icon-cyan {
  background: rgba(0, 150, 166, 0.1);
  color: var(--color-cyan);
}

.badge-icon-gold {
  background: rgba(217, 119, 6, 0.1);
  color: var(--color-gold);
}

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

.badge-label {
  font-size: 0.78rem;
  color: var(--color-text-subtle);
  font-weight: 500;
}

.badge-value {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--color-brand-primary);
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
  padding: 6.5rem 0;
  background: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
}

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

.feature-card {
  padding: 2.35rem;
  border-radius: var(--border-radius-card);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-card-hover);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  background: rgba(28, 53, 71, 0.05);
  border: 1px solid var(--color-border-light);
  color: var(--color-cyan);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background: rgba(0, 150, 166, 0.1);
  border-color: rgba(0, 150, 166, 0.3);
  transform: scale(1.08) rotate(3deg);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: var(--color-brand-primary);
}

.feature-desc {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   App Screens Showcase Section (Deep Dive)
   ========================================================================== */
.screens-showcase-section {
  padding: 6.5rem 0;
  position: relative;
  background: var(--color-bg-main);
}

.screens-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.screen-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--border-radius-pill);
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  color: var(--color-text-muted);
  font-size: 0.98rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.screen-tab-btn:hover {
  color: var(--color-brand-primary);
  border-color: rgba(28, 53, 71, 0.3);
  transform: translateY(-1px);
}

.screen-tab-btn.active {
  background: var(--color-brand-primary);
  color: #ffffff;
  border-color: var(--color-brand-primary);
  box-shadow: 0 4px 20px rgba(28, 53, 71, 0.25);
}

.screens-panes-wrapper {
  position: relative;
}

.screen-pane {
  display: none;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}

.screen-pane.active {
  display: grid;
  animation: fadeInPane 0.45s ease forwards;
}

@keyframes fadeInPane {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.screen-pane-visual {
  display: flex;
  justify-content: center;
}

.screen-frame {
  max-width: 380px;
  width: 100%;
  border-radius: 38px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(28, 53, 71, 0.15);
  box-shadow: var(--shadow-deep);
}

.screen-frame img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  display: block;
}

.screen-pane-info {
  display: flex;
  flex-direction: column;
}

.screen-tag {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-cyan);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.screen-headline {
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 1.15rem;
  line-height: 1.3;
  color: var(--color-brand-primary);
}

.screen-subtext {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.screen-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(0, 150, 166, 0.1);
  color: var(--color-cyan);
  border: 1px solid rgba(0, 150, 166, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.highlight-text h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-brand-primary);
  margin-bottom: 0.25rem;
}

.highlight-text p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Dealers & Showrooms Section
   ========================================================================== */
.dealers-section {
  padding: 6.5rem 0;
  position: relative;
  background: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.dealers-box {
  padding: 4.5rem;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(28, 53, 71, 0.12);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.dealers-box::after {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 150, 166, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.dealers-content h2 {
  font-size: 2.35rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  color: var(--color-brand-primary);
}

.dealers-content p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.dealers-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.dealer-perk-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.dealer-perk-check {
  color: var(--color-cyan);
  font-weight: 800;
  font-size: 1.1rem;
}

.dealer-perk-text {
  font-size: 1rem;
  color: var(--color-text-main);
  font-weight: 700;
}

.dealers-cta-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.dealers-visual {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.dealer-metric-card {
  padding: 1.65rem;
  border-radius: 20px;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  gap: 1.35rem;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.dealer-metric-card:hover {
  transform: translateX(-6px);
  background: #ffffff;
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-card);
}

.metric-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(0, 150, 166, 0.1);
  color: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.metric-data h4 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-brand-primary);
}

.metric-data p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ==========================================================================
   Download CTA & QR Section
   ========================================================================= */
.cta-download-section {
  padding: 6.5rem 0;
  position: relative;
  background: var(--color-bg-main);
}

.cta-banner {
  padding: 4.5rem 3.5rem;
  border-radius: 34px;
  background: var(--color-brand-primary);
  box-shadow: 0 25px 60px rgba(28, 53, 71, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 210, 211, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-text {
  max-width: 620px;
}

.cta-banner-text .badge-tag {
  background: rgba(255, 255, 255, 0.12);
  color: #38bdf8;
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-banner-text h2 {
  font-size: 2.65rem;
  margin-bottom: 1.15rem;
  line-height: 1.25;
  color: #ffffff;
}

.cta-banner-text p {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.cta-banner .btn-store {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--color-brand-primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-banner .btn-store:hover {
  background: #f1f5f9;
  transform: translateY(-3px);
}

.cta-banner .btn-store-text .store-sub {
  color: #64748b;
}

.cta-banner .btn-store-text .store-main {
  color: var(--color-brand-primary);
}

.cta-qr-box {
  padding: 1.75rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.qr-code-img {
  width: 160px;
  height: 160px;
  border-radius: 14px;
  background: #ffffff;
  padding: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.qr-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #38bdf8;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 6.5rem 0;
  position: relative;
  background: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border-light);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.faq-item {
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(28, 53, 71, 0.25);
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  padding: 1.45rem 1.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--color-brand-primary);
  font-size: 1.15rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  text-align: right;
}

.faq-toggle-icon {
  font-size: 1.35rem;
  color: var(--color-cyan);
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.85rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.4s ease-in-out;
  padding-bottom: 1.65rem;
}

.faq-answer p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* ==========================================================================
   Subpages Common Styles (Privacy Policy, Terms, Delete Account)
   ========================================================================== */
.subpage-wrapper {
  padding-top: 8.5rem;
  padding-bottom: 5.5rem;
  min-height: 85vh;
  position: relative;
  z-index: 1;
}

.subpage-card {
  max-width: 880px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 26px;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-deep);
  padding: 3.5rem;
  position: relative;
}

.subpage-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 2px solid var(--color-border-light);
}

.subpage-header h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-brand-primary);
  margin-bottom: 0.5rem;
}

.subpage-header .subpage-date {
  font-size: 0.9rem;
  color: var(--color-text-subtle);
  font-weight: 500;
}

/* Language Switcher Pills */
.lang-pills {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.lang-pill {
  padding: 0.45rem 1.35rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-brand-primary);
  border: 1px solid var(--color-border-light);
  background: var(--color-bg-subtle);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.lang-pill:hover, .lang-pill.active {
  background: var(--color-brand-primary);
  color: #ffffff;
  border-color: var(--color-brand-primary);
  box-shadow: 0 4px 14px rgba(28, 53, 71, 0.2);
}

/* Policy & Terms Formatted Content */
.subpage-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text-muted);
}

.subpage-content h2, .subpage-content h3, .subpage-content h4 {
  color: var(--color-brand-primary);
  margin-top: 2rem;
  margin-bottom: 0.85rem;
  font-weight: 800;
}

.subpage-content h2 { font-size: 1.65rem; }
.subpage-content h3 { font-size: 1.35rem; }
.subpage-content h4 { font-size: 1.15rem; }

.subpage-content p {
  margin-bottom: 1.25rem;
}

.subpage-content ul, .subpage-content ol {
  margin-bottom: 1.5rem;
  padding-right: 1.75rem;
}

.subpage-content li {
  margin-bottom: 0.65rem;
}

.subpage-content blockquote {
  border-right: 4px solid var(--color-cyan);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--color-bg-subtle);
  border-radius: 12px;
  color: var(--color-brand-primary);
  font-weight: 600;
}

.subpage-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.subpage-content th, .subpage-content td {
  border: 1px solid var(--color-border-light);
  padding: 0.85rem 1.15rem;
  text-align: right;
}

.subpage-content th {
  background: var(--color-brand-primary);
  color: #ffffff;
  font-weight: 700;
}

.subpage-content tr:nth-child(even) {
  background: var(--color-bg-subtle);
}

/* Delete Account Specific Components */
.delete-info-card {
  border-radius: 16px;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border-light);
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.delete-info-card.warning-style {
  background: #fffbeb;
  border-color: #fde68a;
}

.delete-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-brand-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.warning-style .delete-card-title {
  color: #b45309;
}

.delete-form-group {
  margin-bottom: 1.75rem;
}

.delete-form-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-brand-primary);
  margin-bottom: 0.65rem;
}

.delete-input-text {
  width: 100%;
  padding: 0.95rem 1.25rem;
  border-radius: 14px;
  border: 2px solid var(--color-border-light);
  font-family: inherit;
  font-size: 1.15rem;
  color: var(--color-brand-primary);
  background: #ffffff;
  transition: var(--transition-smooth);
}

.delete-input-text:focus {
  outline: none;
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 4px rgba(0, 150, 166, 0.12);
}

.btn-delete-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  border-radius: var(--border-radius-pill);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  background: #dc2626;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.28);
  transition: var(--transition-smooth);
  width: 100%;
}

.btn-delete-submit:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.38);
}

.btn-delete-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--border-radius-pill);
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border-light);
  color: var(--color-brand-primary);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  margin-top: 2rem;
}

.btn-back-home:hover {
  background: var(--color-brand-primary);
  color: #ffffff;
  border-color: var(--color-brand-primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 5.5rem 0 2.5rem 0;
  background: #ffffff;
  border-top: 1px solid var(--color-border-light);
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  margin-top: 1.35rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.35rem;
  color: var(--color-brand-primary);
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 28px;
  height: 3px;
  background: var(--color-cyan);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--color-cyan);
  padding-right: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-light);
  font-size: 0.9rem;
  color: var(--color-text-subtle);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.75rem;
}

.footer-legal-links a {
  color: var(--color-text-subtle);
}

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

/* ==========================================================================
   Contact & Social Channels Section (VIP Redesign)
   ========================================================================== */
.contact-section {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #f1f5f9 100%);
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-border-light) 50%, transparent 100%);
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulseLight 1.8s infinite;
}

@keyframes pulseLight {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Direct Contact Channels Grid */
.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.contact-channel-card {
  background: #ffffff;
  border-radius: 26px;
  border: 1px solid rgba(28, 53, 71, 0.08);
  box-shadow: 0 10px 30px rgba(28, 53, 71, 0.05);
  padding: 2.25rem 2.25rem 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-channel-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  transition: all 0.3s ease;
}

.contact-channel-card.card-whatsapp::after {
  background: linear-gradient(90deg, #25D366, #128C7E);
}

.contact-channel-card.card-email::after {
  background: linear-gradient(90deg, #0096a6, #1c3547);
}

.contact-channel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(28, 53, 71, 0.1);
  border-color: rgba(28, 53, 71, 0.15);
}

.contact-channel-card.card-whatsapp:hover {
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.3);
}

.contact-channel-card.card-email:hover {
  box-shadow: 0 20px 45px rgba(0, 150, 166, 0.14);
  border-color: rgba(0, 150, 166, 0.3);
}

/* Card Header Bar */
.card-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-subtle);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #25D366;
  position: relative;
}

.status-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulseDot 2s infinite;
}

.status-dot.dot-cyan {
  background: var(--color-cyan);
}

.status-dot.dot-cyan::after {
  background: rgba(0, 150, 166, 0.4);
}

@keyframes pulseDot {
  0% { transform: scale(0.8); opacity: 0.8; }
  50% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(0.8); opacity: 0; }
}

.channel-type-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: var(--border-radius-pill);
  background: rgba(37, 211, 102, 0.1);
  color: #128C7E;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.channel-type-badge.badge-cyan {
  background: rgba(0, 150, 166, 0.1);
  color: var(--color-cyan);
  border-color: rgba(0, 150, 166, 0.2);
}

/* Main Content in Card */
.channel-main-content {
  display: flex;
  align-items: flex-start;
  gap: 1.35rem;
  margin-bottom: 1.75rem;
}

.channel-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.channel-icon-wrapper.icon-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(37, 211, 102, 0.05) 100%);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.contact-channel-card:hover .channel-icon-wrapper.icon-whatsapp {
  background: #25D366;
  color: #ffffff;
  transform: scale(1.05) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.channel-icon-wrapper.icon-email {
  background: linear-gradient(135deg, rgba(0, 150, 166, 0.15) 0%, rgba(0, 150, 166, 0.05) 100%);
  color: var(--color-cyan);
  border: 1px solid rgba(0, 150, 166, 0.2);
}

.contact-channel-card:hover .channel-icon-wrapper.icon-email {
  background: var(--color-cyan);
  color: #ffffff;
  transform: scale(1.05) rotate(4deg);
  box-shadow: 0 8px 20px rgba(0, 150, 166, 0.35);
}

.channel-text-group {
  flex: 1;
}

.channel-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-brand-primary);
  margin-bottom: 0.35rem;
}

.channel-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.contact-value-box {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8fafc;
  border: 1px solid rgba(28, 53, 71, 0.1);
  border-radius: 14px;
  padding: 0.45rem 0.85rem;
  direction: ltr;
}

.contact-number-val {
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text-heading);
  letter-spacing: 0.5px;
}

.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #ffffff;
  border: 1px solid rgba(28, 53, 71, 0.12);
  border-radius: 8px;
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-family-arabic);
  color: var(--color-brand-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-copy:hover {
  background: var(--color-brand-primary);
  color: #ffffff;
  border-color: var(--color-brand-primary);
}

.btn-copy.copied {
  background: #25D366;
  color: #ffffff;
  border-color: #25D366;
}

/* Card Action Button & Response Note */
.card-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(28, 53, 71, 0.1);
}

.btn-channel-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-action-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-action-whatsapp:hover {
  background: linear-gradient(135deg, #22be5b 0%, #178e44 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.btn-action-email {
  background: linear-gradient(135deg, #0096a6 0%, #1c3547 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 150, 166, 0.3);
}

.btn-action-email:hover {
  background: linear-gradient(135deg, #0284c7 0%, #142836 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 150, 166, 0.45);
}

.response-note {
  font-size: 0.8rem;
  color: var(--color-text-subtle);
  font-weight: 600;
  text-align: center;
}

/* Social Media Hub Box */
.social-hub-box {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(28, 53, 71, 0.08);
  box-shadow: 0 12px 35px rgba(28, 53, 71, 0.05);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.social-hub-badge {
  display: inline-block;
  padding: 0.35rem 1.15rem;
  border-radius: var(--border-radius-pill);
  background: rgba(0, 150, 166, 0.08);
  color: var(--color-cyan);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(0, 150, 166, 0.2);
  margin-bottom: 0.85rem;
}

.social-hub-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-brand-primary);
  margin-bottom: 0.5rem;
}

.social-hub-desc {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  max-width: 600px;
  margin: 0 auto 2.25rem auto;
  line-height: 1.6;
}

.social-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.social-hub-card {
  background: #f8fafc;
  border: 1px solid rgba(28, 53, 71, 0.07);
  border-radius: 20px;
  padding: 1.85rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.social-hub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-hub-card.card-fb::before { background: #1877F2; }
.social-hub-card.card-ig::before { background: linear-gradient(90deg, #fd5949, #d6249f, #285AEB); }
.social-hub-card.card-tt::before { background: #000000; }
.social-hub-card.card-li::before { background: #0A66C2; }

.social-hub-card:hover::before {
  opacity: 1;
}

.social-hub-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(28, 53, 71, 0.1);
  border-color: rgba(28, 53, 71, 0.12);
}

.sh-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  transition: var(--transition-smooth);
}

.card-fb .sh-icon-wrap { background: rgba(24, 119, 242, 0.1); color: #1877F2; }
.card-fb:hover .sh-icon-wrap { background: #1877F2; color: #ffffff; transform: scale(1.08); }

.card-ig .sh-icon-wrap { background: rgba(225, 48, 108, 0.1); color: #E1306C; }
.card-ig:hover .sh-icon-wrap {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #ffffff;
  transform: scale(1.08);
}

.card-tt .sh-icon-wrap { background: rgba(0, 0, 0, 0.08); color: #000000; }
.card-tt:hover .sh-icon-wrap { background: #000000; color: #ffffff; transform: scale(1.08); }

.card-li .sh-icon-wrap { background: rgba(10, 102, 194, 0.1); color: #0A66C2; }
.card-li:hover .sh-icon-wrap { background: #0A66C2; color: #ffffff; transform: scale(1.08); }

.sh-content {
  margin-bottom: 1.25rem;
  width: 100%;
}

.sh-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-brand-primary);
  margin-bottom: 0.2rem;
}

.sh-handle {
  font-size: 0.85rem;
  color: var(--color-cyan);
  font-weight: 700;
  display: block;
  margin-bottom: 0.35rem;
}

.sh-sub {
  font-size: 0.8rem;
  color: var(--color-text-subtle);
  line-height: 1.4;
}

.sh-action-link {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 1.25rem;
  border-radius: var(--border-radius-pill);
  background: #ffffff;
  border: 1px solid rgba(28, 53, 71, 0.12);
  color: var(--color-brand-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-smooth);
}

.social-hub-card:hover .sh-action-link {
  background: var(--color-brand-primary);
  color: #ffffff;
  border-color: var(--color-brand-primary);
}

.card-fb:hover .sh-action-link { background: #1877F2; border-color: #1877F2; color: #ffffff; }
.card-ig:hover .sh-action-link { background: #E1306C; border-color: #E1306C; color: #ffffff; }
.card-tt:hover .sh-action-link { background: #000000; border-color: #000000; color: #ffffff; }
.card-li:hover .sh-action-link { background: #0A66C2; border-color: #0A66C2; color: #ffffff; }


/* Footer Social Icons Bar */
.footer-social-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--color-bg-surface);
  color: var(--color-brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  border: 1px solid var(--color-border-light);
}

.footer-social-icon:hover {
  transform: translateY(-3px);
  color: #ffffff;
}

.footer-social-icon.whatsapp:hover { background: #25D366; border-color: #25D366; }
.footer-social-icon.facebook:hover { background: #1877F2; border-color: #1877F2; }
.footer-social-icon.instagram:hover { background: #E1306C; border-color: #E1306C; }
.footer-social-icon.tiktok:hover { background: #000000; border-color: #000000; }
.footer-social-icon.linkedin:hover { background: #0A66C2; border-color: #0A66C2; }
.footer-social-icon.email:hover { background: var(--color-cyan); border-color: var(--color-cyan); }

/* Footer Contact List */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  transition: var(--transition-smooth);
}

.footer-contact-item:hover {
  color: var(--color-cyan);
}

.footer-contact-item .f-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--color-bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-primary);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.footer-contact-item:hover .f-icon {
  background: var(--color-cyan);
  color: #ffffff;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.floating-whatsapp-btn .whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.6;
  z-index: -1;
  animation: pulseWhatsapp 2.2s infinite;
}

@keyframes pulseWhatsapp {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background: var(--color-brand-dark);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition-smooth);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--color-brand-dark);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3.5rem;
  }

  .hero-content {
    align-items: center;
  }

  .hero-description {
    max-width: 100%;
  }

  .store-buttons-group {
    justify-content: center;
  }

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

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

  .screen-pane {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .screen-highlights-list {
    align-items: center;
    text-align: right;
  }

  .dealers-box {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 3.5rem 2rem;
  }

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

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

  .subpage-card {
    padding: 2.5rem 1.75rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.45rem;
  }

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

  .dealers-perks {
    grid-template-columns: 1fr;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: var(--glass-blur);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    border-left: 1px solid var(--color-border-light);
    box-shadow: -10px 0 30px rgba(28, 53, 71, 0.15);
    transition: var(--transition-smooth);
    z-index: 99;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-actions {
    display: none;
  }

  .contact-grid,
  .contact-channels-grid {
    grid-template-columns: 1fr;
  }

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

  .social-hub-box {
    padding: 2.25rem 1.25rem;
  }

  .floating-whatsapp-btn {
    bottom: 20px;
    left: 20px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-tooltip {
    display: none;
  }

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

  .floating-badge {
    display: none;
  }

  .phone-mockup-wrapper {
    max-width: 290px;
  }

  .subpage-header h1 {
    font-size: 1.75rem;
  }

  .subpage-card {
    padding: 1.75rem 1.25rem;
  }
}

@media (max-width: 580px) {
  .social-hub-grid {
    grid-template-columns: 1fr;
  }
  .contact-channel-card {
    padding: 1.75rem 1.25rem;
  }
  .channel-main-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-value-box {
    margin: 0.5rem auto 0 auto;
  }
}
