:root {
  --gold: #D4A843;
  --gold-dark: #B8922F;
  --gold-light: #EDCC78;
  --gold-glow: rgba(212,168,67,0.2);
  --bg-dark: #080808;
  --card-bg: #1A1A1A;
  --surface: #111111;
  --divider: #2A2A2A;
  --text-primary: #F0E6D0;
  --text-secondary: #8A8A8A;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* AMBIENT BACKGROUND EFFECTS */

body::before {
  content: ''; position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(212,168,67,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 60%, rgba(212,168,67,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(212,168,67,0.025) 0%, transparent 40%);
  animation: ambientShift 12s ease-in-out infinite alternate;
}
body::after {
  content: ''; position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 40%, rgba(212,168,67,0.02) 0%, transparent 30%),
    radial-gradient(circle at 70% 70%, rgba(212,168,67,0.02) 0%, transparent 30%);
  animation: ambientShift 15s ease-in-out infinite alternate-reverse;
}
@keyframes ambientShift {
  0%   { opacity: 0.4; transform: translateX(0) scale(1); }
  50%  { opacity: 0.8; }
  100% { opacity: 0.6; transform: translateX(20px) scale(1.03); }
}

.dest-services::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,168,67,0.05) 0%, transparent 60%);
}
.dest-download::after {
  content: ''; position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
  animation: ctaGlow 5s ease-in-out infinite alternate;
}
@keyframes ctaGlow {
  0%   { opacity: 0.3; transform: translateX(-50%) scale(0.9); }
  100% { opacity: 0.7; transform: translateX(-50%) scale(1.1); }
}

/* ═══════════ PARTICLES ═══════════ */

#particles-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* ═══════════ NAVBAR ═══════════ */

.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,168,67,0.1);
  transition: all 0.4s ease;
}
.navbar.scrolled {
  padding: 0.6rem 2rem;
  background: rgba(8,8,8,0.95);
  border-bottom-color: rgba(212,168,67,0.25);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.15em;
  text-decoration: none;
  text-shadow: 0 0 30px rgba(212,168,67,0.3);
  display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo-img {
  width: 36px; height: 36px;
  border-radius: 8px;
  filter: drop-shadow(0 0 8px rgba(212,168,67,0.3));
  transition: all 0.4s;
}
.navbar.scrolled .nav-logo-img {
  width: 30px; height: 30px;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none;
  font-size: 0.95rem; font-weight: 400; letter-spacing: 0.05em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
/* nav-cta removed — download link uses standard nav style */
.nav-lang {
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--gold) !important;
  padding: 0.35rem 0.9rem; border-radius: 20px;
  font-size: 0.85rem !important; font-weight: 500 !important;
  transition: all 0.3s !important;
}
.nav-lang:hover {
  background: rgba(212,168,67,0.1);
  border-color: var(--gold);
}

/* ═══════════ HERO ═══════════ */

.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 2rem 4rem; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212,168,67,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(212,168,67,0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(212,168,67,0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(212,168,67,0.04) 0%, transparent 40%);
  animation: heroGlow 6s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0%   { opacity: 0.5; transform: scale(1) rotate(0deg); }
  100% { opacity: 1;   transform: scale(1.08) rotate(2deg); }
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-logo {
  width: 140px; height: 140px; margin: 0 auto 2rem;
  border-radius: 20px;
  filter: drop-shadow(0 0 40px rgba(212,168,67,0.35));
  animation: logoPulse 4s ease-in-out infinite alternate;
}
@keyframes logoPulse {
  0%   { filter: drop-shadow(0 0 30px rgba(212,168,67,0.25)); transform: scale(1); }
  100% { filter: drop-shadow(0 0 50px rgba(212,168,67,0.5));  transform: scale(1.03); }
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease-out 0.2s both, goldGlow 2.4s ease-in-out infinite alternate;

  background: linear-gradient(to bottom, #fff4b0 0%, #f7d96b 35%, #d4a843 65%, #8f6a16 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  text-shadow:
          0 0 8px rgba(255, 225, 140, 0.8),
          0 0 16px rgba(212, 168, 67, 0.7),
          0 0 28px rgba(212, 168, 67, 0.55),
          0 0 48px rgba(212, 168, 67, 0.35);
}

@keyframes goldGlow {
  0% {
    text-shadow:
            0 0 6px rgba(255, 225, 140, 0.55),
            0 0 12px rgba(212, 168, 67, 0.45),
            0 0 20px rgba(212, 168, 67, 0.30),
            0 0 34px rgba(212, 168, 67, 0.18);
  }
  100% {
    text-shadow:
            0 0 10px rgba(255, 235, 170, 0.95),
            0 0 22px rgba(212, 168, 67, 0.85),
            0 0 42px rgba(212, 168, 67, 0.65),
            0 0 72px rgba(212, 168, 67, 0.40);
  }
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 400; font-style: italic;
  color: var(--text-primary); opacity: 0.8; margin-bottom: 1rem;
  animation: fadeUp 1s ease-out 0.5s both;
}
.hero-sub {
  font-size: 1.15rem; color: var(--text-secondary);
  max-width: 540px; margin: 0 auto 3rem; line-height: 1.7;
  animation: fadeUp 1s ease-out 0.7s both;
}
.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s ease-out 0.9s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════ BUTTONS ═══════════ */

.btn-gold-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--bg-dark); padding: 1rem 2.4rem; border-radius: 12px;
  font-weight: 600; font-size: 1.1rem; text-decoration: none;
  letter-spacing: 0.03em;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none; cursor: pointer;
  box-shadow: 0 4px 25px rgba(212,168,67,0.3);
}
.btn-gold-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212,168,67,0.5);
  color: var(--bg-dark);
}
.btn-gold-primary svg { width: 20px; height: 20px; }

