/* ==========================================================================
   SK DIGITAL MARKETING - MASTER STYLESHEET (V2 LUXURY TECH REDESIGN)
   Ultra-Premium, Modern, Mobile-First Dark/Light Theme with Currency Switcher
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Dark Mode (Default) */
  --bg-primary: #05070a;
  --bg-secondary: #0a0e17;
  --bg-surface: #0f1523;
  --bg-surface-elevated: #151d30;
  --bg-surface-glass: rgba(10, 14, 23, 0.82);
  --bg-glass-card: rgba(15, 21, 35, 0.72);
  --bg-input: rgba(15, 21, 35, 0.9);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-accent: rgba(0, 194, 255, 0.35);
  --border-accent-glow: rgba(0, 194, 255, 0.5);

  --accent-cyan: #00c2ff;
  --accent-blue: #2563eb;
  --accent-sky: #38bdf8;
  --accent-gradient: linear-gradient(135deg, #00c2ff 0%, #2563eb 100%);
  --accent-glow: rgba(0, 194, 255, 0.25);
  --accent-glow-subtle: rgba(0, 194, 255, 0.08);

  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  --text-faint: #64748b;

  --whatsapp-color: #25d366;
  --whatsapp-hover: #20ba5a;
  --whatsapp-glow: rgba(37, 211, 102, 0.35);

  --success: #10b981;
  --warning: #f59e0b;

  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px var(--accent-glow-subtle);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --header-height: 72px;
  --container-max: 1260px;
}

/* Light Mode Overrides */
[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #f8fafc;
  --bg-surface-glass: rgba(255, 255, 255, 0.9);
  --bg-glass-card: rgba(255, 255, 255, 0.95);
  --bg-input: #ffffff;

  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-medium: rgba(15, 23, 42, 0.16);
  --border-accent: rgba(2, 132, 199, 0.35);
  --border-accent-glow: rgba(2, 132, 199, 0.5);

  --accent-cyan: #0284c7;
  --accent-blue: #1d4ed8;
  --accent-sky: #0284c7;
  --accent-gradient: linear-gradient(135deg, #0284c7 0%, #1d4ed8 100%);
  --accent-glow: rgba(2, 132, 199, 0.2);
  --accent-glow-subtle: rgba(2, 132, 199, 0.06);

  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-faint: #94a3b8;

  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 30px rgba(2, 132, 199, 0.08);
}

/* --------------------------------------------------------------------------
   2. Reset & Global Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  position: relative;
  min-height: 100vh;
}

:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--accent-blue);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 99999;
  font-weight: 600;
  transition: top var(--transition-fast);
  text-decoration: none;
}
.skip-link:focus {
  top: 20px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.8rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--accent-sky);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--accent-cyan); }

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

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 36px);
  padding-right: clamp(16px, 4vw, 36px);
}

.section-spacing {
  padding-top: clamp(65px, 9vw, 110px);
  padding-bottom: clamp(65px, 9vw, 110px);
}

.section-spacing-sm {
  padding-top: clamp(40px, 6vw, 65px);
  padding-bottom: clamp(40px, 6vw, 65px);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(40px, 6vw, 65px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  background: var(--accent-glow-subtle);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  box-shadow: 0 0 15px var(--accent-glow-subtle);
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   3. Buttons & CTAs
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-whatsapp {
  background: var(--whatsapp-color);
  color: #ffffff;
  box-shadow: 0 4px 18px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 4px 18px var(--accent-glow);
}

.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 194, 255, 0.45);
}

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

.btn-outline:hover {
  background: rgba(0, 194, 255, 0.08);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

[data-theme="light"] .btn-outline:hover {
  background: rgba(2, 132, 199, 0.06);
}

.btn-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   4. Redesigned Premium Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--bg-surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: background-color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  border-bottom-color: var(--border-medium);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

/* Brand Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo-img {
  height: 38px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.site-logo:hover .site-logo-img {
  transform: scale(1.03);
  filter: drop-shadow(0 0 12px rgba(0, 194, 255, 0.35));
}

.footer-logo-img {
  height: 42px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
  transition: transform var(--transition-fast);
}

.footer-logo-img:hover {
  transform: scale(1.02);
}

/* Desktop Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--accent-cyan);
  background: var(--accent-glow-subtle);
  font-weight: 600;
}

[data-theme="light"] .nav-link:hover {
  background: rgba(15, 23, 42, 0.05);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Compact Currency Dropdown in Header */
.currency-dropdown {
  position: relative;
}

.currency-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  transition: all var(--transition-fast);
  cursor: pointer;
  font-family: inherit;
}

.currency-dropdown-toggle:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 194, 255, 0.08);
}

