/* ==========================================================================
   BLUE DRAGON ELECTRONICS - HIGH-TECH GAMING & ELECTRONICS STYLESHEET
   Location: Sh Mohammed Ave, Road 87, Riffa, Bahrain
   ========================================================================== */

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

:root {
  /* Core Color Palette */
  --bg-primary: #080B10;
  --bg-dark-navy: #0D1320;
  --bg-charcoal: #171C26;
  --bg-card: rgba(13, 19, 32, 0.85);
  --bg-card-hover: rgba(23, 28, 38, 0.95);
  
  --electric-blue: #1565FF;
  --electric-blue-dark: #0c4ecf;
  --cyan: #00C8FF;
  --cyan-glow: rgba(0, 200, 255, 0.35);
  --blue-glow: rgba(21, 101, 255, 0.35);
  --rgb-accent: #6C4CFF;

  --text-white: #FFFFFF;
  --text-light: #F4F6F8;
  --text-grey: #9BA5B4;
  --text-muted: #6B778C;

  --border-dark: rgba(255, 255, 255, 0.08);
  --border-blue: rgba(21, 101, 255, 0.3);
  --border-cyan: rgba(0, 200, 255, 0.35);
  --border-glow: 0 0 15px rgba(0, 200, 255, 0.2);

  --gradient-blue: linear-gradient(135deg, #1565FF 0%, #00C8FF 100%);
  --gradient-blue-rev: linear-gradient(135deg, #00C8FF 0%, #1565FF 100%);
  --gradient-dark: linear-gradient(180deg, #080B10 0%, #0D1320 100%);
  --gradient-accent: linear-gradient(135deg, #1565FF 0%, #6C4CFF 100%);
  --gradient-card: linear-gradient(145deg, rgba(23, 28, 38, 0.6) 0%, rgba(13, 19, 32, 0.9) 100%);

  /* Typography */
  --font-heading: 'Rajdhani', 'Orbitron', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-tech: 'Orbitron', 'Rajdhani', monospace;

  /* Transitions */
  --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-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base & Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #171C26;
  border-radius: 4px;
  border: 1px solid rgba(21, 101, 255, 0.25);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--electric-blue);
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: var(--transition-fast);
}
a:hover {
  color: #6ce0ff;
  text-decoration: none;
}

p {
  color: var(--text-grey);
  margin-bottom: 1rem;
}

/* Top Bar */
.top-bar {
  background-color: #05070a;
  border-bottom: 1px solid var(--border-dark);
  font-size: 12.5px;
  padding: 8px 0;
  color: var(--text-grey);
}
.top-bar a {
  color: var(--text-grey);
}
.top-bar a:hover {
  color: var(--cyan);
}
.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-right: 18px;
}
.top-bar-item i {
  color: var(--cyan);
  font-size: 13px;
}
.top-bar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-grey);
  transition: var(--transition-fast);
  margin-left: 6px;
}
.top-bar-social a:hover {
  background: var(--gradient-blue);
  color: #fff;
  transform: translateY(-1px);
}

/* Navigation */
.navbar-main {
  background-color: rgba(8, 11, 16, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
  padding: 12px 0;
  transition: all var(--transition-normal);
  z-index: 1040;
}
.navbar-main.scrolled {
  padding: 8px 0;
  background-color: rgba(8, 11, 16, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 1px 0 var(--border-blue);
}
.navbar-brand img {
  height: 48px;
  transition: transform var(--transition-normal);
}
.navbar-brand:hover img {
  transform: scale(1.02);
}
.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--text-light);
  padding: 8px 14px !important;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition-fast);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  transform-origin: center;
  border-radius: 2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--cyan);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}
