/* ====================
   CSS Variables & Reset
   ==================== */
:root {
  --black-primary: #010814;
  --black-soft: #03132a;
  --text-primary: #f5f7ff;
  --text-secondary: #a7c4ff;
  --accent-gold: #ffe066;
  --accent-blue: #14b7ff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--black-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  margin-top: 80px;
}

/* ====================
   Navigation
   ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(20, 183, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 30px rgba(20, 183, 255, 0.2);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  z-index: 10;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(120deg, #ffe066, #14b7ff, #ffe066);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  animation: logoGlow 4s ease-in-out infinite;
}

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

.logo-accent {
  color: #7dd3ff;
  font-size: 1.1rem;
  filter: drop-shadow(0 0 8px rgba(125, 211, 255, 0.8));
  animation: pulseAccent 2.5s ease-in-out infinite;
}

@keyframes pulseAccent {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.25); opacity: 1; }
}

/* Desktop Navigation */
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* Mobile Menu Button */
.menu-button {
  display: none;
  background: transparent;
  border: none;
  color: var(--accent-blue);
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.menu-button:hover {
  color: var(--text-primary);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--black-soft);
  border-top: 1px solid rgba(20, 183, 255, 0.2);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.mobile-menu.active {
  max-height: 400px;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 2rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
  background: rgba(20, 183, 255, 0.1);
  color: var(--accent-blue);
  border-left-color: var(--accent-blue);
}

/* ====================
   Hero Section
   ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black-primary) 0%, var(--black-soft) 100%);
  padding: 8rem 2rem 4rem;
}

/* Animated Background */
.background-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

.particle-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(20, 183, 255, 0.8), rgba(90, 209, 255, 0.4));
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(20, 183, 255, 0.6);
  filter: blur(0.5px);
  pointer-events: none;
  animation: particleFloat 20s ease-in-out infinite;
}

.particle:nth-child(1) { width: 3px; height: 3px; left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { width: 4px; height: 4px; left: 25%; top: 40%; animation-delay: 1s; }
.particle:nth-child(3) { width: 2px; height: 2px; left: 40%; top: 60%; animation-delay: 2s; }
.particle:nth-child(4) { width: 5px; height: 5px; left: 55%; top: 30%; animation-delay: 3s; }
.particle:nth-child(5) { width: 3px; height: 3px; left: 70%; top: 50%; animation-delay: 4s; }
.particle:nth-child(6) { width: 4px; height: 4px; left: 85%; top: 70%; animation-delay: 0.5s; }
.particle:nth-child(7) { width: 3px; height: 3px; left: 15%; top: 80%; animation-delay: 1.5s; }
.particle:nth-child(8) { width: 2px; height: 2px; left: 60%; top: 15%; animation-delay: 2.5s; }
.particle:nth-child(9) { width: 4px; height: 4px; left: 30%; top: 90%; animation-delay: 3.5s; }
.particle:nth-child(10) { width: 3px; height: 3px; left: 90%; top: 35%; animation-delay: 4.5s; }

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  50% { transform: translateY(-20px) translateX(10px); }
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.blob1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20, 183, 255, 0.4), rgba(15, 58, 122, 0.8));
  top: -200px;
  right: -200px;
  animation: blobFloat1 20s ease-in-out infinite;
}

.blob2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(90, 209, 255, 0.3), rgba(3, 13, 33, 0.9));
  bottom: -200px;
  left: -200px;
  animation: blobFloat2 15s ease-in-out infinite;
}

.blob3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(162, 224, 241, 0.4), rgba(8, 43, 104, 0.85));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blobFloat3 18s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(90deg); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.3) rotate(-90deg); }
}

@keyframes blobFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  33% { transform: translate(-40%, -55%) scale(1.15); }
  66% { transform: translate(-60%, -45%) scale(1.05); }
}

/* Hero Container */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

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

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-shadow: 0 0 25px rgba(20, 183, 255, 0.12);
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.title-line {
  display: block;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.0625rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
}

