/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --bg-dark: #070b13;
  --bg-card: rgba(15, 23, 42, 0.6);
  --bg-card-hover: rgba(30, 41, 59, 0.8);
  --bg-nav: rgba(7, 11, 19, 0.75);
  --primary: #00f2fe;
  --primary-rgb: 0, 242, 254;
  --secondary: #4facfe;
  --secondary-rgb: 79, 172, 254;
  --accent: #f59e0b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(0, 242, 254, 0.3);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --shadow-glow: 0 0 20px rgba(0, 242, 254, 0.15);
  --shadow-glow-hover: 0 0 30px rgba(0, 242, 254, 0.35);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  overflow-x: hidden;
}

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

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(79, 172, 254, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

/* Background Gradients & Glows */
.bg-glow {
  position: fixed;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(120px);
  opacity: 0.15;
  animation: float-glow 20s infinite alternate;
}

.glow-top-right {
  top: -10%;
  right: -10%;
  background: radial-gradient(circle, var(--primary), var(--secondary));
}

.glow-bottom-left {
  bottom: -10%;
  left: -10%;
  background: radial-gradient(circle, var(--secondary), #7c3aed);
  animation-delay: -5s;
}

@keyframes float-glow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(5%, 5%) scale(1.1);
  }
}

/* Shared Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--text-main);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 12px auto 0;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 16px auto 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #070b13;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.5);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-color);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.1);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  background: #20ba59;
}

/* Sticky Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  height: 70px;
  background: rgba(7, 11, 19, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: var(--shadow-glow);
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  color: #070b13;
  font-size: 20px;
  font-weight: 800;
  box-shadow: var(--shadow-glow);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Navigation Links */
nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

nav a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
}

nav a:hover, nav li.active a {
  color: var(--primary);
  background: rgba(0, 242, 254, 0.05);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  position: absolute;
  left: 8px;
  transition: var(--transition);
}

.mobile-toggle span:nth-child(1) { top: 14px; }
.mobile-toggle span:nth-child(2) { top: 19px; }
.mobile-toggle span:nth-child(3) { top: 24px; }

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
  background-color: var(--primary);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
  background-color: var(--primary);
}

/* 1. HERO SECTION */
#home {
  padding: calc(var(--nav-height) + 60px) 0 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 50px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
}

.hero-badge span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px var(--primary); }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 40%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.hero-tagline {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 550px;
}

.hero-tagline strong {
  color: var(--primary);
  font-weight: 600;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 24px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(79, 172, 254, 0.2));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  animation: float 6s ease-in-out infinite;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}

.hero-glow-card {
  position: absolute;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-hover);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-glow);
}

.hero-glow-card-1 {
  bottom: 20px;
  left: -40px;
  animation: float-reverse 7s ease-in-out infinite;
}

.hero-glow-card-2 {
  top: 40px;
  right: -30px;
  animation: float 5s ease-in-out infinite;
}

.glow-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 242, 254, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
}

.glow-card-text h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
}

.glow-card-text p {
  font-size: 12px;
  color: var(--text-muted);
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-reverse {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(12px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* 2. ABOUT US SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-info h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-info p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 16px;
}

.about-info p strong {
  color: var(--text-main);
}

.about-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.trust-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.trust-badge:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.badge-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.badge-icon-img-box {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  display: inline-block;
}

.trust-badge-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

.trust-badge:hover .trust-badge-img {
  transform: scale(1.08);
  border-color: var(--secondary);
  box-shadow: var(--shadow-glow-hover);
}

.trust-badge h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-badge p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow-hover);
}

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

.service-icon-box {
  width: 70px;
  height: 70px;
  background: rgba(0, 242, 254, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary);
  transition: var(--transition);
  border: 1px solid rgba(0, 242, 254, 0.15);
}

.service-card:hover .service-icon-box {
  background: var(--primary);
  color: #070b13;
  box-shadow: 0 0 20px var(--primary);
  transform: scale(1.05);
}

.service-icon-box svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
}

/* Brands Panel */
.brands-panel {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.brands-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
}

.brand-badge svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.brand-badge:hover {
  transform: translateY(-2px);
  background: rgba(0, 242, 254, 0.08);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-glow);
}

