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

:root {
  /* Color Palette - Light Mode */
  --primary: #0057FF;
  --primary-hover: #003ebd;
  --primary-rgb: 0, 87, 255;
  --secondary: #00D1FF;
  --dark-navy: #0A1633;
  --dark-navy-rgb: 10, 22, 51;
  --bg-primary: #F5F9FF;
  --bg-secondary: #FFFFFF;
  --text-primary: #0A1633;
  --text-secondary: #6B7280;
  --border-color: rgba(0, 87, 255, 0.08);
  --card-bg: #FFFFFF;
  --card-shadow: 0 15px 40px rgba(10, 22, 51, 0.04);
  --card-shadow-hover: 0 20px 45px rgba(0, 87, 255, 0.12);
  --navbar-bg: rgba(245, 249, 255, 0.9);
  --navbar-text: #0A1633;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --preloader-bg: #F5F9FF;
  --white: #FFFFFF;
  --black: #000000;
  
  /* Layout constraints */
  --max-width: 1200px;
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

[data-theme="dark"] {
  /* Color Palette - Dark Mode */
  --bg-primary: #050B14;
  --bg-secondary: #0A1633;
  --text-primary: #FFFFFF;
  --text-secondary: #9CA3AF;
  --border-color: rgba(255, 255, 255, 0.08);
  --card-bg: #101F42;
  --card-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  --card-shadow-hover: 0 20px 45px rgba(0, 87, 255, 0.25);
  --navbar-bg: rgba(5, 11, 20, 0.9);
  --navbar-text: #FFFFFF;
  --glass-bg: rgba(16, 31, 66, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --preloader-bg: #050B14;
}

/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

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

li {
  list-style: none;
}

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

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 1001;
  width: 0%;
  transition: width 0.1s ease-out;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--preloader-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-logo {
  width: 180px;
  height: auto;
  margin-bottom: 30px;
  animation: pulseLogo 2s infinite ease-in-out;
}

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #0043c7);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(0, 87, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 87, 255, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--border-color);
  transform: translateY(-3px);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
  background-color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Ripple effect container */
.ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

/* Containers */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-bg {
  background-color: var(--bg-secondary);
}

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

.section-tag {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 20px;
}

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

/* Glassmorphism utility */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

/* Form Styling */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.15);
}

.form-error-msg {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

/* Header & Sticky Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
}

.header.transparent {
  background-color: transparent;
  box-shadow: none;
}

.header.scrolled {
  background-color: var(--navbar-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  height: 70px;
  box-shadow: 0 10px 30px rgba(10, 22, 51, 0.05);
  border-bottom: 1px solid var(--border-color);
}

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

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

.logo-img {
  height: 48px;
  width: auto;
  transition: height 0.3s ease;
}

.header.scrolled .logo-img {
  height: 40px;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--navbar-text);
  text-transform: uppercase;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--navbar-text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

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

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

/* Theme Toggle Switch */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navbar-text);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.theme-toggle:hover {
  background-color: var(--border-color);
}

.theme-toggle .sun-icon {
  display: none;
}

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

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.menu-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--navbar-text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 87, 255, 0.3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 87, 255, 0.4);
}

/* ---------------------------------------------------- */
/* PAGE: HERO SECTION                                   */
/* ---------------------------------------------------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  background-color: rgba(0, 87, 255, 0.08);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 87, 255, 0.15);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-title span.accent-text {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  z-index: 1;
}

.hero-svg-container {
  width: 100%;
  max-width: 500px;
  position: relative;
}

.hero-bg-shapes {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 87, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ---------------------------------------------------- */
/* SECTION: ABOUT PREVIEW                               */
/* ---------------------------------------------------- */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-preview-img-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
}

.about-preview-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 22, 51, 0.4), transparent);
}