.btn-primary {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(6, 30, 50, 0.6);
  border-radius: 14px;
  padding: 0.9rem 2.25rem;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 50px rgba(6, 30, 50, 0.6), 0 10px 30px rgba(20,183,255,0.12);
}

.arrow {
  font-size: 1.25rem;
  display: inline-block;
  animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.92);
  border: 1.5px solid rgba(255,255,255,0.08);
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.02);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.12);
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0 0;
  animation: fadeInUp 0.8s ease-out 0.9s both;
}

.stat-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
}

.stat-item h3 {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(90deg, #8ad8ff, #14b7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 6px 18px rgba(20,183,255,0.12));
}

.stat-item p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  z-index: 1;
  animation: fadeIn 1s ease-out 1.5s both, scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-line {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, var(--accent-blue), transparent);
  animation: scrollLineScale 1.5s ease-in-out infinite;
}

@keyframes scrollLineScale {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.5); }
}

/* ====================
   Section Styles
   ==================== */
.section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #020d1f 0%, #010814 100%);
  color: #f5f7ff;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.header,
.header-section {
  text-align: center;
  margin-bottom: 4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.7rem;
  color: var(--accent-blue);
  margin-bottom: 1rem;
  display: block;
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.title,
.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  background: linear-gradient(135deg, #14b7ff, #ffe066);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.subtitle {
  font-size: 1.1rem;
  color: #b0b0b0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* ====================
   About Section
   ==================== */
.mission-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
  text-align: center;
}

.mission-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: missionFloat 3s ease-in-out infinite;
}

