/* ═══════════════════════════════════════════════════
   HOLOGRAPHIC LIGHT — erik.doktor.magnat
   Style 19: White + Rainbow Holographic Accents
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@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);
  --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 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);
  --gradient: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6, #06b6d4, #10b981);
  --gradient-reverse: linear-gradient(315deg, #ec4899, #8b5cf6, #3b82f6, #06b6d4, #10b981);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  letter-spacing: -0.01em;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ── Text Safety ── */
.service-card,
.team-card,
.hero h1,
.section-header h2,
.section-header p {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ── Holographic Gradient Text ── */
.gradient-text {
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: holographicShift 6s ease infinite;
}

@keyframes holographicShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── Rainbow Divider ── */
.holo-divider {
  height: 1px;
  background: var(--gradient);
  background-size: 200% 100%;
  animation: holographicShift 4s ease infinite;
  border: none;
  margin: 0;
}

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-logo {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 28px;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: holographicShift 3s ease infinite;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(var(--bg-rgb), 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid transparent;
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
              var(--gradient) border-box;
  background-size: 100% 100%, 200% 200%;
  animation: holographicShift 6s ease infinite;
}

.nav-brand span {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  background-size: 200% 100%;
  animation: holographicShift 3s ease infinite;
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: holographicShift 6s ease infinite;
  color: #fff;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 44px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.3);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(var(--bg-rgb), 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 28px;
  color: var(--text);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text);
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}

/* Hero CSS-only holographic background */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: holographicShift 8s ease infinite;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: var(--gradient-reverse);
  background-size: 200% 200%;
  animation: holographicShift 10s ease infinite reverse;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.06;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 36px;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: holographicShift 6s ease infinite;
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero photo showcase */
.hero-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 32px;
  border: 3px solid transparent;
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
              var(--gradient) border-box;
  background-size: 100% 100%, 200% 200%;
  animation: holographicShift 6s ease infinite;
  box-shadow: var(--shadow-lg);
}

/* ══════════════════════════════════════════════
   SECTIONS (General)
   ══════════════════════════════════════════════ */
.section {
  position: relative;
  padding: 100px 24px;
  overflow: visible;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Holographic Light Rays (section decoration) */
.section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -100px;
  width: 300px;
  height: 2px;
  background: var(--gradient);
  background-size: 200% 100%;
  animation: holographicShift 5s ease infinite;
  filter: blur(40px);
  opacity: 0.08;
  transform: rotate(20deg);
  pointer-events: none;
}

.section::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: -80px;
  width: 250px;
  height: 2px;
  background: var(--gradient-reverse);
  background-size: 200% 100%;
  animation: holographicShift 7s ease infinite reverse;
  filter: blur(40px);
  opacity: 0.06;
  transform: rotate(-15deg);
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  min-height: 44px;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gradient);
  background-size: 200% 200%;
  animation: holographicShift 6s ease infinite;
  color: #fff;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  position: relative;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.35);
}

/* ══════════════════════════════════════════════
   SERVICE CARDS
   ══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
}

/* Holographic gradient strip on top */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  background-size: 200% 100%;
  animation: holographicShift 4s ease infinite;
  border-radius: var(--radius) var(--radius) 0 0;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
              var(--gradient) border-box;
  background-size: 100% 100%, 200% 200%;
  animation: holographicShift 4s ease infinite;
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  overflow-wrap: break-word;
  word-break: break-word;
}

.service-card-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
  transition: gap var(--transition);
}

.service-card-link:hover {
  gap: 12px;
}

/* ══════════════════════════════════════════════
   TEAM CARDS
   ══════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: all var(--transition);
  overflow-wrap: break-word;
  word-break: break-word;
}

.team-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
              var(--gradient) border-box;
  background-size: 100% 100%, 200% 200%;
  animation: holographicShift 4s ease infinite;
  box-shadow: var(--shadow-lg);
}

.team-card-photo {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid transparent;
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
              var(--gradient) border-box;
  background-size: 100% 100%, 200% 200%;
  animation: holographicShift 6s ease infinite;
}

.team-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-card-role {
  font-size: 14px;
  font-weight: 600;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: holographicShift 6s ease infinite;
}

.team-card-spec {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Team card without photo */
.team-card-initials {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 48px;
  color: #fff;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: holographicShift 6s ease infinite;
}

/* ══════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
  mix-blend-mode: overlay;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 0.4;
}

/* ══════════════════════════════════════════════
   USP / ADVANTAGES
   ══════════════════════════════════════════════ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.usp-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  background-size: 200% 100%;
  animation: holographicShift 4s ease infinite;
  border-radius: var(--radius) var(--radius) 0 0;
}

.usp-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
              var(--gradient) border-box;
  background-size: 100% 100%, 200% 200%;
  animation: holographicShift 4s ease infinite;
  box-shadow: var(--shadow-lg);
}

.usp-card-number {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 48px;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: holographicShift 6s ease infinite;
  line-height: 1;
  margin-bottom: 16px;
}

.usp-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.usp-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  background: var(--surface);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: holographicShift 8s ease infinite;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.06;
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════
   CONTACTS
   ══════════════════════════════════════════════ */
.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  list-style: none;
}

.contact-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.contact-item:hover {
  transform: translateY(-4px);
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
              var(--gradient) border-box;
  background-size: 100% 100%, 200% 200%;
  animation: holographicShift 4s ease infinite;
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: holographicShift 6s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}

.contact-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-info p,
.contact-info a {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-info a:hover {
  color: var(--accent);
}

/* Map */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 400px;
  margin-top: 48px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  transition: color var(--transition);
}

.footer-social a:hover {
  color: #fff;
}

/* ══════════════════════════════════════════════
   FLOATING WHATSAPP
   ══════════════════════════════════════════════ */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  color: #fff;
  font-size: 28px;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ══════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════ */
.page-hero {
  padding: 140px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: holographicShift 8s ease infinite;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.06;
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   SERVICES PAGE — Full cards
   ══════════════════════════════════════════════ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-full-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
}

.service-full-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  background-size: 200% 100%;
  animation: holographicShift 4s ease infinite;
  border-radius: var(--radius) var(--radius) 0 0;
  z-index: 2;
}

.service-full-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
              var(--gradient) border-box;
  background-size: 100% 100%, 200% 200%;
  animation: holographicShift 4s ease infinite;
  box-shadow: var(--shadow-lg);
}

.service-full-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-full-body {
  padding: 28px;
}

.service-full-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.service-full-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid,
  .services-full-grid,
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    padding: 120px 20px 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .hero-photo {
    width: 140px;
    height: 140px;
  }

  .section {
    padding: 60px 20px;
  }

  .services-grid,
  .services-full-grid,
  .usp-grid,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .page-hero {
    padding: 120px 20px 40px;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .map-container {
    height: 280px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    max-width: 320px;
  }

  .nav-brand span {
    font-size: 15px;
  }

  .service-card-img {
    height: 180px;
  }

  .service-full-img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .hero-stat-value {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 26px;
  }
}
