/* ═══════════════════════════════════════════════════
   PRO Маляр — Dark Luxury Theme
   Auto Body & Paint, Bishkek
   ═══════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────── */
:root {
  --bg: #0d0d0d;
  --surface: #1a1a1a;
  --accent: #c9a84c;
  --accent-hover: #dfc06a;
  --text: #f0ece4;
  --text-muted: #8a8578;
  --border: rgba(201, 168, 76, 0.2);
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Inter', sans-serif;
  --base-size: 17px;
  --radius: 8px;
  --nav-blur: 8px;
}

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: var(--base-size);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body-font);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4 {
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { color: var(--text-muted); }

/* ── Noise Texture Overlay (section-texture) ──────── */
.noise-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.noise-texture { position: relative; }
.noise-texture > * { position: relative; z-index: 1; }

/* ── Gold L-Corner Frames (section-shapes) ────────── */
.gold-corners { position: relative; }
.gold-corners::before,
.gold-corners::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: rgba(201, 168, 76, 0.3);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}
.gold-corners::before {
  top: 20px;
  left: 20px;
  border-width: 1px 0 0 1px;
}
.gold-corners::after {
  bottom: 20px;
  right: 20px;
  border-width: 0 1px 1px 0;
}

/* ── Diamond Divider ──────────────────────────────── */
.diamond-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 2rem 0;
}
.diamond-divider::before,
.diamond-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
.diamond-divider span {
  color: var(--accent);
  font-size: 0.6rem;
  opacity: 0.6;
  line-height: 1;
}

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(var(--nav-blur));
  -webkit-backdrop-filter: blur(var(--nav-blur));
  border-bottom: 1px solid var(--border);
  transition: backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease, background 0.4s ease;
}
.nav.scrolled {
  --nav-blur: 20px;
  background: rgba(13, 13, 13, 0.9);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-brand img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1px solid var(--border);
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
}
.nav-brand-name {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}
.nav-brand-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--text);
  transition: color 0.3s ease;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav a.active { color: var(--accent); }

/* ── Hero Section ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /* CSS gradient background — NO photo */
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(26, 26, 26, 1) 0%, rgba(13, 13, 13, 1) 100%);
}

/* Hero watermark letter (hero-decor) */
.hero-watermark {
  position: absolute;
  font-family: var(--heading-font);
  font-size: 25vw;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.03;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

/* Hero cursor glow */
.hero-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
}
.hero:hover .hero-glow { opacity: 1; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem 1.5rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.5rem;
  background: rgba(201, 168, 76, 0.05);
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Hero photo showcase — real photos as CONTENT, not background */
.hero-photos {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 2.5rem;
}
.hero-photos img {
  width: 120px;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border);
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero-photos img:hover {
  opacity: 1;
  transform: translateY(-4px);
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.9rem 2rem;
  min-height: 48px;
  min-width: 44px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

/* Shimmer effect on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: none;
}
.btn:hover::before {
  animation: shimmer 0.6s ease forwards;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* ── Section Layout ───────────────────────────────── */
.section {
  padding: 5rem 1.5rem;
}
.section-dark {
  background: var(--surface);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  margin-bottom: 0.8rem;
}
.section-header p {
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ── Service Cards ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Featured first card — spans 2 columns */
.service-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.service-card.featured .service-img {
  height: 100%;
  min-height: 280px;
}
.service-card.featured .service-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border-top: 2px solid var(--accent);
  /* card-decor: inner gradient */
  background-image: linear-gradient(180deg, var(--surface) 0%, rgba(255,255,255,0.02) 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-body {
  padding: 1.5rem;
}
.service-body h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}
.service-body p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.service-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(201, 168, 76, 0.1);
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
}

/* No-photo service card placeholder */
.service-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(201, 168, 76, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.15;
}

/* ── Stats Section ────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item {
  padding: 2rem 1rem;
}
.stat-number {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Gallery Grid ─────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
/* First photo large — span 2x2 */
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  /* clip-path reveal on scroll */
  clip-path: inset(0);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: transform 0.4s ease;
}
.gallery-item:first-child img {
  aspect-ratio: auto;
  min-height: 100%;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 13, 13, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.05); }

/* Gallery category label */
.gallery-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.gallery-item:hover .gallery-label { opacity: 1; }

/* ── Lightbox ─────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  font-size: 1.2rem;
  transition: background 0.3s ease;
}
.lightbox-close:hover { background: rgba(201, 168, 76, 0.3); }

/* ── USP / Advantages ─────────────────────────────── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.usp-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border-left: 2px solid var(--accent);
  transition: transform 0.3s ease;
}
.usp-item:hover { transform: translateX(4px); }
.usp-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}
.usp-text h4 {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.usp-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Contact Section ──────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.contact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.contact-value {
  color: var(--text);
  font-size: 0.95rem;
}
.contact-value a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-value a:hover { color: var(--accent); }

.contact-cta {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}
.contact-cta h3 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}
.contact-cta p {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.contact-cta .btn { width: 100%; }

/* ── Sticky Bottom Bar (CTA) ─────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta p {
  font-size: 0.85rem;
  color: var(--text);
  display: none;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-brand img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-brand span {
  font-family: var(--heading-font);
  font-size: 1rem;
  color: var(--text);
}
.footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--accent); }

/* ── Scroll Reveal ────────────────────────────────── */
.reveal {
  opacity: 0.05;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Count-Up Animation ───────────────────────────── */
@keyframes countPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.stat-number.counted {
  animation: countPulse 0.3s ease;
}

/* ── Parallax Decorative Element ──────────────────── */
.parallax-decor {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Page Header (for inner pages) ────────────────── */
.page-header {
  padding: 8rem 1.5rem 3rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    var(--bg);
  position: relative;
}
.page-header h1 {
  margin-bottom: 0.5rem;
}
.page-header p {
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .hero-photos { flex-wrap: wrap; gap: 6px; }
  .hero-photos img { width: 80px; height: 110px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .service-card.featured .service-img { min-height: 200px; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .usp-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .sticky-cta p { display: none; }

  .section { padding: 3.5rem 1rem; }
  .page-header { padding: 7rem 1rem 2.5rem; }

  .gold-corners::before,
  .gold-corners::after {
    width: 25px;
    height: 25px;
  }
}

@media (min-width: 769px) {
  .sticky-cta p { display: block; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 3px; }
  .hero-photos img { width: 65px; height: 90px; }
}

/* ── Utility ──────────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Body padding for sticky CTA */
body { padding-bottom: 70px; }

/* ── Tilt 3D on cards (desktop only, enhanced via JS) ── */
@media (min-width: 769px) {
  .service-card { will-change: transform; }
}

/* ── Additional Keyframes ─────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInFromLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes goldPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Hero content entrance */
.hero-content {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-badge {
  animation: fadeIn 0.6s ease-out 0.4s both;
}
.hero-photos {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ── Services page specific ───────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.service-detail:nth-child(even) {
  direction: rtl;
}
.service-detail:nth-child(even) > * {
  direction: ltr;
}
.service-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
}
.service-detail-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.service-detail-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.service-detail-content p {
  margin-bottom: 1rem;
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-detail:nth-child(even) { direction: ltr; }
  .service-detail-img img { height: 250px; }
}

/* ── Contact Page Map Placeholder ─────────────────── */
.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(80%) invert(92%) contrast(83%);
}
