/* CrescentNow global styles */
:root {
  --bg: #0f0e0a;
  --surface: #14120d;
  --text: #f4f1ea;
  --muted: #c8b88a;
  --primary: #d4af37;
  --primary-600: #b38e2f;
  --accent: #f5d27a;
  --card: #16130d;
  --border: #3a2f1a;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  /* Background gradient used across themes */
  --bg-gradient: radial-gradient(1200px 800px at 80% -10%, rgba(50,40,20,0.45) 0%, var(--bg) 62%);
}
.hero-compact .hero-overlay {
  background: radial-gradient(1200px 700px at 80% -20%, rgba(0,0,0,0.02), rgba(0,0,0,0.55));
}
.header-with-video {
  position: relative;
  width: 100vw;
  height: 100px; /* Adjust height for header+navbar */
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100px; /* Same as header height */
  object-fit: cover;
  z-index: 0;
}
.navbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  background: transparent; /* Transparent to show video */
  height: 100px;
}
.logo-container {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  height: 100px;
  padding-left: 10px; /* Minimal padding */
}
.logo {
  height: 50px; /* Adjust size */
  margin: 0;
}
.site-title {
  margin-left: 8px;
  font-weight: bold;
  color: #fff;
}

[data-theme="light"] {
  --bg: #000000;
  --surface: #000000;
  --text: #1a1300;
  --muted: #5c4b2a;
  --primary: #d4af37;
  --primary-600: #b38e2f;
  --accent: #c59e2f;
  --card: #26dc4a;
  --border: #ead9b0;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --bg-gradient: radial-gradient(1100px 700px at 70% -10%, rgba(255,250,240,0.9) 0%, #000000 55%);
}

/* Additional themes removed to keep only dark and light in classic gold palette */

* { box-sizing: border-box; }
html { 
  scroll-behavior: smooth; 
  overflow-x: hidden;
}

/* Default Cascadia Code font settings */
.cascadia-code {
  font-family: "Cascadia Code", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
body {
  margin: 0;
  font-family: "Cascadia Code", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-gradient);
  overflow : hidden;
}