.navbar-toggler {
  border: 1px solid var(--border-blue);
  color: var(--cyan);
  padding: 6px 10px;
}
.navbar-toggler:focus {
  box-shadow: 0 0 10px var(--cyan-glow);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300C8FF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Custom Buttons */
.btn-tech {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: none;
}
.btn-tech-primary {
  background: var(--gradient-blue);
  color: #fff !important;
  box-shadow: 0 4px 18px var(--blue-glow);
}
.btn-tech-primary:hover {
  background: var(--gradient-blue-rev);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--cyan-glow);
}
.btn-tech-outline {
  background: transparent;
  color: var(--cyan) !important;
  border: 1px solid var(--cyan);
}
.btn-tech-outline:hover {
  background: rgba(0, 200, 255, 0.1);
  color: #fff !important;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.3);
}
.btn-tech-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.btn-tech-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
  color: #fff !important;
}
.btn-tech-dark {
  background: var(--bg-charcoal);
  color: var(--text-light) !important;
  border: 1px solid var(--border-dark);
}
.btn-tech-dark:hover {
  background: #202735;
  border-color: var(--electric-blue);
  color: var(--cyan) !important;
}
.btn-sm-tech {
  padding: 7px 14px;
  font-size: 12.5px;
}

/* Badges */
.badge-tech {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 4px;
}
.badge-condition-new {
  background: rgba(0, 200, 255, 0.15);
  color: #00e1ff;
  border: 1px solid rgba(0, 200, 255, 0.4);
}
.badge-condition-used {
  background: rgba(255, 170, 0, 0.15);
  color: #ffaa00;
  border: 1px solid rgba(255, 170, 0, 0.4);
}
.badge-available {
  background: rgba(37, 211, 102, 0.15);
  color: #38ef7d;
  border: 1px solid rgba(37, 211, 102, 0.4);
}
.badge-accent {
  background: rgba(108, 76, 255, 0.2);
  color: #a48fff;
  border: 1px solid rgba(108, 76, 255, 0.4);
}

/* Section Common Styling */
.section-padding {
  padding: 85px 0;
  position: relative;
}
.section-padding-sm {
  padding: 55px 0;
  position: relative;
}
.section-bg-dark {
  background-color: var(--bg-primary);
}
.section-bg-navy {
  background-color: var(--bg-dark-navy);
}
.section-bg-charcoal {
  background-color: var(--bg-charcoal);
}

.section-header {
  margin-bottom: 45px;
  position: relative;
}
.section-subtitle {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--cyan);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.section-subtitle::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--gradient-blue);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(26px, 3.8vw, 40px);
  line-height: 1.15;
  margin-bottom: 12px;
  font-weight: 800;
}
.section-desc {
  max-width: 650px;
  font-size: 15px;
  color: var(--text-grey);
  margin-bottom: 0;
}
.text-gradient {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glass & Tech Card Style */
.tech-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-blue);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.tech-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-cyan);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 200, 255, 0.15);
}
.tech-card:hover::before {
  opacity: 1;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 75% 40%, rgba(21, 101, 255, 0.18) 0%, rgba(8, 11, 16, 0.95) 70%), url('../images/hero-pc.jpg') center/cover no-repeat;
  padding: 100px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 11, 16, 0.96) 0%, rgba(8, 11, 16, 0.82) 55%, rgba(8, 11, 16, 0.4) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.hero-lead {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-grey);
  max-width: 580px;
  margin-bottom: 30px;
  line-height: 1.55;
}
.hero-badges-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 19, 32, 0.7);
  border: 1px solid var(--border-blue);
  padding: 8px 14px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}
.hero-badge-item i {
  color: var(--cyan);
}
.hero-visual-card {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-cyan);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(21, 101, 255, 0.25);
  background: var(--bg-dark-navy);
}
.hero-visual-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.hero-visual-card:hover img {
  transform: scale(1.03);
}
.hero-floating-stat {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(8, 11, 16, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-blue);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* SECTION 2: INTRO STAT CARDS */
.stat-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
  transition: var(--transition-normal);
  height: 100%;
}
.stat-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.stat-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 10px;
  background: rgba(21, 101, 255, 0.12);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 22px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-grey);
  margin-bottom: 0;
}