.btn-gold-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: var(--gold);
  padding: 1rem 2.4rem; border-radius: 12px;
  font-weight: 500; font-size: 1.1rem; text-decoration: none;
  letter-spacing: 0.03em;
  border: 1px solid rgba(212,168,67,0.35);
  transition: all 0.3s; cursor: pointer;
}
.btn-gold-outline:hover {
  background: rgba(212,168,67,0.1);
  border-color: var(--gold); color: var(--gold);
}

/* ═══════════ SCROLL INDICATOR ═══════════ */



/* ═══════════ SECTIONS ═══════════ */

.dest-section { position: relative; z-index: 1; padding: 6rem 2rem; }

.section-label {
  font-size: 0.85rem; font-weight: 500; color: var(--gold);
  letter-spacing: 0.3em; text-transform: uppercase;
  text-align: center; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 600;
  color: var(--text-primary); text-align: center; margin-bottom: 1.2rem;
}
.section-desc {
  text-align: center; color: var(--text-secondary);
  max-width: 640px; margin: 0 auto 4rem;
  line-height: 1.7; font-size: 1.1rem;
}

/* ═══════════ SERVICES GRID ═══════════ */

.dest-services { background: var(--bg-dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.service-card {
  position: relative; background: var(--card-bg);
  border: 1px solid rgba(212,168,67,0.12); border-radius: 16px;
  padding: 2.4rem 1.6rem; text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden; cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover {
  border-color: rgba(212,168,67,0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(212,168,67,0.1);
}
.service-card:hover::before { opacity: 1; }

.service-card-full {
  position: relative;
  background: var(--card-bg);
  border: 1px solid rgba(212,168,67,0.12);
  border-radius: 16px;
  padding: 2.4rem 1.6rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: default;
  grid-column: 1 / -1;
}

.service-card-full::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.service-card-full:hover {
  border-color: rgba(212,168,67,0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(212,168,67,0.1);
}
.service-card-full:hover::before { opacity: 1; }

.service-icon {
  width: 66px; height: 66px; margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; color: var(--gold);
  font-variant-emoji: text;
  -webkit-text-stroke: 0;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 50%;
}
.service-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--gold-light); margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}
.service-card p {
  font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6;
}
.service-card-full h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--gold-light); margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}
.service-card-full p {
  font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6;
}

/* ═══════════ FEATURES ═══════════ */

.dest-features {
  background: var(--surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem; max-width: 1100px; margin: 0 auto;
}
.feature-card {
  padding: 2.4rem; border-radius: 16px;
  background: rgba(26,26,26,0.6);
  border: 1px solid var(--divider);
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: rgba(212,168,67,0.2);
  background: rgba(26,26,26,0.9);
}
.feature-icon {
  font-size: 2.6rem; margin-bottom: 1.2rem;
  color: var(--gold); font-variant-emoji: text;
}
.feature-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem; color: var(--gold-light); margin-bottom: 0.7rem;
}
.feature-card p {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7;
}

/* ═══════════ STATS ═══════════ */

.stats-bar {
  display: flex; justify-content: center; gap: 5rem;
  flex-wrap: wrap; padding: 3rem 2rem 1rem;
  max-width: 900px; margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 3.2rem; font-weight: 700;
  color: var(--gold); display: block;
}
.stat-label {
  font-size: 1rem; color: var(--text-secondary);
  margin-top: 0.4rem; letter-spacing: 0.05em;
}

/* ═══════════ DOWNLOAD CTA ═══════════ */

.dest-download {
  text-align: center; padding: 4rem 2rem 6rem; position: relative;
  overflow: hidden;
}
.dest-download::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,168,67,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box {
  position: relative; max-width: 720px; margin: 0 auto;
  padding: 4rem 3rem;
  border: 1px solid rgba(212,168,67,0.2); border-radius: 24px;
  background: rgba(26,26,26,0.5); backdrop-filter: blur(10px);
}
.cta-box .section-title { margin-bottom: 1rem; }
.cta-box p {
  color: var(--text-secondary); margin-bottom: 2.5rem;
  line-height: 1.7; font-size: 1.1rem;
}

/* ═══════════ DOWNLOAD LAYOUT ═══════════ */

.download-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.qr-block { text-align: center; }
.qr-code {
  width: 160px; height: 160px;
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 16px; padding: 8px;
  background: var(--card-bg);
}
.gplay-badge {
  display: inline-flex; align-items: center; gap: 0.8rem;
  border: 1px solid rgba(212,168,67,0.25); border-radius: 14px;
  padding: 0.9rem 1.8rem;
  background: var(--card-bg);
  text-decoration: none;
  transition: all 0.3s;
}
.gplay-badge:hover {
  border-color: var(--gold);
  background: rgba(212,168,67,0.06);
  transform: translateY(-2px);
}
.gplay-icon {
  width: 30px; height: 30px;
  color: var(--gold);
}
.gplay-text { text-align: left; }
.gplay-text small {
  display: block; font-size: 0.7rem;
  color: var(--text-secondary); letter-spacing: 0.05em;
}
.gplay-text strong {
  display: block; font-size: 1.1rem;
  color: var(--text-primary); font-weight: 600;
}

/* ═══════════ FOOTER ═══════════ */

.dest-footer {
  padding: 3rem 2rem 2rem;
  border-top: 1px solid var(--divider);
  text-align: center;
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
}
.footer-powered {
  font-size: 0.75rem; color: var(--text-secondary);
  letter-spacing: 0.1em; margin-bottom: 1.5rem;
}
.footer-copy {
  font-size: 0.85rem; color: rgba(138,138,138,0.5);
}

/* ═══════════ REVEAL ═══════════ */

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════ MOBILE ═══════════ */

.mobile-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 0.5rem;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--gold); margin: 5px 0;
  transition: all 0.3s;
}


