@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables for Dark and Light Themes */
:root {
  /* Light Theme Variables */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f1f5f9;
  --border-color: #e2e8f0;
  --border-hover: #cbd5e1;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  
  --primary: #2563eb;
  --primary-rgb: 37, 99, 235;
  --primary-hover: #1d4ed8;
  --accent-start: #2563eb;
  --accent-end: #3b82f6;
  
  --success: #10b981;
  --success-bg: #ecfdf5;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(226, 232, 240, 0.8);
  --glass-shadow: rgba(15, 23, 42, 0.05);
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.15);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Dark Theme Variables (Default) */
html.dark, :root:not(.light) {
  --bg-primary: #08090d;
  --bg-secondary: #0f1016;
  --bg-tertiary: #161822;
  --border-color: #1a1c28;
  --border-hover: #2d3147;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-tertiary: #64748b;
  
  --glass-bg: rgba(15, 16, 22, 0.7);
  --glass-border: rgba(31, 33, 48, 0.5);
  --glass-shadow: rgba(0, 0, 0, 0.3);
  
  --success-bg: rgba(16, 185, 129, 0.1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 25px rgba(37, 99, 235, 0.25);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.2s ease, box-shadow 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
}

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

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

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

/* Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.text-gradient-primary {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

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

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse-slow {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

/* Global Layout Components */

/* Loading Screen */
#loading-screen {
  position: fixed;
  inset: 0;
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border-color);
  border-bottom-color: var(--primary);
  border-radius: 50%;
  animation: spin-slow 1s linear infinite;
}

/* Topbar Notification Bar */
.topbar {
  width: 100%;
  height: 40px;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
  display: flex;
  align-items: center;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
}

.topbar-link:hover {
  color: var(--text-primary);
  background-color: var(--bg-tertiary);
}

.theme-toggle-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
}

.theme-toggle-btn:hover {
  color: var(--text-primary);
  background-color: var(--border-color);
  transform: scale(1.05);
}

/* Announcement Banner */
.announcement-bar {
  width: 100%;
  height: 44px;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.announcement-track {
  display: flex;
  width: max-content;
  animation: discount-marquee 25s linear infinite;
}

.announcement-list {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}

.announcement-item {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.announcement-badge {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
}

/* Main Navigation */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 72px;
  border-bottom: 1px solid var(--glass-border);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 42px;
}

.logo-link img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* Theme-based logo switcher logic */
html.dark .logo-link .light-logo, :root:not(.light) .logo-link .light-logo {
  display: block;
}
html.dark .logo-link .dark-logo, :root:not(.light) .logo-link .dark-logo {
  display: none;
}
html.light .logo-link .light-logo {
  display: none;
}
html.light .logo-link .dark-logo {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover, .nav-item:hover .nav-link {
  color: var(--text-primary);
  background-color: var(--bg-tertiary);
}

/* Dropdown Menu styling */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 240px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
}

.dropdown-item:hover {
  color: var(--text-primary);
  background-color: var(--bg-tertiary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-login {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 8px;
}

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

.btn-primary {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Mobile Menu button */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
}

/* Hero Section / Slider */
.hero-slider {
  width: 100%;
  height: 520px;
  position: relative;
  background-color: #050608;
  overflow: hidden;
}

.slider-container {
  height: 100%;
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.slide-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 13, 0.8) 0%, rgba(8, 9, 13, 0.55) 50%, rgba(8, 9, 13, 0.2) 100%);
  z-index: 2;
}

/* Light overlay */
.light .slide-overlay {
  background: linear-gradient(90deg, rgba(248, 250, 252, 0.8) 0%, rgba(248, 250, 252, 0.55) 50%, rgba(248, 250, 252, 0.15) 100%);
}

.slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 680px;
}

.slide-badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  border-radius: 99px;
  margin-bottom: 20px;
}

.slide-title {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
}

.slide-description {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 580px;
}

/* Slider Controls */
.slider-nav-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  background: rgba(15, 16, 22, 0.5);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--glass-border);
}

.light .slider-nav-tabs {
  background: rgba(255, 255, 255, 0.5);
}

.slider-tab {
  padding: 18px 40px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-tertiary);
  border-bottom: 3px solid transparent;
  cursor: pointer;
}

.slider-tab:hover {
  color: var(--text-primary);
}

.slider-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background-color: rgba(37, 99, 235, 0.05);
}