/* SECTION 3: CATEGORY CARDS */
.category-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}
.category-img-box {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: #000;
}
.category-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 19, 32, 0.95) 100%);
}
.category-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 200, 255, 0.15);
}
.category-card:hover .category-img-box img {
  transform: scale(1.08);
}
.category-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.category-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.category-desc {
  font-size: 13px;
  color: var(--text-grey);
  margin-bottom: 14px;
  flex: 1;
  line-height: 1.5;
}
.category-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border-dark);
  font-size: 12.5px;
}
.category-link {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition-fast);
}
.category-card:hover .category-link {
  gap: 8px;
  color: #fff;
}

/* SECTION 4: PRODUCT CARDS */
.product-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}
.product-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 200, 255, 0.15);
}
.product-img-box {
  height: 220px;
  background: #06090e;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-box img {
  transform: scale(1.06);
}
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-category {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 5px;
}
.product-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  color: #fff;
}
.product-title a {
  color: #fff;
}
.product-title a:hover {
  color: var(--cyan);
}
.product-desc {
  font-size: 13px;
  color: var(--text-grey);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}
.product-footer {
  padding-top: 14px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-price-label {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SECTION 5: GAMING PC BUILDS */
.build-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}
.build-card.featured-build {
  border-color: var(--electric-blue);
  box-shadow: 0 0 25px rgba(21, 101, 255, 0.25);
}
.build-card:hover {
  border-color: var(--cyan);
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 200, 255, 0.2);
}
.build-img-box {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.build-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.build-card:hover .build-img-box img {
  transform: scale(1.06);
}
.build-header {
  padding: 22px 22px 14px;
  border-bottom: 1px solid var(--border-dark);
}
.build-level {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.build-title {
  font-size: 21px;
  margin-bottom: 8px;
}
.build-rec {
  font-size: 13px;
  color: var(--text-grey);
  line-height: 1.5;
  margin-bottom: 0;
}
.build-specs-list {
  list-style: none;
  padding: 18px 22px;
  margin: 0;
  flex: 1;
}
.build-specs-list li {
  font-size: 13px;
  color: var(--text-light);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}
.build-specs-list li:last-child {
  border-bottom: none;
}
.build-specs-list li i {
  color: var(--cyan);
  font-size: 12px;
}
.build-footer {
  padding: 18px 22px;
  background: rgba(8, 11, 16, 0.6);
  border-top: 1px solid var(--border-dark);
}

/* SECTION 6: BUY & SELL */
.buy-sell-banner {
  background: radial-gradient(circle at 50% 50%, rgba(21, 101, 255, 0.15) 0%, rgba(8, 11, 16, 0.97) 80%), url('../images/buy-sell-bg.jpg') center/cover no-repeat;
  border: 1px solid var(--border-blue);
  border-radius: 16px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}
.trade-card {
  background: rgba(13, 19, 32, 0.85);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
}
.trade-card-buy {
  border-left: 4px solid var(--cyan);
}
.trade-card-sell {
  border-left: 4px solid var(--electric-blue);
}
.trade-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.trade-list li {
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.trade-list li:last-child {
  border-bottom: none;
}
.trade-list li i {
  font-size: 14px;
}

/* SECTION 7: SERVICES */
.service-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 26px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}
.service-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 200, 255, 0.15);
}
.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(21, 101, 255, 0.12);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--cyan);
  margin-bottom: 18px;
  transition: all var(--transition-normal);
}
.service-card:hover .service-icon-box {
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: 0 0 20px var(--cyan-glow);
}
.service-title {
  font-size: 19px;
  margin-bottom: 4px;
}
.service-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-desc {
  font-size: 13.5px;
  color: var(--text-grey);
  margin-bottom: 16px;
  flex: 1;
}

/* SECTION 8: WHY CHOOSE US */
.feature-box {
  display: flex;
  gap: 18px;
  background: var(--gradient-card);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 22px;
  height: 100%;
  transition: var(--transition-normal);
}
.feature-box:hover {
  border-color: var(--border-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(0, 200, 255, 0.1);
  border: 1px solid var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--cyan);
}
.feature-title {
  font-size: 17px;
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.5;
}