.currency-chevron {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: transform var(--transition-fast);
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.currency-dropdown.open .currency-chevron {
  transform: rotate(180deg);
}

.currency-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 6px;
  min-width: 140px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  z-index: 1001;
  display: none;
  flex-direction: column;
  gap: 4px;
  animation: fadeInDown 0.15s ease-out;
}

.currency-dropdown.open .currency-dropdown-menu {
  display: flex;
}

.currency-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  text-align: left;
  transition: all var(--transition-fast);
  width: 100%;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.currency-dropdown-item:hover {
  background: rgba(0, 194, 255, 0.12);
  color: var(--accent-cyan);
}

.currency-dropdown-item.active {
  background: var(--accent-gradient);
  color: #ffffff;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Header WhatsApp Button */
.header-whatsapp-btn {
  padding: 9px 18px;
  font-size: 0.88rem;
  gap: 8px;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: rotate(15deg);
}

.theme-toggle-btn svg {
  width: 18px;
  height: 18px;
}

.theme-icon-light { display: none; }
[data-theme="light"] .theme-icon-light { display: block; }
[data-theme="light"] .theme-icon-dark { display: none; }

/* Mobile Hamburger Toggle */
.mobile-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  align-items: center;
  justify-content: center;
  position: relative;
}

.mobile-nav-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-icon-close { display: none; }
.mobile-nav-toggle[aria-expanded="true"] .mobile-icon-menu { display: none; }
.mobile-nav-toggle[aria-expanded="true"] .mobile-icon-close { display: block; }

.mobile-drawer-footer { display: none; }

/* --------------------------------------------------------------------------
   5. Interactive Currency Switcher (Dedicated Section / Component)
   -------------------------------------------------------------------------- */
.currency-switcher-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.currency-switcher-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.currency-switcher-group {
  display: inline-flex;
  align-items: center;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 4px;
  box-shadow: var(--shadow-sm);
}

.currency-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.currency-btn:hover {
  color: var(--text-primary);
}

.currency-btn.active {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 3px 12px var(--accent-glow);
}

.currency-btn .flag {
  font-size: 1.05rem;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding-top: clamp(65px, 10vw, 125px);
  padding-bottom: clamp(65px, 10vw, 125px);
  overflow: hidden;
  background: radial-gradient(circle at 50% 15%, rgba(0, 194, 255, 0.1) 0%, transparent 65%);
}

[data-theme="light"] .hero-section {
  background: radial-gradient(circle at 50% 15%, rgba(2, 132, 199, 0.09) 0%, transparent 70%);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
}

[data-theme="light"] .hero-canvas {
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge-wrapper {
  display: inline-block;
  margin-bottom: 24px;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.08s backwards;
}

.trust-badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

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

.hero-title {
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 40%, #9ca3af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.18s backwards;
}

[data-theme="light"] .hero-title {
  background: linear-gradient(180deg, #0f172a 40%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Typewriter Text Animation */
.hero-typewriter-wrapper {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}

.hero-typewriter-text {
  background: linear-gradient(135deg, #00c2ff 0%, #38bdf8 45%, #818cf8 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  filter: drop-shadow(0 2px 14px rgba(0, 194, 255, 0.35));
  animation: shimmerGradient 4s ease infinite;
}

[data-theme="light"] .hero-typewriter-text {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 50%, #4f46e5 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(2, 132, 199, 0.2));
}

.hero-typewriter-cursor {
  display: inline-block;
  color: var(--accent-cyan);
  -webkit-text-fill-color: var(--accent-cyan);
  font-weight: 300;
  margin-left: 2px;
  animation: blinkCursor 0.85s infinite;
}

[data-theme="light"] .hero-typewriter-cursor {
  color: var(--accent-blue);
  -webkit-text-fill-color: var(--accent-blue);
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes shimmerGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

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

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.32s backwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.44s backwards;
}

.hero-quick-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 840px;
  margin: 0 auto;
  padding: 18px 24px;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.56s backwards;
}

.quick-price-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.quick-price-item strong {
  color: var(--accent-cyan);
}

.quick-price-divider {
  width: 1px;
  height: 16px;
  background: var(--border-medium);
}

/* --------------------------------------------------------------------------
   7. Core Services Grid (4 Focused Services)
   -------------------------------------------------------------------------- */
.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 30px);
}

.service-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 34px);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

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

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 22px;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card-icon {
  transform: scale(1.08);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card-title {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.service-card-price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.service-card-price-badge .price-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.service-card-price-badge .price-period {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.service-card-features {
  margin-bottom: 24px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.service-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.service-card-features li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   8. Pricing Cards Section (Interactive Multi-Currency)
   -------------------------------------------------------------------------- */
.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 30px);
}

.pricing-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card.featured-card {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 25px var(--accent-glow-subtle);
}

.pricing-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--accent-glow-subtle);
  border: 1px solid var(--border-accent);
  color: var(--accent-cyan);
}

