/* ================================================================
   Dr. Kamchiev — Holographic Light Design System
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ----------------------------------------------------------------
   CSS Variables
   ---------------------------------------------------------------- */
:root {
  --bg: #fafbff;
  --surface: #ffffff;
  --accent: #8b5cf6;
  --accent-hover: #7c3aed;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: rgba(139, 92, 246, 0.1);
  --gradient: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6, #06b6d4, #10b981);
  --gradient-subtle: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(139,92,246,0.15), rgba(59,130,246,0.15), rgba(6,182,212,0.15), rgba(16,185,129,0.15));
  --accent-rgb: 139, 92, 246;
  --bg-rgb: 250, 251, 255;
  --heading-font: 'Outfit', sans-serif;
  --body-font: 'Inter', sans-serif;
  --heading-weight: 700;
  --body-weight: 400;
  --radius: 20px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(139, 92, 246, 0.08);
  --shadow-lg: 0 12px 48px rgba(139, 92, 246, 0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------------------
   Reset & Base
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ----------------------------------------------------------------
   Typography
   ---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  line-height: 1.2;
  word-break: break-word;
  overflow-wrap: break-word;
}

.service-card, .team-card, .hero h1, .section-header h2 {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ----------------------------------------------------------------
   Preloader
   ---------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  position: relative;
}