/* SECTION 9: REVIEWS */
.rating-highlight-card {
  background: linear-gradient(135deg, rgba(21, 101, 255, 0.15) 0%, rgba(13, 19, 32, 0.95) 100%);
  border: 1px solid var(--border-blue);
  border-radius: 14px;
  padding: 35px 28px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.stars {
  color: #ffb703;
  font-size: 18px;
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.review-quote-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-normal);
}
.review-quote-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-3px);
}
.quote-icon {
  font-size: 28px;
  color: rgba(0, 200, 255, 0.25);
  margin-bottom: 12px;
}
.review-text {
  font-size: 14.5px;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-dark);
  font-size: 12.5px;
}

/* SECTION 10: BRANDS */
.brand-pill {
  background: var(--bg-charcoal);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 14px 18px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-grey);
  transition: var(--transition-normal);
}
.brand-pill i {
  font-size: 18px;
  color: var(--cyan);
}
.brand-pill:hover {
  border-color: var(--border-cyan);
  color: #fff;
  background: rgba(21, 101, 255, 0.15);
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.2);
  transform: translateY(-2px);
}

/* SECTION 11: INSTAGRAM FEED */
.social-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #000;
  display: block;
}
.social-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.social-hover {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 16, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.social-card:hover .social-hover {
  opacity: 1;
}
.social-card:hover .social-img {
  transform: scale(1.08);
}
.social-caption {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.45;
  margin-bottom: 0;
}
.social-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--cyan);
}

/* SECTION 12: OFFERS CARDS */
.offer-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}
.offer-card:hover {
  border-color: var(--cyan);
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 200, 255, 0.2);
}
.offer-img-box {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.offer-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.offer-card:hover .offer-img-box img {
  transform: scale(1.06);
}
.offer-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.offer-title {
  font-size: 18px;
  margin-bottom: 8px;
}
.offer-desc {
  font-size: 13px;
  color: var(--text-grey);
  margin-bottom: 16px;
  flex: 1;
}
.offer-footer {
  padding-top: 14px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* SECTION 13: LOCATION & MAP */
.location-box {
  background: var(--gradient-card);
  border: 1px solid var(--border-blue);
  border-radius: 14px;
  padding: 34px;
  height: 100%;
}
.location-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.location-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(21, 101, 255, 0.15);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 18px;
  flex-shrink: 0;
}
.map-container {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  height: 100%;
  min-height: 380px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(90%);
}

/* SECTION 14: FINAL CTA */
.cta-banner {
  background: radial-gradient(circle at 80% 50%, rgba(0, 200, 255, 0.18) 0%, rgba(8, 11, 16, 0.95) 70%), url('../images/cta-bg.jpg') center/cover no-repeat;
  border: 1px solid var(--border-cyan);
  border-radius: 18px;
  padding: 60px 45px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 200, 255, 0.15);
}

/* INNER PAGE HERO */
.inner-hero {
  background: radial-gradient(circle at 70% 30%, rgba(21, 101, 255, 0.16) 0%, rgba(8, 11, 16, 0.97) 70%), url('../images/cta-bg.jpg') center/cover no-repeat;
  padding: 70px 0 50px;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
}
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 16, 0.85);
}
.inner-hero-content {
  position: relative;
  z-index: 2;
}
.breadcrumb-tech {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.breadcrumb-tech a {
  color: var(--text-grey);
}
.breadcrumb-tech a:hover {
  color: var(--cyan);
}
.breadcrumb-tech span {
  color: var(--cyan);
}

/* PRODUCT DETAILS PAGE */
.product-detail-img-main {
  background: #06090e;
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.product-detail-img-main img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.product-thumbnails {
  display: flex;
  gap: 12px;
}
.product-thumb-item {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: #06090e;
  transition: all var(--transition-fast);
}
.product-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumb-item.active,
.product-thumb-item:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
}
.product-detail-info {
  background: var(--gradient-card);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 32px;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}
.spec-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.spec-table td {
  padding: 10px 14px;
  font-size: 13.5px;
}
.spec-table td.spec-key {
  color: var(--cyan);
  font-weight: 600;
  width: 35%;
  background: rgba(255, 255, 255, 0.02);
}
.spec-table td.spec-val {
  color: var(--text-light);
}

/* FILTER TABS */
.filter-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.filter-btn {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 6px;
  background: var(--bg-charcoal);
  border: 1px solid var(--border-dark);
  color: var(--text-grey);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-blue);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 15px var(--blue-glow);
}

