/* ============================================
   IMPLANTATAS — Light Neon Style
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #f4f5fb;
  --bg-rgb: 244, 245, 251;
  --surface: rgba(255, 255, 255, 0.8);
  --accent: #00e5ff;
  --accent-rgb: 0, 229, 255;
  --accent-hover: #00b8d4;
  --accent-secondary: #b388ff;
  --accent-tertiary: #ff4081;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: rgba(0, 229, 255, 0.15);
  --gradient: linear-gradient(135deg, #00e5ff, #b388ff, #ff4081);
  --heading-font: 'Orbitron', sans-serif;
  --body-font: 'Inter', sans-serif;
  --heading-weight: 700;
  --body-weight: 400;
  --radius: 20px;
  --radius-sm: 10px;
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.3);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(var(--bg-rgb), 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: 0 4px 30px rgba(var(--accent-rgb), 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.2);
}

.nav-brand-name {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.6);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--accent-rgb), 0.08);
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    color: var(--accent) !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    white-space: nowrap;
  }

  .nav-cta:hover {
    background: var(--accent) !important;
    color: var(--bg) !important;
    -webkit-text-fill-color: var(--bg) !important;
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.4);
  }

  .nav-cta::after {
    display: none !important;
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 101;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: rgba(var(--bg-rgb), 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid var(--border);
  z-index: 99;
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--accent);
  padding-left: 8px;
}

.mobile-menu .btn {
  margin-top: 24px;
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav-links {
    display: none;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  min-height: 44px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.4);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 35px rgba(var(--accent-rgb), 0.65);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.4);
}

.btn-outline:hover {
  background: rgba(var(--accent-rgb), 0.08);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.2);
  transform: translateY(-2px);
}

/* ============================================
   SECTION BASE
   ============================================ */
.section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-heading, 0.04em);
  color: var(--text);
  margin-bottom: 16px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   DIVIDERS
   ============================================ */
.divider {
  height: 1px;
  background: var(--gradient);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.3);
  margin: 0;
  opacity: 0.4;
}

/* Section texture - dot grid */
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(var(--accent-rgb), 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   NEON BLOBS (section-shapes)
   ============================================ */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.blob-cyan {
  background: rgba(0, 229, 255, 0.15);
}

.blob-purple {
  background: rgba(179, 136, 255, 0.15);
}

.blob-pink {
  background: rgba(255, 64, 129, 0.12);
}

.blob-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation: float1 28s ease-in-out infinite;
}

.blob-2 {
  width: 350px;
  height: 350px;
  top: 50%;
  right: -80px;
  animation: float2 25s ease-in-out infinite;
}

.blob-3 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: 30%;
  animation: float3 30s ease-in-out infinite;
}

.blob-4 {
  width: 320px;
  height: 320px;
  top: 30%;
  left: 20%;
  animation: float1 26s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-25px, 20px) scale(1.08); }
  66% { transform: translate(15px, -15px) scale(0.97); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, 25px) scale(1.04); }
  66% { transform: translate(-30px, -10px) scale(0.96); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Hero dot-grid decor */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(var(--accent-rgb), 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-blob-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  background: rgba(0, 229, 255, 0.12);
  border-radius: 50%;
  filter: blur(80px);
  animation: float1 28s ease-in-out infinite;
}

.hero-blob-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -80px;
  background: rgba(179, 136, 255, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  animation: float2 25s ease-in-out infinite;
}

.hero-blob-3 {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 40%;
  left: 40%;
  background: rgba(255, 64, 129, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  animation: float3 30s ease-in-out infinite;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-stat {
  background: var(--surface);
  padding: 24px 16px;
  text-align: center;
}

.hero-stat-value {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Hero card (glassmorphic) */
.hero-card {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-top: 48px;
}

.hero-photo-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-height: 360px;
}

.hero-photo-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.hero-photo-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--accent-rgb), 0.15) 0%, transparent 60%);
  border-radius: var(--radius-sm);
  pointer-events: none;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  border-top-color: var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Gradient border-top */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(var(--accent-rgb), 0.15), var(--shadow-lg);
  border-color: rgba(var(--accent-rgb), 0.3);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 24px;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.service-card h3 {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  color: var(--text);
  overflow-wrap: break-word;
  word-break: break-word;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-card-tag {
  display: inline-block;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.15);
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: var(--transition);
  border-radius: 12px;
}