.pricing-card.featured-card .pricing-badge {
  background: var(--accent-gradient);
  color: #ffffff;
  border: none;
}

.pricing-header {
  margin-bottom: 20px;
}

.pricing-service-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-price-box {
  background: var(--bg-surface-elevated);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  border: 1px solid var(--border-medium);
  text-align: center;
}

.price-main-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.price-currency-sym {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

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

.price-alt-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.pricing-features {
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-features-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.pricing-features ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.pricing-features ul li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-cta {
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   8.5. Verified Payment Methods & Delivery Process Section
   -------------------------------------------------------------------------- */
.payment-methods-section {
  background: radial-gradient(circle at 50% 10%, rgba(0, 194, 255, 0.04) 0%, transparent 60%);
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

.payment-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 3.5vw, 36px);
  margin-bottom: 48px;
}

.payment-card {
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 36px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.payment-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
  box-shadow: 0 12px 32px rgba(0, 194, 255, 0.12);
}

.payment-card-jazzcash {
  border-top: 4px solid #ff3b30;
}

.payment-card-paypal {
  border-top: 4px solid #0070ba;
}

.payment-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
}

.payment-badge-jazzcash {
  background: rgba(255, 59, 48, 0.15);
  color: #ff5247;
  border: 1px solid rgba(255, 59, 48, 0.3);
}

.payment-badge-paypal {
  background: rgba(0, 112, 186, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(0, 112, 186, 0.3);
}

.payment-icon-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.payment-icon-jazzcash {
  color: #ff3b30;
}

.payment-icon-paypal {
  color: #0070ba;
}

.payment-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.payment-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}

.payment-details-box {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.payment-field-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.payment-field-label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.payment-field-value-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-subtle);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

[data-theme="light"] .payment-field-value-wrap {
  background: rgba(0, 0, 0, 0.03);
}

.payment-field-value {
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  word-break: break-all;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  color: var(--accent-cyan);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
  font-family: inherit;
}

.copy-btn:hover {
  background: var(--accent-gradient);
  color: #ffffff;
  border-color: transparent;
}

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

.payment-card-notes {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-card-notes svg {
  width: 16px;
  height: 16px;
  color: #25d366;
  flex-shrink: 0;
}

/* Delivery Process Timeline Banner */
.delivery-process-banner {
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  margin-top: 10px;
}

.delivery-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.delivery-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #25d366;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.delivery-title {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.delivery-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.delivery-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
  position: relative;
}

.delivery-step-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.delivery-step-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-cyan);
}

.delivery-step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px var(--accent-glow);
}

.delivery-step-highlight {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.05);
}

.delivery-step-highlight .delivery-step-number {
  background: #25d366;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.4);
}

.delivery-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.delivery-step-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.delivery-cta-bar {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.delivery-cta-bar p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. Rich SEO Content Section
   -------------------------------------------------------------------------- */
.seo-content-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.seo-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.seo-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.seo-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.seo-card ul {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.seo-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.seo-card ul li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-cyan);
}

/* --------------------------------------------------------------------------
   10. Why Us, How It Works, Trust, FAQ, Contact
   -------------------------------------------------------------------------- */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}

.why-us-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  backdrop-filter: blur(12px);
  transition: all var(--transition-normal);
}

.why-us-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.why-us-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-glow-subtle);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-us-icon svg { width: 24px; height: 24px; }
.why-us-title { font-size: 1.15rem; margin-bottom: 10px; }
.why-us-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}

.process-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md);
}

.process-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.process-title { font-size: 1.15rem; margin-bottom: 12px; }
.process-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.about-box {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 20px; line-height: 1.7; }

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 32px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pillar-item svg { width: 20px; height: 20px; color: var(--accent-cyan); flex-shrink: 0; }

.about-visual {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-item { border-bottom: 1px solid var(--border-subtle); padding-bottom: 16px; }
.stat-item:last-child { border-bottom: none; padding-bottom: 0; }
.stat-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-cyan); font-weight: 700; margin-bottom: 4px; }
.stat-value { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); }
.stat-desc { font-size: 0.88rem; color: var(--text-muted); }

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

.trust-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
}

.trust-card-icon { color: var(--accent-cyan); margin-bottom: 16px; }
.trust-card-icon svg { width: 32px; height: 32px; }
.trust-card h4 { margin-bottom: 8px; font-size: 1.1rem; }
.trust-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* FAQ Accordion */
.faq-container { max-width: 840px; margin: 0 auto; }
.faq-item {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover { border-color: var(--border-medium); }
.faq-item.active { border-color: var(--border-accent); }

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  gap: 16px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent-cyan);
  transition: transform var(--transition-normal);
}

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

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), opacity var(--transition-normal);
  opacity: 0;
}