.about-preview-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.about-preview-stat-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.about-preview-stat-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ---------------------------------------------------- */
/* SECTION: SERVICES GRID                               */
/* ---------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary);
  transition: height 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(0, 87, 255, 0.2);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(0, 87, 255, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background-color: var(--primary);
  color: var(--white);
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.service-card-link i {
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-link i {
  transform: translateX(5px);
}

/* ---------------------------------------------------- */
/* SECTION: STATS & WHY CHOOSE US                       */
/* ---------------------------------------------------- */
.stats-banner {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #050b1a 100%);
  color: var(--white);
  padding: 80px 0;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  margin-bottom: 100px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-card {
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.why-feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-feature-item {
  display: flex;
  gap: 20px;
}

.why-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 87, 255, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.why-feature-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-feature-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ---------------------------------------------------- */
/* SECTION: DEVICE PREVIEW                              */
/* ---------------------------------------------------- */
.device-preview-slider {
  margin-top: 50px;
}

.devices-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.device-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.device-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.device-img-box {
  height: 220px;
  background-color: rgba(0, 87, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.device-img-box img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.device-card:hover .device-img-box img {
  transform: scale(1.08);
}

.device-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.device-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.device-brand {
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}

.device-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.device-features {
  margin-bottom: 24px;
}

.device-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.device-feature-item i {
  color: #10B981;
}

.device-spec-summary {
  display: flex;
  border-top: 1px dashed var(--border-color);
  padding-top: 20px;
  margin-top: auto;
  gap: 15px;
}

.device-spec-val {
  flex: 1;
}

.device-spec-val span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.device-spec-val strong {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 600;
}

.device-action-btn {
  margin-top: 24px;
  width: 100%;
}

/* ---------------------------------------------------- */
/* SECTION: TESTIMONIALS SLIDER                        */
/* ---------------------------------------------------- */
.testimonials-slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-size: 5rem;
  color: rgba(0, 87, 255, 0.1);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: serif;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.testimonial-author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--primary);
  font-size: 1.5rem;
  border: 3px solid var(--primary);
}

.testimonial-author-name {
  font-weight: 700;
  font-size: 1.1rem;
}

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

.slider-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: var(--primary);
  width: 30px;
  border-radius: 10px;
}

/* ---------------------------------------------------- */
/* SECTION: FAQ ACCORDION                               */
/* ---------------------------------------------------- */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: var(--card-bg);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 87, 255, 0.2);
}

.faq-header {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 87, 255, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background-color: var(--primary);
  color: var(--white);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content {
  padding: 0 30px 24px 30px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

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

/* ---------------------------------------------------- */
/* SECTION: CALL TO ACTION (CTA)                        */
/* ---------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #002d9c 100%);
  color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 80px 60px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 87, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.1rem;
  margin-bottom: 35px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ---------------------------------------------------- */
/* SECTION: PARTNERS                                    */
/* ---------------------------------------------------- */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  opacity: 0.6;
}

.partner-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: 2px;
}

/* ---------------------------------------------------- */
/* FOOTER                                               */
/* ---------------------------------------------------- */
.footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 80px 0 30px 0;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--footer-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

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

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

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

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 18px;
  border-radius: 50px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  flex-grow: 1;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background-color: var(--primary-hover);
  transform: scale(1.05);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-policy-links {
  display: flex;
  gap: 20px;
}

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

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

/* ---------------------------------------------------- */
/* MODAL: REQUEST A QUOTE                               */
/* ---------------------------------------------------- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 22, 51, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--card-bg);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--primary);
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

/* ---------------------------------------------------- */
/* INTERACTIVE PAGE COMPONENTS                          */
/* ---------------------------------------------------- */

/* --- About Page --- */
.timeline-section {
  position: relative;
  padding: 80px 0;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--card-bg);
  border: 4px solid var(--primary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

.timeline-right::after {
  left: -10px;
}

.timeline-content {
  padding: 24px 30px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}

.timeline-year {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

.team-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.team-img-box {
  height: 280px;
  background-color: rgba(0, 87, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-img-placeholder {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
}

.team-info {
  padding: 24px;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.team-social-icon:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Services Page Detailed Grid --- */
.services-full-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.services-full-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.services-full-item:nth-child(even) {
  direction: rtl;
}

.services-full-item:nth-child(even) .services-full-content {
  direction: ltr;
}

.services-full-media {
  background-color: rgba(0, 87, 255, 0.05);
  height: 350px;
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.7;
}

.services-full-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-full-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 30px;
}

.services-full-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.services-full-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.services-full-feature-item i {
  color: var(--primary);
}

/* --- Devices Page Filter tabs --- */
.devices-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* --- Contact Page Grid --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-block {
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(0, 87, 255, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-info-text p,
.contact-info-text a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-info-text a:hover {
  color: var(--primary);
}

.contact-form-panel {
  background-color: var(--card-bg);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
  background-color: #e5e7eb;
}

.map-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Form success notification styling */
.form-success-banner {
  padding: 20px;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--border-radius-sm);
  color: #065f46;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