/* Light sections (non-video areas) */
.light-section {
  background: #050505;
  color: #d8c70b;
}
.light-section .section-head p,
.light-section .prose p,
.light-section .prose li { color: #5c4b2a; }
.light-section .card {
  background: #000000;
  border: 1px solid #bb8913;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.light-section .btn-secondary { color: #1a1300; border-color: #ead9b0; }
.light-section .btn-secondary:hover { border-color: var(--primary); }

/* Gold headings for light sections */
.light-section h1,
.light-section h2 {
  background: linear-gradient(90deg, #b38e2f 0%, #d4af37 50%, #f5d27a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(212,175,55,0.15), 0 8px 20px rgba(212,175,55,0.12);
}

/* Reveal transitions (inspired by smooth content lifts) */
.reveal-blur,
.section-head,
.card {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(8px);
  transition: opacity 700ms ease, transform 700ms ease, filter 800ms ease;
}
.reveal-blur.visible,
.section-head.visible,
.card.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.scale-reveal { opacity: 0; transform: scale(0.96); transition: opacity 650ms ease, transform 650ms ease; }
.scale-reveal.visible { opacity: 1; transform: scale(1); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(15, 13, 7, 0.85); /* semi-transparent bar */
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  padding: 0 32px;
}
.header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 64px;
}
.brand-logo {
  width: 32px;
  height: 32px;
}
.site-header.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.primary-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.primary-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
}

@media (max-width: 880px) {
  .header-inner {
    flex-direction: row;
    justify-content: flex-start;
  }
  .primary-nav {
    justify-content: flex-start;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { width: 28px; height: 28px; }
.brand-name { font-weight: 700; letter-spacing: 0.2px; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.socials { display: flex; gap: 8px; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border); color: var(--muted); background: transparent; transition: border-color .2s, background .2s, color .2s; }
.icon-btn:hover { color: var(--text); border-color: var(--primary); background: color-mix(in oklab, var(--primary) 12%, transparent); }
.icon { width: 18px; height: 18px; fill: currentColor; }
.theme-toggle { width: 40px; }

.primary-nav ul { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.primary-nav a { color: var(--muted); padding: 8px 10px; border-radius: 8px; transition: color .2s, background .2s; }
.primary-nav a:hover { color: var(--text); background: color-mix(in oklab, var(--primary) 14%, transparent); }
.primary-nav a.active { color: var(--text); background: color-mix(in oklab, var(--primary) 22%, transparent); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-block; }
  .primary-nav { position: absolute; inset: 64px 0 auto 0; background: rgba(11,18,32,0.95); border-bottom: 1px solid var(--border); display: none; }
  .primary-nav.open { display: block; }
  .primary-nav ul { flex-direction: column; padding: 14px 20px 24px; gap: 8px; }
  .header-actions { margin-left: auto; }
}

/* Hero */
.hero { position: relative; min-height: 72vh; display: grid; align-items: center; }
.hero-full { min-height: 100vh; }
.hero-compact { min-height: 60vh; }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-video { position: absolute; min-width: 100%; min-height: 100%; width: auto; height: auto; top: 50%; left: 50%; transform: translate(-50%, -50%); object-fit: cover; filter: saturate(110%) contrast(105%); }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(1200px 700px at 80% -20%, rgba(0,0,0,0.02), rgba(0,0,0,0.45)); }
.hero-content { position: relative; padding: 80px 0; }
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}
.hero h1 { font-size: 48px; line-height: 1.1; margin: 0 0 10px; }
.hero p { color: var(--muted); font-size: 18px; margin: 0 0 26px; }

@media (max-width: 720px) {
  .hero h1 { font-size: 34px; }
}

/* Sections */
.section { padding: 64px 0; }
.section-head { text-align: center; margin-bottom: 28px; }
.section-head h2 { margin: 0 0 8px; font-size: 28px; }
.section-head p { margin: 0; color: var(--muted); }

.grid { display: grid; gap: 18px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards-3 { grid-template-columns: 1fr; } }

.card { background: linear-gradient(180deg, #17140e 0%, #14110c 100%); border: 1px solid var(--border); border-radius: 14px; padding: 22px; box-shadow: var(--shadow); }
.card h3 { margin: 0 0 8px; }
.card p { margin: 0; color: var(--muted); }
.card.featured { border-color: var(--primary); box-shadow: 0 12px 40px rgba(212,175,55,0.25); }

.cta { background: linear-gradient(90deg, rgba(212,175,55,0.18), rgba(20,18,13,0.2)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
@media (max-width: 720px) { .cta-inner { flex-direction: column; text-align: center; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 10px; font-weight: 600; border: 1px solid transparent; cursor: pointer; transition: transform .05s ease, background .2s ease, border-color .2s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #1a1300; border-color: transparent; }
.btn-primary:hover { background: var(--primary-600); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--primary); }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Forms */
.form { display: grid; gap: 14px; }
.form-grid { grid-template-columns: repeat(2, 1fr); }
.form label { display: grid; gap: 8px; color: var(--muted); }
.form input, .form textarea { background: #17140e; color: var(--text); border: 1px solid var(--border); border-radius: 10px; padding: 12px 12px; outline: none; }
.form input:focus, .form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(212,175,55,0.18); }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: rgba(20,18,13,0.6); backdrop-filter: blur(10px); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px; padding: 24px 0; }
.site-footer ul { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--text); }
.site-footer .brand { gap: 10px; }

/* Custom footer styles */
.custom-footer {
  background: #000000;
  color: #fff;
  padding: 48px 0 16px 0;
  font-family: 'Cascadia Code', monospace;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 3fr 2fr;
  gap: 32px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
}

.footer-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
}

.footer-title-accent {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

.footer-nav h3,
.footer-address h3,
.footer-social h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Stack navigation links in footer */
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
}
.footer-nav ul li {
  margin-bottom: 0;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li {
  margin-bottom: 8px;
}

.footer-nav ul li a {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: text-decoration 0.2s;
}

.footer-nav ul li a:hover {
  text-decoration: underline;
}

.footer-address p {
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.footer-address a {
  color: #fff;
  text-decoration: underline;
}

.footer-social-icons {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}

.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}

.footer-social-icons a:hover {
  background: #005bb5;
  border-color: #fff;
}

.footer-divider {
  border: none;
  border-top: 1px solid #fff;
  margin: 32px 0 16px 0;
  opacity: 0.3;
}

.footer-copyright {
  text-align: center;
  font-size: 1rem;
  color: #fff;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  .footer-brand,
  .footer-nav,
  .footer-address,
  .footer-social {
    align-items: center;
    justify-content: center;
  }
}

/* Prose */
.prose h2 { margin: 0 0 10px; }
.prose p, .prose li { color: var(--muted); }

/* Scrolling improvements */
main {
  overflow-x: hidden;
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee effect */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
  padding-left: 100%;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Left-to-right marquee variant */
.marquee.ltr .marquee-content {
  animation-name: marquee-ltr;
  animation-duration: 40s; /* average speed */
}

@keyframes marquee-ltr {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Partner cards styling */
.partner-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-right: 16px;
  background: #ffffff;
  color: #0b1220;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

/* Services cards in light blue */
.services-cards .card {
  background: linear-gradient(180deg, #fff8e1 0%, #ffefd0 100%);
  border-color: #ac8b3d;
  box-shadow: 0 12px 32px rgba(212,175,55,0.18);
}
.services-cards .card h3 { color: #d9a925; }
.services-cards .card p { color: #3d2f12; }

/* Make service cards clickable */
.card-link { display: block; color: inherit; }
.card-link .card { cursor: pointer; }
.card-link .card:hover { border-color: var(--primary); }

/* Testimonials */
.testimonials {
  display: grid;
  gap: 18px;
}
.testimonial {
  background: #ffffff;
  color: #1a1300;
  border: 1px solid #ead9b0;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}
.testimonial q { display: block; color: #3d2f12; }
.testimonial .author { margin-top: 10px; color: var(--primary); font-weight: 600; }

/* Staggered animations */
.stagger-1 { transition-delay: 0.3s; }
.stagger-2 { transition-delay: 0.5s; }
.stagger-3 { transition-delay: 0.7s; }
.stagger-4 { transition-delay: 0.9s; }
.stagger-5 { transition-delay: 0.11s; }

/* Enhanced hover effects */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.30);
}

/* Right-side Social Menu */
.social-menu {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: transparent;
}

.social-menu-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
  backdrop-filter: saturate(180%);
  /*border: 1px solid var(--border);*/
  border-radius: 16px;
  padding: 16px 12px;
  box-shadow: var(--shadow);
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  /*border: 1px solid var(--border);
  color: var(--muted);*/
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  color: var(--text);
  border-color: var(--primary);
  background: color-mix(in oklab, var(--primary) 100%, black);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.20);
}

.social-btn .icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Make social menu background transparent */
.social-menu {
  background: transparent;
}

/* Make social icons colored according to their app */
.social-menu .icon {
  fill: #888; /* fallback color */
  transition: fill 0.2s;
}

/* Instagram: gradient is not possible with fill, so use brand color */
.social-btn[aria-label="Instagram"] .icon {
  fill: #E4405F;
}

/* LinkedIn */
.social-btn[aria-label="LinkedIn"] .icon {
  fill: #0077B5;
}

/* X (Twitter) */ 
.social-btn[aria-label="X (Twitter)"] .icon { 
  fill: #FFFFFF;
  background-color: #0b1220; 
}

/* Facebook */
.social-btn[aria-label="Facebook"] .icon {
  fill: #1877F3;
}

/* YouTube */
.social-btn[aria-label="YouTube"] .icon {
  fill: #FF0000;
}

/* On hover, slightly darken */
.social-btn:hover .icon {
  filter: brightness(0.85);
}

/* Smooth scrolling navigation */
.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

/* Section spacing for better scrolling */
section {
  scroll-margin-top: 80px;
}

/* Mobile responsive social menu */
@media (max-width: 768px) {
  .social-menu {
    right: 10px;
    top: auto;
    bottom: 20px;
    transform: none;
    flex-direction: row;
  }
  
  .contact-socials {
    flex-direction: row;
    padding: 12px 16px;
    border-radius: 24px;
  }
  
  .social-btn {
    width: 40px;
    height: 40px;
  }
  
  .social-btn .icon {
    width: 18px;
    height: 18px;
  }
}

/* Enhanced scroll behavior */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Active section highlighting */
.nav-link.active {
  color: var(--text);
  background: color-mix(in oklab, var(--primary) 18%, transparent);
}

/* Accessibility helpers */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .hero-video { display: none; }
  html { scroll-behavior: auto; }
  .social-menu { display: none; }
}
.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.content {
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 2px;
    line-height: 1.5;
}
.cursor-trail {
    /* Set position to absolute to place it freely on the page */
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #39ff14; /* A bright neon green */
    border-radius: 50%; /* Makes it a circle */
    
    /* pointer-events: none is crucial! It allows you to click through the trail dots */
    pointer-events: none;
    
    /* Apply the fade-out animation */
    animation: fadeOut 0.6s linear forwards;
    
    /* A subtle glow effect */
    box-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14;
}

/* Keyframe animation for the fade-out effect */
@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Services grid: 3x3 layout, floating cards, highlight effect */
.services-cards .section-head {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 32px;
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

.services-cards .card {
  background: rgb(0, 0, 0);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 28px 22px;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1), box-shadow 0.5s, background 0.5s;
  will-change: transform, box-shadow, background;
  position: relative;
  z-index: 2;
  animation: floatCard 6s infinite linear;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@keyframes floatCard {
  0%   { transform: translateY(0px);}
  10%  { transform: translateY(-8px);}
  20%  { transform: translateY(0px);}
  30%  { transform: translateY(8px);}
  40%  { transform: translateY(0px);}
  100% { transform: translateY(0px);}
}

.services-cards .card.highlighted {
  background: linear-gradient(90deg, #eaa104b5 60%, #c7bb34c1 100%);
  color: #1a1300;
  box-shadow: 0 0 0 4px #ead97c, 0 8px 32px rgba(0,0,0,0.18);
  transform: scale(1.04);
  z-index: 3;
}

/* Responsive: stack cards on small screens */
@media (max-width: 900px) {
  .services-cards .section-head {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}
@media (max-width: 600px) {
  .services-cards .section-head {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

/* Make social and WhatsApp icons clickable and visually clear */
.contact-social,
.prose .contact-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0 4px;
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  outline: none;
}

.contact-social svg {
  pointer-events: none;
}

.prose a.contact-social,
.prose a[href^="https://wa.me"] {
  position: relative;
  z-index: 1;
}

.prose a.contact-social:hover,
.prose a[href^="https://wa.me"]:hover {
  background: rgba(234, 217, 124, 0.18);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* Fix stacking context for clickable area */
.prose a.contact-social,
.prose a[href^="https://wa.me"] {
  padding: 6px;
  border-radius: 50%;
  text-decoration: none;
}