/* GALLERY PAGE */
.gallery-grid-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #000;
  cursor: pointer;
  height: 260px;
}
.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 11, 16, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0.9;
  transition: all var(--transition-normal);
}
.gallery-grid-item:hover img {
  transform: scale(1.08);
}
.gallery-grid-item:hover .gallery-grid-overlay {
  background: linear-gradient(180deg, rgba(21, 101, 255, 0.2) 0%, rgba(8, 11, 16, 0.96) 90%);
}
.gallery-zoom-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.2);
  border: 1px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-normal);
}
.gallery-grid-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* CONTACT FORM */
.contact-form-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-blue);
  border-radius: 14px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}
.form-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.form-control, .form-select {
  background: #090e17;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  border-radius: 6px;
  padding: 11px 14px;
  transition: all var(--transition-fast);
}
.form-control:focus, .form-select:focus {
  background: #0d1422;
  border-color: var(--cyan);
  color: #fff;
  box-shadow: 0 0 12px var(--cyan-glow);
}
.form-select option {
  background: #0d1320;
  color: #fff;
}

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1050;
  display: flex;
  align-items: center;
}
.floating-whatsapp-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-normal);
  text-decoration: none;
}
.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.7);
  color: #fff;
}
.floating-whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(8, 11, 16, 0.92);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid var(--border-cyan);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.floating-whatsapp:hover .floating-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--bg-charcoal);
  border: 1px solid var(--border-blue);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--gradient-blue);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px var(--blue-glow);
}

/* FOOTER */
.footer-main {
  background-color: #040608;
  border-top: 1px solid var(--border-dark);
  padding: 70px 0 0;
  position: relative;
  color: var(--text-grey);
}
.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--electric-blue) 50%, transparent 100%);
}
.footer-logo img {
  height: 48px;
  margin-bottom: 16px;
}
.footer-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--cyan);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 9px;
}
.footer-links a {
  color: var(--text-grey);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all var(--transition-fast);
}
.footer-links a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13.5px;
}
.footer-contact-item i {
  color: var(--cyan);
  margin-top: 4px;
}
.footer-bottom {
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

/* LIGHTBOX MODAL */
.modal-tech .modal-content {
  background: #080B10;
  border: 1px solid var(--border-cyan);
  box-shadow: 0 0 35px rgba(0, 200, 255, 0.3);
  border-radius: 12px;
}
.modal-tech .modal-header {
  border-bottom: 1px solid var(--border-dark);
}
.modal-tech .btn-close {
  filter: invert(1);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 70px 0 50px;
  }
  .hero-visual-card {
    margin-top: 40px;
  }
  .hero-visual-card img {
    height: 380px;
  }
  .navbar-collapse {
    background: #0b101a;
    border: 1px solid var(--border-blue);
    border-radius: 10px;
    padding: 16px;
    margin-top: 12px;
  }
  .navbar-nav .nav-link {
    padding: 8px 10px !important;
  }
  .navbar-nav .nav-link::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }
  .top-bar {
    display: none;
  }
  .floating-whatsapp-tooltip {
    display: none;
  }
  .buy-sell-banner {
    padding: 30px 20px;
  }
  .cta-banner {
    padding: 40px 24px;
  }
}