.faq-item.active .faq-panel { opacity: 1; }
.faq-panel-content {
  padding: 0 24px 24px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px solid var(--border-subtle);
  margin-top: 4px;
  padding-top: 16px;
}

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
  backdrop-filter: blur(12px);
}

.contact-info-col h2 { margin-bottom: 16px; }
.contact-info-col p { color: var(--text-muted); font-size: 1rem; margin-bottom: 28px; }

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail-item { display: flex; align-items: flex-start; gap: 16px; }

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-glow-subtle);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 22px; height: 22px; }
.contact-detail-text strong { display: block; font-size: 0.95rem; color: var(--text-primary); margin-bottom: 2px; }
.contact-detail-text span, .contact-detail-text a { font-size: 0.95rem; color: var(--text-secondary); }

.hours-box {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hours-box-header { margin-bottom: 20px; }
.hours-box-header h3 { font-size: 1.2rem; margin-bottom: 6px; }
.hours-box-header p { font-size: 0.88rem; color: var(--text-muted); }

.hours-table { width: 100%; margin-bottom: 24px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-secondary); font-weight: 500; }
.hours-time { color: var(--text-primary); font-weight: 600; }

.service-disclaimer-box {
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid var(--accent-cyan);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

[data-theme="light"] .service-disclaimer-box {
  background: rgba(2, 132, 199, 0.05);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #0b1528 0%, #0d2342 50%, #071224 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

[data-theme="light"] .cta-banner {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #e0f2fe 100%);
  border-color: rgba(2, 132, 199, 0.3);
}

.cta-banner-content { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { font-size: clamp(1.05rem, 1.8vw, 1.2rem); color: var(--text-secondary); margin-bottom: 32px; line-height: 1.6; }

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float:hover {
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg { width: 32px; height: 32px; fill: #ffffff; }

.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--whatsapp-color);
  animation: pulse-ring 2.2s infinite ease-out;
  pointer-events: none;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

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

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Footer */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding-top: clamp(50px, 7vw, 80px);
  padding-bottom: 40px;
  font-size: 0.92rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 340px;
  line-height: 1.6;
}

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

.social-icon-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon-link:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

.social-icon-link svg { width: 18px; height: 18px; }
.footer-col-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; }
.footer-links-list li { margin-bottom: 12px; }
.footer-links-list a { color: var(--text-muted); transition: color var(--transition-fast); }
.footer-links-list a:hover { color: var(--accent-cyan); }

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

.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: var(--text-faint); }
.footer-legal-links a:hover { color: var(--accent-cyan); }

/* --------------------------------------------------------------------------
   11. Mobile Drawer Navigation & Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1150px) {
  .nav-menu {
    gap: 3px;
  }
  .nav-link {
    padding: 6px 10px;
    font-size: 0.84rem;
  }
  .header-whatsapp-btn {
    padding: 7px 14px;
    font-size: 0.82rem;
  }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-box { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  :root {
    --header-height: 66px;
  }

  .mobile-nav-toggle { display: flex; }

  /* Polished Mobile Drawer */
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-surface-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px 40px;
    gap: 6px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
    overflow-y: auto;
    border-bottom: 1px solid var(--border-medium);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--border-subtle);
  }

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

  /* Mobile Drawer Footer */
  .mobile-drawer-footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-medium);
    gap: 12px;
  }

  .mobile-currency-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
  }

  .mobile-currency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }

  .mobile-currency-grid .currency-btn {
    padding: 10px 14px;
    font-size: 0.85rem;
    justify-content: center;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    background: var(--bg-surface-elevated);
    color: var(--text-secondary);
  }

  .mobile-currency-grid .currency-btn.active {
    background: var(--accent-gradient);
    color: #ffffff;
    border-color: transparent;
  }

  .mobile-drawer-cta {
    width: 100%;
    margin-top: 8px;
  }

  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; }

  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg { width: 28px; height: 28px; }
  .whatsapp-tooltip { display: none; }
}

@media (max-width: 414px) {
  .logo-title { font-size: 1rem; }
  .logo-subtitle { font-size: 0.6rem; }
  .btn-lg { width: 100%; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .about-pillars { grid-template-columns: 1fr; }
  .currency-switcher-group { width: 100%; justify-content: space-around; }
  .currency-btn { padding: 6px 10px; font-size: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .whatsapp-pulse, .pulse-dot { animation: none !important; }
}