/* Features Grid */
.features-section {
  padding: 80px 0;
}

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

.section-tag {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 700;
}

.section-description {
  color: var(--text-secondary);
  font-size: 16px;
}

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

.feature-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

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

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-description {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Interactive Tabs Section */
.tabs-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.tabs-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
}

.tabs-list {
  display: flex;
  flex-col: column;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.tab-trigger {
  padding: 16px 20px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  text-align: left;
}

.tab-trigger:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

.tab-trigger.active {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.tab-trigger.active::after {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 4px;
  background: var(--primary);
  border-radius: 0 4px 4px 0;
}

.tab-content-wrapper {
  position: relative;
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.tab-text {
  flex: 1;
}

.tab-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tab-subtitle {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.tab-description {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
}

.tab-image {
  max-width: 380px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  display: block;
}

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

/* Package Card Grid */
.packages-section {
  padding: 80px 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  justify-content: center;
}

.package-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.package-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--border-color);
}

.package-card:hover::before {
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
}

.package-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.package-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 11px;
  font-weight: 600;
  background-color: var(--success-bg);
  color: var(--success);
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.package-badge-pulse {
  width: 6px;
  height: 6px;
  background-color: var(--success);
  border-radius: 50%;
  animation: pulse-slow 2s infinite;
}

.package-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.package-location {
  color: var(--text-tertiary);
  font-size: 13px;
  margin-bottom: 16px;
}

.package-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.package-currency {
  font-size: 20px;
  font-weight: 700;
}

.package-price {
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-heading);
}

.package-period {
  color: var(--text-tertiary);
  font-size: 14px;
}

.package-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.spec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.spec-label {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.spec-value {
  font-weight: 600;
  color: var(--text-primary);
}

.btn-order {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
}

.package-card:hover .btn-order {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

/* Tooltip */
.tooltip-container {
  position: relative;
  display: inline-flex;
}

.tooltip-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: help;
}

.tooltip-text {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 400;
  width: 220px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
}

.tooltip-container:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Brand Partners Scroll */
.partners-section {
  padding: 60px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.partners-track {
  display: flex;
  width: max-content;
  gap: 64px;
  animation: discount-marquee 20s linear infinite;
}

.partners-list {
  display: flex;
  align-items: center;
  gap: 64px;
}

.partner-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
}

.partner-logo:hover {
  filter: grayscale(0) opacity(1);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.faq-icon {
  transition: transform 0.2s ease;
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content p {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 14px;
}

/* Product Header / Banner */
.product-hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-color: #050608;
  border-bottom: 1px solid var(--border-color);
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 13, 0.65) 0%, rgba(8, 9, 13, 0.45) 100%);
  z-index: 2;
}

.light .product-hero-overlay {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.6) 0%, rgba(248, 250, 252, 0.45) 100%);
}

.product-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.product-hero-tag {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.product-hero-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
}

.product-hero-desc {
  color: var(--text-secondary);
  font-size: 16px;
}

/* Footer Section */
.main-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Make footer logo clean white in dark mode since background is dark */
html.dark .footer-logo, :root:not(.light) .footer-logo {
  filter: brightness(0) invert(1);
}
html.light .footer-logo {
  filter: none;
}

.footer-brand-text {
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 320px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}

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

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

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-payments {
  display: flex;
  gap: 8px;
}

.footer-payments img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

/* Floating WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  z-index: 1000;
}

.whatsapp-widget:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .slide-title {
    font-size: 34px;
  }
  
  .tabs-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .tabs-list {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  
  .tab-trigger {
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links {
    display: none; /* JS will toggle active class */
  }
  
  .nav-actions {
    display: none;
  }
  
  .hero-slider {
    height: 480px;
  }
  
  .slide-title {
    font-size: 28px;
    text-align: center;
  }
  
  .slide-description {
    font-size: 14px;
    text-align: center;
    margin: 0 auto 24px;
  }
  
  .slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
  }
  
  .slider-tab {
    padding: 14px 20px;
    font-size: 12px;
  }
  
  .tab-content.active {
    flex-direction: column;
    text-align: center;
  }
  
  .tab-image {
    max-width: 100%;
    margin-top: 16px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .topbar-left {
    display: none;
  }
  
  .topbar-content {
    justify-content: flex-end;
  }
}

/* Active Mobile Navigation styling */
.nav-links.mobile-active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 16px;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 1200;
}