.preloader-ring {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: var(--gradient) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: spin 1.2s linear infinite;
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes spin {
  to { transform: translateX(-50%) rotate(360deg); }
}

.preloader-text {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ----------------------------------------------------------------
   Navigation
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 24px;
  background: rgba(var(--bg-rgb), 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav.scrolled {
  padding: 8px 24px;
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  background: var(--gradient) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 2px;
  transition: var(--transition);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  line-height: 1.2;
}

.nav-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.06);
}

.nav-cta {
  padding: 10px 20px;
  background: var(--gradient);
  color: #fff !important;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.3);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.burger:hover {
  background: rgba(var(--accent-rgb), 0.06);
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(var(--bg-rgb), 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 100px 24px 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}

.mobile-menu .nav-link {
  font-size: 22px;
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--text);
  padding: 14px 24px;
  width: 100%;
  text-align: center;
  border-radius: var(--radius);
}

.mobile-menu .nav-link:hover {
  background: rgba(var(--accent-rgb), 0.06);
  color: var(--accent);
}

.mobile-menu .nav-cta {
  font-size: 18px;
  padding: 16px 40px;
  margin-top: 12px;
}

/* ----------------------------------------------------------------
   Section Base
   ---------------------------------------------------------------- */
.section {
  padding: 80px 24px;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  margin-bottom: 16px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Rainbow divider */
.section-divider {
  width: 100%;
  height: 1px;
  background: var(--gradient);
  opacity: 0.25;
  margin: 0;
}

/* Section shape decorations */
.section-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  filter: blur(40px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.section > .section-inner {
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------------
   Hero Section
   ---------------------------------------------------------------- */
.hero {
  min-height: 100svh;
  padding: 100px 24px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(139,92,246,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 80% 80%, rgba(59,130,246,0.06) 0%, transparent 50%),
              radial-gradient(ellipse 50% 50% at 20% 60%, rgba(236,72,153,0.05) 0%, transparent 50%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--gradient);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  bottom: -50px;
  left: -50px;
  animation-delay: -4s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: 50px;
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gradient);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.1;
  margin-bottom: 24px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero h1 .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-num {
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-wrap {
  position: relative;
  display: inline-block;
}

.hero-photo-frame {
  width: 380px;
  height: 480px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background: var(--gradient);
  padding: 3px;
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: var(--gradient);
  animation: borderRotate 4s linear infinite;
  z-index: 0;
}

.hero-photo-inner {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes borderRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-float-card-1 {
  bottom: 60px;
  left: -40px;
  animation: floatCard1 4s ease-in-out infinite;
}

.hero-float-card-2 {
  top: 40px;
  right: -30px;
  animation: floatCard2 5s ease-in-out infinite;
}

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatCard2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.float-card-text strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.float-card-text span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ----------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  min-height: 44px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid rgba(var(--accent-rgb), 0.3);
}

.btn-outline:hover {
  background: rgba(var(--accent-rgb), 0.06);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   Service Cards
   ---------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  word-break: break-word;
  overflow-wrap: break-word;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  outline: 2px solid transparent;
  background-clip: padding-box;
}

.service-card:hover::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  border-radius: calc(var(--radius) + 2px);
  z-index: -1;
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.service-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.service-card-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}

.service-card-link:hover {
  gap: 10px;
}

.service-card-link::after {
  content: '→';
}

/* ----------------------------------------------------------------
   Gallery Grid
   ---------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: overlay;
  border-radius: var(--radius);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 0.5;
}

/* ----------------------------------------------------------------
   Team Grid
   ---------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  word-break: break-word;
  overflow-wrap: break-word;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
}

.team-card-body {
  padding: 24px;
}

.team-card-name {
  font-family: var(--heading-font);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.team-card-role {
  font-size: 13px;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-card-spec {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   CTA Section
   ---------------------------------------------------------------- */
.cta-section {
  background: var(--text);
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.cta-section .section-shape {
  opacity: 0.15;
}

.cta-section-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  margin-bottom: 20px;
  word-break: break-word;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--text);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.2);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   Sticky Bottom Bar
   ---------------------------------------------------------------- */
.sticky-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background: rgba(var(--bg-rgb), 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 60px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  white-space: nowrap;
}

.sticky-bar-text {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  display: none;
}

.sticky-bar .btn {
  padding: 10px 22px;
  font-size: 14px;
}

/* ----------------------------------------------------------------
   Contact Section
   ---------------------------------------------------------------- */
.contact-section {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--accent-rgb), 0.2);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}

.contact-item-text span {
  font-size: 13px;
  color: var(--text-muted);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  padding: 40px;
}

.map-placeholder p {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ----------------------------------------------------------------
   UTP / Features Section
   ---------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-num {
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.feature-title {
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  word-break: break-word;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   About Section
   ---------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  max-height: 500px;
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-img-badge strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-img-badge span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.about-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 20px;
  word-break: break-word;
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.about-tag {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
}

/* ----------------------------------------------------------------
   Page Hero (inner pages)
   ---------------------------------------------------------------- */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(139,92,246,0.07) 0%, transparent 70%);
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 20px;
  word-break: break-word;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   Services Page Full List
   ---------------------------------------------------------------- */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ----------------------------------------------------------------
   Gallery Page Full
   ---------------------------------------------------------------- */
.gallery-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-full .gallery-item {
  aspect-ratio: 4/3;
}

/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */
.footer {
  background: var(--text);
  padding: 60px 24px 32px;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand-text .footer-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
}

.footer-brand-text .footer-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.footer-social-link:hover {
  background: rgba(var(--accent-rgb), 0.3);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--gradient);
  opacity: 0.2;
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-copy span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ----------------------------------------------------------------
   Scroll to top
   ---------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 800;
  border: none;
  color: #fff;
  font-size: 20px;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
}

/* ----------------------------------------------------------------
   Light Rays Decoration
   ---------------------------------------------------------------- */
.light-ray {
  position: absolute;
  height: 2px;
  background: var(--gradient);
  filter: blur(4px);
  opacity: 0.08;
  pointer-events: none;
}

/* ----------------------------------------------------------------
   Gradient Text Utility
   ---------------------------------------------------------------- */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ----------------------------------------------------------------
   Responsive — Tablet
   ---------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-photo-frame {
    width: 280px;
    height: 360px;
  }

  .hero-float-card-1 {
    left: 0;
  }

  .hero-float-card-2 {
    right: 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/* ----------------------------------------------------------------
   Responsive — Mobile
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero-photo-frame {
    width: 220px;
    height: 280px;
    border-radius: 24px;
  }

  .hero-float-card {
    display: none;
  }

  .section {
    padding: 60px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-badge {
    right: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .gallery-full {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-bar {
    bottom: 12px;
    padding: 8px 16px;
    gap: 8px;
  }

  .sticky-bar .btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-full {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    gap: 20px;
  }
}