/* Brand Custom Hover Colors */
.brand-apple:hover { border-color: #ffffff; color: #ffffff; background: rgba(255, 255, 255, 0.08); box-shadow: 0 0 15px rgba(255, 255, 255, 0.1); }
.brand-mi:hover { border-color: #ff6700; color: #ff6700; background: rgba(255, 103, 0, 0.08); box-shadow: 0 0 15px rgba(255, 103, 0, 0.1); }
.brand-samsung:hover { border-color: #1428a0; color: #1428a0; background: rgba(20, 40, 160, 0.1); box-shadow: 0 0 15px rgba(20, 40, 160, 0.2); }
.brand-oppo:hover { border-color: #03ff69; color: #03ff69; background: rgba(3, 255, 105, 0.08); box-shadow: 0 0 15px rgba(3, 255, 105, 0.15); }
.brand-vivo:hover { border-color: #008cd6; color: #008cd6; background: rgba(0, 140, 214, 0.08); box-shadow: 0 0 15px rgba(0, 140, 214, 0.15); }
.brand-realme:hover { border-color: #ffc800; color: #ffc800; background: rgba(255, 200, 0, 0.08); box-shadow: 0 0 15px rgba(255, 200, 0, 0.15); }
.brand-iqoo:hover { border-color: #00f2fe; color: #00f2fe; background: rgba(0, 242, 254, 0.08); box-shadow: 0 0 15px rgba(0, 242, 254, 0.15); }
.brand-tecno:hover { border-color: #4facfe; color: #4facfe; background: rgba(79, 172, 254, 0.08); box-shadow: 0 0 15px rgba(79, 172, 254, 0.15); }
.brand-infinix:hover { border-color: #00ff69; color: #00ff69; background: rgba(0, 255, 105, 0.08); box-shadow: 0 0 15px rgba(0, 255, 105, 0.15); }

/* 4. GALLERY SECTION */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: #111827;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item video {
  background-color: #000;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(7, 11, 19, 0.9) 0%, rgba(7, 11, 19, 0.2) 70%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.gallery-overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #070b13;
  font-size: 18px;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-overlay h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  transform: translateY(10px);
  transition: var(--transition);
  color: white;
}

.gallery-overlay p {
  font-size: 14px;
  color: var(--primary);
  transform: translateY(10px);
  transition: var(--transition);
  transition-delay: 0.05s;
  margin-top: 4px;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

.gallery-item:hover .gallery-overlay-icon {
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 8, 15, 0.98);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 20px;
  text-align: center;
}

.lightbox-caption h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.lightbox-caption p {
  font-size: 15px;
  color: var(--primary);
  margin-top: 4px;
}

.lightbox-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
  transition: var(--transition);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--primary);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: var(--transition);
  z-index: 2100;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--primary);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

/* 5. CONTACT US SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-card .contact-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.contact-phone {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  display: block;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-address-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.address-icon {
  font-size: 32px;
  color: var(--primary);
  background: rgba(0, 242, 254, 0.08);
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 242, 254, 0.15);
}

.address-details h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.address-details p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 15px;
}

/* Map Embed Container */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 250px;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(1.1);
}

/* Contact Form */
.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
  position: relative;
}

.contact-form-box h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-form-box p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-input {
  width: 100%;
  background: rgba(7, 11, 19, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: white;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
  background: rgba(7, 11, 19, 0.8);
}

textarea.form-input {
  height: 120px;
  resize: none;
}

.form-label {
  position: absolute;
  left: 20px;
  top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition);
}

/* Floating label effect */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -10px;
  left: 14px;
  font-size: 12px;
  color: var(--primary);
  background-color: var(--bg-dark);
  padding: 0 8px;
  border-radius: 4px;
}

/* Custom placeholder logic to satisfy :placeholder-shown */
.form-input::placeholder {
  color: transparent;
}

/* Success Pop-up */
.success-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--primary);
  box-shadow: var(--shadow-glow-hover);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 242, 254, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  font-weight: bold;
}

.toast-content h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: white;
}

.toast-content p {
  font-size: 13px;
  color: var(--text-muted);
}

/* FOOTER */
footer {
  background: #04060b;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
  position: relative;
  z-index: 10;
}

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

.footer-logo {
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 320px;
}

.footer-links h4,
.footer-hours h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.footer-links h4::after,
.footer-hours h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--primary);
  margin-top: 6px;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-hours p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.footer-hours p span {
  color: var(--text-main);
  font-weight: 500;
}

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

.footer-bottom p {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-bottom p a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.footer-bottom p a:hover {
  color: var(--secondary);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.scroll-top-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.scroll-top-btn:hover {
  background: var(--primary);
  color: #070b13;
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 52px;
  }
  .hero-glow-card-1 {
    left: -10px;
  }
  .hero-glow-card-2 {
    right: -10px;
  }
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-badges {
    order: 2;
  }
  .about-info {
    order: 1;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .lightbox-prev { left: -50px; }
  .lightbox-next { right: -50px; }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }
  section {
    padding: 70px 0;
  }
  .section-title {
    font-size: 32px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-badge {
    margin-bottom: 20px;
  }
  .hero-title {
    font-size: 44px;
  }
  .hero-tagline {
    margin: 0 auto 30px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 20px;
  }
  .hero-glow-card-1 {
    left: 10px;
  }
  .hero-glow-card-2 {
    right: 10px;
  }
  
  /* Mobile Navigation Drawer */
  .mobile-toggle {
    display: block;
  }
  nav {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - var(--nav-height));
    background: rgba(7, 11, 19, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }
  nav.active {
    right: 0;
  }
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  nav a {
    font-size: 18px;
    width: 100%;
    padding: 10px 16px;
  }
  
  .contact-card-row {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .lightbox-prev, .lightbox-next {
    display: none !important; /* Hide navigation buttons on mobile, swipe or close/reopen is preferred */
  }
  .lightbox-close {
    top: -50px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-tagline {
    font-size: 16px;
  }
  .btn {
    width: 100%;
  }
  .about-badges {
    grid-template-columns: 1fr;
  }
  .brands-panel {
    padding: 24px 16px;
  }
  .brand-badge {
    padding: 8px 16px;
    font-size: 13px;
  }
  .contact-form-box {
    padding: 30px 20px;
  }
}