.gallery-item:hover .gallery-item-overlay {
  background: linear-gradient(to top,
    rgba(var(--accent-rgb), 0.3) 0%,
    rgba(179, 136, 255, 0.15) 50%,
    transparent 100%);
  box-shadow: inset 0 0 0 2px rgba(var(--accent-rgb), 0.4);
}

.gallery-item-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.4);
  pointer-events: none;
}

.gallery-item:hover .gallery-item-glow {
  opacity: 1;
}

/* ============================================
   TEAM GRID
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow-wrap: break-word;
  word-break: break-word;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  z-index: 1;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(var(--accent-rgb), 0.15);
}

.team-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.team-card-body {
  padding: 20px 16px;
}

.team-card h3 {
  font-family: var(--heading-font);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.team-card-role {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg,
    rgba(var(--accent-rgb), 0.06) 0%,
    rgba(179, 136, 255, 0.06) 50%,
    rgba(255, 64, 129, 0.04) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.cta-section h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.cta-section p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   ABOUT / UTP SECTION
   ============================================ */
.utp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.utp-card {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow);
  overflow-wrap: break-word;
  word-break: break-word;
}

.utp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  border-radius: var(--radius) var(--radius) 0 0;
}

.utp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(var(--accent-rgb), 0.12);
}

.utp-number {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}

.utp-card h3 {
  font-family: var(--heading-font);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.utp-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   CONTACTS SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.contact-item:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.1);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.contact-value a {
  color: var(--accent);
  transition: var(--transition);
}

.contact-value a:hover {
  color: var(--accent-hover);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 380px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-placeholder {
  text-align: center;
  color: var(--text-muted);
}

.map-placeholder p {
  font-size: 0.875rem;
  margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: rgba(var(--bg-rgb), 0.9);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-brand img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(var(--accent-rgb), 0.3);
}

.footer-brand-name {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer-links-title {
  font-family: var(--heading-font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.4);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(var(--accent-rgb), 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb-sep {
  opacity: 0.4;
}

/* ============================================
   SERVICES PAGE — Full List
   ============================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-full-card {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow-wrap: break-word;
  word-break: break-word;
}

.service-full-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  z-index: 1;
}

.service-full-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(var(--accent-rgb), 0.15);
}

.service-full-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.service-full-card-img-placeholder {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg,
    rgba(var(--accent-rgb), 0.06),
    rgba(179, 136, 255, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.service-full-card-body {
  padding: 28px;
}

.service-full-card h3 {
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.service-full-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ============================================
   GALLERY PAGE — Carousel
   ============================================ */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-page-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-page-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-page-item:hover {
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.3);
}

.gallery-page-item:hover img {
  transform: scale(1.04);
}

/* ============================================
   NEON SWIPER CAROUSEL
   ============================================ */
.neon-carousel-wrap {
  padding: 32px 0 64px;
  position: relative;
}

.neon-carousel-wrap .swiper {
  padding: 20px 40px 60px !important;
  overflow: visible !important;
}

.neon-carousel-wrap .swiper-slide {
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.neon-carousel-wrap .swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.neon-carousel-wrap .swiper-slide-active {
  box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.3), 0 20px 60px rgba(0,0,0,0.12);
}

.neon-carousel-wrap .swiper-pagination-bullet {
  background: var(--text-muted);
  opacity: 0.4;
  transition: var(--transition);
}

.neon-carousel-wrap .swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
  box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.6);
  width: 20px;
  border-radius: 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .footer-top > *:first-child {
    grid-column: 1 / -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 72px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stat {
    padding: 16px 8px;
  }

  .hero-stat-value {
    font-size: 1.3rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-full-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .utp-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .page-hero {
    padding: 100px 0 60px;
  }

  .neon-carousel-wrap .swiper-slide img {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1px;
  }
}

/* ============================================
   UTILITY
   ============================================ */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.neon-line {
  height: 1px;
  background: var(--gradient);
  opacity: 0.3;
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.2);
  margin: 0;
}