/* ═══════════ CONTACT / PARTNERSHIP ═══════════ */

.dest-contact {
  background: var(--bg-dark);
  border-top: 1px solid var(--divider);
}

.contact-box {
  position: relative; max-width: 780px; margin: 0 auto;
  padding: 3.5rem 3rem;
  border: 1px solid rgba(212,168,67,0.2); border-radius: 24px;
  background: rgba(26,26,26,0.5); backdrop-filter: blur(10px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

.contact-field { display: flex; flex-direction: column; gap: 0.45rem; }
.contact-field--full { grid-column: 1 / -1; }

.contact-label {
  font-size: 0.85rem; font-weight: 500;
  color: var(--gold-light); letter-spacing: 0.04em;
}

.contact-input {
  background: rgba(8,8,8,0.7);
  border: 1px solid rgba(212,168,67,0.18);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; padding: 0.75rem 1rem;
  outline: none; transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.contact-input:focus {
  border-color: rgba(212,168,67,0.55);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.08);
}
.contact-input::placeholder { color: rgba(138,138,138,0.55); }

.contact-textarea {
  resize: vertical; min-height: 130px; line-height: 1.6;
}

/* reCAPTCHA container alignment */
.g-recaptcha { display: inline-block; }

/* Scale reCAPTCHA widget on narrow screens (zoom affects layout box, unlike transform:scale) */
@media (max-width: 400px) {
  .g-recaptcha {
    zoom: 0.87;
  }
}
@media (max-width: 350px) {
  .g-recaptcha {
    zoom: 0.75;
  }
}

.contact-privacy-row { justify-content: flex-start; }
.contact-check-label {
  display: flex; align-items: flex-start; gap: 0.7rem; cursor: pointer;
}
.contact-checkbox {
  margin-top: 3px; accent-color: var(--gold);
  width: 16px; height: 16px; flex-shrink: 0; cursor: pointer;
}
.contact-check-text {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5;
}

.contact-error {
  color: #e05c5c; font-size: 0.9rem;
  margin-bottom: 1.2rem; margin-top: 0;
}

.contact-submit {
  width: 100%; justify-content: center;
  margin-top: 0.4rem;
}
.contact-submit:disabled {
  opacity: 0.55; cursor: not-allowed;
  transform: none !important;
}

/* Success state */
.contact-success {
  text-align: center; padding: 2rem 1rem;
}
.contact-success-icon {
  font-size: 3rem; color: var(--gold);
  margin-bottom: 1rem; display: block;
  animation: logoPulse 3s ease-in-out infinite alternate;
}
.contact-success p {
  font-size: 1.1rem; color: var(--text-primary); line-height: 1.7;
}

@media (max-width: 768px) {
  .contact-box { padding: 2.2rem 1.4rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-field--full { grid-column: 1; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(8,8,8,0.97);
    padding: 1.5rem 2rem; gap: 1.2rem;
    border-bottom: 1px solid var(--divider);
    backdrop-filter: blur(20px);
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .service-card { padding: 1.8rem 1rem; }
  .stats-bar { gap: 2.5rem; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 4rem; }
}

@media (max-width: 420px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card h3 { font-size: 1rem; }
}

/* ═══════════ SERVICE INFO BUTTON ═══════════ */

.service-info-btn {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.55);
  border-radius: 50%;
  color: rgba(212,168,67,0.85);
  cursor: pointer;
  padding: 0;
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s;
  z-index: 2;
}
.service-info-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212,168,67,0.08);
  transform: scale(1.12);
}
.service-info-btn svg {
  pointer-events: none;
  flex-shrink: 0;
}

/* ═══════════ SERVICE INFO MODAL ═══════════ */

.svc-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.svc-modal-overlay[hidden] {
  display: none;
}
.svc-modal-overlay.svc-modal-visible {
  opacity: 1;
}

.svc-modal-box {
  position: relative;
  background: var(--card-bg);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212,168,67,0.08);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.25s ease;
}
.svc-modal-overlay.svc-modal-visible .svc-modal-box {
  transform: translateY(0) scale(1);
}