.nav-links.mobile-active .nav-dropdown {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  width: 100%;
  box-shadow: none;
  border: none;
  background: transparent;
  padding-left: 24px;
}

/* Pricing Table Styles */
.pricing-table-wrapper {
  width: 100%;
  overflow-x: auto;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  margin-top: 32px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 900px;
}

.pricing-table th {
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  border-bottom: 1px solid var(--border-color);
}

.pricing-table td {
  padding: 18px 24px;
  vertical-align: middle;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr {
  transition: all 0.2s ease;
}

.pricing-table tbody tr:hover {
  background-color: rgba(37, 99, 235, 0.02);
}

/* Package Name Column */
.package-name-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.package-tag {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Featured Badge */
.featured-badge {
  font-size: 10px;
  font-weight: 600;
  background-color: var(--primary);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

/* Specs Styles */
.pricing-table td.bold-spec {
  font-weight: 600;
  color: var(--text-primary);
}

/* Price Column */
.price-col {
  display: inline-flex;
  align-items: baseline;
}

.price-col .currency {
  font-size: 14px;
  font-weight: 700;
  position: relative;
  top: -4px;
}

.price-col .price-val {
  font-size: 20px;
  font-weight: 800;
  font-family: var(--font-heading);
}

.price-col .period {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-left: 2px;
}

/* Table Button */
.btn-table-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
  transition: all 0.2s ease;
  width: 110px;
  cursor: pointer;
}

.btn-table-action:hover {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

/* Featured/Highlighted Row */
.pricing-table tr.featured {
  background-color: rgba(37, 99, 235, 0.04) !important;
  position: relative;
}

.pricing-table tr.featured td {
  border-top: 1px solid rgba(37, 99, 235, 0.15);
  border-bottom: 1px solid rgba(37, 99, 235, 0.15);
}

.pricing-table tr.featured td:first-child {
  border-left: 4px solid var(--primary);
}

.pricing-table tr.featured .package-title {
  color: var(--primary);
}

.pricing-table tr.featured .package-tag {
  color: var(--primary);
}

.pricing-table tr.featured td.bold-spec {
  color: var(--primary);
}

.pricing-table tr.featured .price-col {
  color: var(--primary);
}

.pricing-table tr.featured .price-col .period {
  color: rgba(37, 99, 235, 0.7);
}

.pricing-table tr.featured .btn-table-action {
  background-color: var(--primary);
  color: #ffffff;
  border-color: transparent;
}

.pricing-table tr.featured .btn-table-action:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-glow);
}

html.dark .pricing-table tr.featured, :root:not(.light) .pricing-table tr.featured {
  background-color: rgba(37, 99, 235, 0.08) !important;
}

/* Notice Box / Alert Box */
.notice-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(37, 99, 235, 0.03);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.notice-box svg {
  color: var(--primary);
  flex-shrink: 0;
}

.notice-box a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notice-box a:hover {
  color: var(--primary-hover);
}

html.dark .notice-box {
  background-color: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.25);
}

/* Location Tabs Switcher */
.location-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .location-tabs {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.location-tab-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 16px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.location-tab-btn:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.location-tab-btn.active {
  border: 2px solid var(--primary);
  background-color: rgba(37, 99, 235, 0.02);
  box-shadow: var(--shadow-md), 0 0 15px rgba(37, 99, 235, 0.1);
}

.location-tab-btn.active::after {
  display: none !important;
}

.loc-flag {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  flex-shrink: 0;
}

.de-flag {
  background-color: var(--primary);
}

.tr-flag {
  background-color: #dc2626;
}

.loc-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}

.loc-country {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.loc-city {
  font-size: 12px;
  color: var(--text-tertiary);
}

.loc-ping {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-left: auto;
}

.ping-blue {
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}

.ping-green {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

/* Override pricing table tab display */
.pricing-table-wrapper.tab-content {
  display: none;
}

.pricing-table-wrapper.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* Pricing Table Price adjustments */
.pricing-table .price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.discount-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  margin-bottom: 2px;
}

.discount-badge {
  color: #dc2626;
  font-weight: 700;
}

.old-price {
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.pricing-table tr.featured .old-price {
  color: rgba(37, 99, 235, 0.6);
}

.pricing-table tr.featured .discount-badge {
  color: #dc2626;
}

.current-price {
  display: flex;
  align-items: baseline;
}

.delivery-green {
  color: #22c55e;
  font-weight: 600;
}