@keyframes missionFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mission-box {
  max-width: 700px;
  background: rgba(3, 19, 42, 0.6);
  border: 1px solid rgba(125, 211, 255, 0.15);
  border-radius: 1rem;
  padding: 2rem;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.mission-title {
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  color: var(--accent-gold);
}

.mission-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: rgba(3, 19, 42, 0.5);
  border: 1px solid rgba(125, 211, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: fadeInUp 0.6s ease-out both;
}

.value-card:nth-child(1) { animation-delay: 0.4s; }
.value-card:nth-child(2) { animation-delay: 0.5s; }
.value-card:nth-child(3) { animation-delay: 0.6s; }
.value-card:nth-child(4) { animation-delay: 0.7s; }

.value-card:hover {
  background: rgba(3, 19, 42, 0.8);
  border-color: rgba(125, 211, 255, 0.3);
  box-shadow: 0 8px 32px rgba(20, 183, 255, 0.1);
  transform: translateY(-10px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.value-title {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem 0;
  color: #f5f7ff;
}

.value-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ====================
   Services Section
   ==================== */
.services-section {
  background: linear-gradient(135deg, #020d1f 0%, #010814 50%, #0a1a2e 100%);
}

.grid-wrapper {
  margin-bottom: 100px;
}

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

.service-card {
  position: relative;
  background: rgba(20, 40, 80, 0.3);
  border: 1px solid rgba(20, 183, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.service-card:nth-child(5) { animation-delay: 0.4s; }
.service-card:nth-child(6) { animation-delay: 0.5s; }

.service-card:hover {
  border-color: rgba(20, 183, 255, 0.3);
  box-shadow: 0 8px 32px rgba(20, 183, 255, 0.15);
  transform: translateY(-10px);
}

.card-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #14b7ff 0%, #ffe066 100%);
}

.icon-wrapper {
  margin-bottom: 20px;
}

.service-icon {
  font-size: 48px;
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.service-card:hover .card-title {
  color: #14b7ff;
}

.card-description {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.features-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  font-size: 13px;
  color: #9aa5b1;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  color: #14b7ff;
  transform: translateX(5px);
}

.checkmark {
  color: #14b7ff;
  font-weight: bold;
  font-size: 16px;
}

.price-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid rgba(20, 183, 255, 0.1);
}

.price {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #14b7ff 0%, #ffe066 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-button {
  background: linear-gradient(135deg, #14b7ff 0%, #0085cc 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
}

.service-button:hover {
  box-shadow: 0 8px 24px rgba(20, 183, 255, 0.3);
  transform: translateY(-2px);
}

/* Why Section */
.why-section {
  background: rgba(20, 40, 80, 0.2);
  border: 1px solid rgba(20, 183, 255, 0.1);
  border-radius: 16px;
  padding: 60px 40px;
  backdrop-filter: blur(10px);
  margin-top: 60px;
}

.why-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, #14b7ff 0%, #ffe066 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 50px;
}

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

.why-card {
  text-align: center;
  padding: 30px;
  background: rgba(10, 26, 46, 0.5);
  border: 1px solid rgba(20, 183, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: rgba(20, 183, 255, 0.3);
  transform: translateY(-5px);
  background: rgba(10, 26, 46, 0.8);
}

.why-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.why-card h4 {
  font-size: 18px;
  color: #14b7ff;
  margin-bottom: 10px;
  font-weight: 700;
}

.why-card p {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
}

/* ====================
   Gallery Section
   ==================== */
.gallery-section {
  background: linear-gradient(135deg, #020d1f 0%, #010814 100%);
}

.filter-section {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.filter-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  background: rgba(3, 19, 42, 0.6);
  border: 1px solid rgba(125, 211, 255, 0.2);
  color: var(--text-secondary);
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: rgba(125, 211, 255, 0.4);
  color: #14b7ff;
  transform: scale(1.05);
}

.filter-btn.active {
  background: linear-gradient(135deg, #14b7ff, #ffe066);
  color: #010814;
  border-color: transparent;
}

.gallery-wrapper {
  padding: 2rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  background: rgba(3, 19, 42, 0.5);
  border: 1px solid rgba(125, 211, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fadeIn 0.5s ease-out both;
}

.gallery-item:hover {
  background: rgba(3, 19, 42, 0.8);
  border-color: rgba(125, 211, 255, 0.3);
  box-shadow: 0 8px 32px rgba(20, 183, 255, 0.15);
  transform: scale(1.05);
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(20, 183, 255, 0.9) 0%, rgba(255, 224, 102, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.overlay-content {
  text-align: center;
  color: #010814;
  padding: 1.5rem;
}

.overlay-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.overlay-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.overlay-description {
  font-size: 0.9rem;
  margin: 0 0 1rem 0;
  line-height: 1.4;
  font-weight: 500;
}

.view-btn {
  background: #010814;
  color: #14b7ff;
  border: 2px solid #14b7ff;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: #14b7ff;
  color: #010814;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.1rem;
  margin: 0 0 0.8rem 0;
  color: #f5f7ff;
}

.card-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

.badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-drones { background: rgba(232, 245, 233, 0.2); color: #4caf50; }
.badge-manufacturing { background: rgba(255, 193, 7, 0.2); color: #ffc107; }
.badge-web { background: rgba(227, 242, 253, 0.2); color: #03a9f4; }
.badge-robotics { background: rgba(244, 67, 54, 0.2); color: #f44336; }
.badge-photography { background: rgba(233, 30, 99, 0.2); color: #e91e63; }

/* CTA Section */
.cta-section {
  margin-top: 4rem;
  padding: 3rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(20, 183, 255, 0.1) 0%, rgba(255, 224, 102, 0.1) 100%);
  border: 1px solid rgba(125, 211, 255, 0.2);
  border-radius: 1rem;
}

.cta-section h3 {
  font-size: 1.8rem;
  margin: 0 0 0.5rem 0;
  color: #f5f7ff;
}

.cta-section p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0 0 1.5rem 0;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #14b7ff, #ffe066);
  color: #010814;
  padding: 0.9rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 183, 255, 0.3);
}

/* ====================
   Contact Section
   ==================== */
.contact-section {
  background: linear-gradient(135deg, #020d1f 0%, #010814 50%, #0a1a2e 100%);
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.contact-method {
  position: relative;
  background: rgba(20, 40, 80, 0.2);
  border: 1px solid rgba(20, 183, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: block;
  color: inherit;
}

.contact-method:hover {
  border-color: rgba(20, 183, 255, 0.3);
  background: rgba(20, 40, 80, 0.4);
  box-shadow: 0 8px 24px rgba(20, 183, 255, 0.1);
  transform: translateY(-5px);
}

.method-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.method-title {
  font-size: 16px;
  font-weight: 700;
  color: #14b7ff;
  margin-bottom: 8px;
}

.method-value {
  font-size: 14px;
  color: #b0b0b0;
  margin: 0;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 60px;
}

.form-section {
  background: rgba(20, 40, 80, 0.3);
  border: 1px solid rgba(20, 183, 255, 0.1);
  border-radius: 16px;
  padding: 50px 40px;
  backdrop-filter: blur(10px);
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #14b7ff 0%, #ffe066 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #14b7ff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  background: rgba(10, 26, 46, 0.5);
  border: 1px solid rgba(20, 183, 255, 0.2);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  color: #f5f5f5;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7a8a9e;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(20, 183, 255, 0.5);
  background: rgba(10, 26, 46, 0.8);
  box-shadow: 0 0 20px rgba(20, 183, 255, 0.1);
}

.submit-button {
  background: linear-gradient(135deg, #14b7ff 0%, #0085cc 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.submit-button:hover {
  box-shadow: 0 8px 24px rgba(20, 183, 255, 0.3);
  transform: translateY(-2px);
}

.info-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #14b7ff 0%, #ffe066 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.benefit {
  background: rgba(20, 40, 80, 0.2);
  border: 1px solid rgba(20, 183, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}

.benefit:hover {
  border-color: rgba(20, 183, 255, 0.3);
  background: rgba(20, 40, 80, 0.4);
  transform: translateX(5px);
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: inline-block;
}

.benefit h4 {
  font-size: 16px;
  color: #14b7ff;
  margin-bottom: 8px;
  font-weight: 700;
}

.benefit p {
  font-size: 13px;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.6;
}

.quote-box {
  background: linear-gradient(135deg, rgba(20, 183, 255, 0.1) 0%, rgba(255, 224, 102, 0.05) 100%);
  border: 1px solid rgba(20, 183, 255, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.quote-text {
  font-size: 18px;
  font-style: italic;
  color: #e0e0e0;
  margin-bottom: 15px;
  line-height: 1.8;
}

.quote-author {
  font-size: 13px;
  color: #14b7ff;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
}

/* ====================
   Responsive Design
   ==================== */
@media (max-width: 768px) {
  /* Navigation */
  .nav-links {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  /* Hero */
  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .stats {
    flex-direction: column;
    gap: 2rem;
  }

  .blob1, .blob2 {
    width: 300px;
    height: 300px;
  }

  .blob3 {
    width: 250px;
    height: 250px;
  }

  /* Sections */
  .section {
    padding: 3rem 1rem;
  }

  .title,
  .section-title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .why-section {
    padding: 40px 20px;
  }

  .why-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .image-wrapper {
    height: 200px;
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .cta-section {
    padding: 2rem;
  }

  .cta-section h3 {
    font-size: 1.4rem;
  }

  /* Contact */
  .contact-methods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 50px;
  }

  .main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-section {
    padding: 30px 20px;
  }

  .form-title,
  .info-title {
    font-size: 24px;
  }

  .method-icon {
    font-size: 32px;
  }

  .method-title {
    font-size: 14px;
  }

  .method-value {
    font-size: 12px;
  }

  /* About */
  .mission-box {
    padding: 1.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0.875rem 1rem;
  }

  .logo-text {
    font-size: 1.125rem;
  }

  .title,
  .section-title {
    font-size: 1.75rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 40px;
  }

  .form-section {
    padding: 20px 15px;
  }

  .form-title,
  .info-title {
    font-size: 20px;
  }

  .benefit {
    padding: 20px;
  }

  .benefit h4 {
    font-size: 14px;
  }

  .benefit p {
    font-size: 12px;
  }

  .quote-box {
    padding: 20px;
  }

  .quote-text {
    font-size: 15px;
  }
}
