@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================
   CSS VARIABLES — HOLOGRAPHIC LIGHT
   ============================================ */
: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-text: linear-gradient(135deg, #ec4899 0%, #8b5cf6 30%, #3b82f6 60%, #06b6d4 80%, #10b981 100%);

  --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);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  letter-spacing: -0.01em;
  line-height: 1.15;
  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);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 300% 300%;
  animation: holo-shift 3s ease infinite;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  background-size: 300% 300%;
  animation: holo-shift 2s ease infinite;
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #fff 0);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #fff 0);
}

@keyframes holo-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 251, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.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: var(--surface);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--transition);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  min-height: 44px;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
  animation: holo-shift 4s ease infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.4);
}

.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);
}

/* ============================================
   HOLOGRAPHIC DECORATIONS
   ============================================ */

/* Rainbow gradient divider between sections */
.section-divider {
  height: 1px;
  background: var(--gradient);
  background-size: 300% 300%;
  animation: holo-shift 4s ease infinite;
  opacity: 0.35;
  margin: 0;
}

/* Light rays — holographic */
.light-ray {
  position: absolute;
  width: 3px;
  height: 500px;
  background: var(--gradient);
  background-size: 300% 300%;
  animation: holo-shift 6s ease infinite;
  filter: blur(40px);
  opacity: 0.08;
  pointer-events: none;
}

.light-ray-1 {
  top: -100px;
  left: 15%;
  transform: rotate(15deg);
}

.light-ray-2 {
  top: -50px;
  right: 20%;
  transform: rotate(-25deg);
  height: 600px;
}

.light-ray-3 {
  top: 50px;
  left: 50%;
  transform: rotate(20deg);
  height: 400px;
  opacity: 0.05;
}

/* ============================================
   SECTIONS BASE
   ============================================ */
.section {
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 16px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 300% 300%;
  animation: holo-shift 5s ease infinite;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  background: var(--bg);
  overflow: hidden;
}

/* Hero blob decorations */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  pointer-events: none;
  animation: blob-move 8s ease-in-out infinite;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--gradient);
  background-size: 300% 300%;
  animation: holo-shift 6s ease infinite, blob-move 8s ease-in-out infinite;
  top: -150px;
  left: -100px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #10b981);
  background-size: 300% 300%;
  animation: holo-shift 8s ease infinite reverse, blob-move 10s ease-in-out infinite reverse;
  bottom: -100px;
  right: -100px;
}

@keyframes blob-move {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.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);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  background-size: 300% 300%;
  animation: holo-shift 3s ease infinite;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  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;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 300% 300%;
  animation: holo-shift 5s ease infinite;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-section {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Holographic top stripe */
.service-card::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--gradient);
  background-size: 300% 300%;
  animation: holo-shift 4s ease infinite;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Holographic border on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2px solid transparent;
  background: var(--gradient) border-box;
  background-size: 300% 300%;
  animation: holo-shift 4s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 24px;
}

.service-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
}

.service-badge.promo {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
  color: #ec4899;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  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);
  background-size: 300% 300%;
  animation: holo-shift 4s ease infinite;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 16px;
  mix-blend-mode: multiply;
}

.gallery-item:hover::after {
  opacity: 0.4;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ============================================
   TEAM GRID
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-card-photo {
  border-radius: 16px;
  overflow: hidden;
  margin: 16px 16px 0;
  aspect-ratio: 3/4;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.team-card:hover .team-card-photo img {
  transform: scale(1.04);
}

.team-card-body {
  padding: 20px;
}

.team-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.team-card-role {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  display: inline-block;
  background: var(--gradient);
  background-size: 300% 300%;
  animation: holo-shift 5s ease infinite;
  color: #fff;
  margin-bottom: 12px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--surface);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  word-break: break-word;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ============================================
   FEATURES / UTP SECTION
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--gradient);
  background-size: 300% 300%;
  animation: holo-shift 4s ease infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(var(--accent-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   PROMOTIONS SECTION
   ============================================ */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.promo-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  background-size: 300% 300%;
  animation: holo-shift 5s ease infinite;
  opacity: 0.04;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: var(--gradient);
  background-size: 200%;
  animation: holo-shift 3s ease infinite;
  color: #fff;
  position: relative;
}

.promo-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  position: relative;
}

.promo-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(var(--accent-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.contact-info span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  background: #e5e7eb;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(59, 130, 246, 0.05));
}

.map-placeholder p {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand-name {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-gradient-bar {
  height: 3px;
  background: var(--gradient);
  background-size: 300%;
  animation: holo-shift 4s ease infinite;
  margin-bottom: 0;
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  padding: 140px 24px 80px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   SERVICES PAGE — All services list
   ============================================ */
.services-all-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-detail-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.service-detail-card::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--gradient);
  background-size: 300% 300%;
  animation: holo-shift 4s ease infinite;
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-detail-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2px solid transparent;
  background: var(--gradient) border-box;
  background-size: 300% 300%;
  animation: holo-shift 4s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-detail-card:hover::after {
  opacity: 1;
}

.service-detail-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.service-detail-card:hover .service-detail-img img {
  transform: scale(1.05);
}

.service-detail-body {
  padding: 28px;
}

.service-detail-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-detail-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-detail-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--accent-rgb), 0.06);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
}

.service-detail-promo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient);
  background-size: 200%;
  animation: holo-shift 3s ease infinite;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  margin-left: 8px;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-full-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
}

.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-full-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  background-size: 300% 300%;
  animation: holo-shift 4s ease infinite;
  opacity: 0;
  transition: opacity var(--transition);
  mix-blend-mode: multiply;
}

.gallery-full-item:hover::after {
  opacity: 0.35;
}

.gallery-full-item:hover img {
  transform: scale(1.08);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-card > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 100px;
  width: fit-content;
  transition: var(--transition);
  margin-top: 24px;
}

.whatsapp-cta:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

/* ============================================
   SCHEDULE TABLE
   ============================================ */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.schedule-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.schedule-table td:first-child {
  color: var(--text-muted);
  font-weight: 500;
}

.schedule-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--accent);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
}

.about-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.about-highlight::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient);
  background-size: 300%;
  animation: holo-shift 4s ease infinite;
  flex-shrink: 0;
}

/* ============================================
   PSEUDO-ELEMENT DECORATIONS
   ============================================ */
.section::before {
  content: '';
  position: absolute;
  width: 3px;
  height: 500px;
  background: var(--gradient);
  background-size: 300% 300%;
  animation: holo-shift 6s ease infinite;
  filter: blur(40px);
  opacity: 0.07;
  pointer-events: none;
  top: -80px;
  left: 10%;
  transform: rotate(18deg);
  z-index: 0;
}

.section::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 600px;
  background: var(--gradient);
  background-size: 300% 300%;
  animation: holo-shift 8s ease infinite reverse;
  filter: blur(40px);
  opacity: 0.05;
  pointer-events: none;
  top: -50px;
  right: 15%;
  transform: rotate(-22deg);
  z-index: 0;
}

.section-inner {
  position: relative;
  z-index: 1;
}

/* ============================================
   HOVER STATES on cards
   ============================================ */
.feature-card:hover,
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 24px;
  }

  .section {
    padding: 70px 20px;
  }

  .services-grid,
  .services-all-grid,
  .promos-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .gallery-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-accent {
    width: 120px;
    bottom: -16px;
    right: -12px;
  }

  .contact-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-header {
    padding: 110px 20px 60px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .gallery-grid,
  .gallery-full-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat-value {
    font-size: 1.5rem;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .section {
    padding: 56px 16px;
  }
}