.svc-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  flex-shrink: 0;
  z-index: 2;
}
.svc-modal-close:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212,168,67,0.14);
}

.svc-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2rem 1.2rem;
  border-bottom: 1px solid rgba(212,168,67,0.12);
  flex-shrink: 0;
}

.svc-modal-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.18);
  border-radius: 50%;
  flex-shrink: 0;
}

.svc-modal-title {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  line-height: 1.3;
  padding-right: 2.5rem;
}

.svc-modal-body {
  padding: 1.5rem 2rem 2rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.svc-modal-body p {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.8;
  opacity: 0.88;
}

/* Scrollbar styling inside modal */
.svc-modal-body::-webkit-scrollbar { width: 5px; }
.svc-modal-body::-webkit-scrollbar-track { background: transparent; }
.svc-modal-body::-webkit-scrollbar-thumb {
  background: rgba(212,168,67,0.25);
  border-radius: 10px;
}
.svc-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(212,168,67,0.45);
}

@media (max-width: 600px) {
  .svc-modal-overlay { padding: 1rem; align-items: flex-end; }
  .svc-modal-box {
    max-height: 80vh;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  .svc-modal-header { padding: 1.5rem 1.5rem 1rem; }
  .svc-modal-body { padding: 1.2rem 1.5rem 1.8rem; }
}
