/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: hsl(220, 15%, 8%);
  --foreground: hsl(45, 30%, 95%);
  --card: hsl(220, 15%, 12%);
  --card-hover: hsl(220, 15%, 15%);
  --primary: hsl(43, 96%, 56%);
  --primary-light: hsl(45, 100%, 72%);
  --primary-dark: hsl(38, 92%, 45%);
  --muted: hsl(45, 15%, 65%);
  --border: hsl(43, 40%, 25%);
  --radius: 0.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}
.hero {
  display: flex;
  justify-content: flex-start !important;
}

.hero-content {
  width: 100%;
  max-width: 650px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;

}

/* Text Gradient */
.text-gradient-gold {
  background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-gold {
  background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark));
  color: var(--background);
}

.btn-gold:hover {
  box-shadow: 0 0 40px hsla(43, 96%, 56%, 0.4);
}

.btn-gold-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-gold-outline:hover {
  background: hsla(43, 96%, 56%, 0.1);
  box-shadow: 0 0 30px hsla(43, 96%, 56%, 0.2);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: hsla(220, 15%, 8%, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(43, 40%, 25%, 0.5);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--background);
  box-shadow: none;
}
.logo-icon{overflow:visible}
.logo-icon img{display:block;width:130%;height:130%;object-fit:contain;border-radius:10px;transform:translateY(-4px)}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
}

.nav {
  display: none;
  gap: 2rem;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  .logo-text {
    display: flex;
  }
}

.hide-mobile {
  display: none;
}

@media (min-width: 640px) {
  .hide-mobile {
    display: inline;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom:-30px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(220, 15%, 8%, 0.95), hsla(220, 15%, 8%, 0.8), hsla(220, 15%, 8%, 0.6));
}

.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.glow-1 {
  top: 80px;
  left: 40px;
  width: 300px;
  height: 300px;
  background: hsla(43, 96%, 56%, 0.1);
  animation: pulse-gold 3s ease-in-out infinite;
}

.glow-2 {
  bottom: 80px;
  right: 40px;
  width: 400px;
  height: 400px;
  background: hsla(43, 96%, 56%, 0.05);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 150px 0 80px;
}

.hero-inner {
  max-width: 700px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid hsla(43, 96%, 56%, 0.3);
  background: hsla(43, 96%, 56%, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 550px;
}

.hero-subtitle strong {
  color: var(--foreground);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.trust-badge svg {
  color: var(--primary);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border-radius: 50px;
  border: 2px solid hsla(43, 96%, 56%, 0.5);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 6px;
  height: 12px;
  background: var(--primary);
  border-radius: 50px;
  animation: scroll-pulse 2s infinite;
}

/* Services Section */
.services {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  margin-top:0px;
  margin-bottom:-30px;
}

.services-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--background), hsla(220, 15%, 12%, 0.5), var(--background));
}

.services-glow {
  position: absolute;
  top: 0;
  left: 25%;
  width: 500px;
  height: 500px;
  background: hsla(43, 96%, 56%, 0.05);
  border-radius: 50%;
  filter: blur(100px);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 10;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

.section-header p {
  color: var(--muted);
  font-size: 1.125rem;
}

.services-grid {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: linear-gradient(145deg, hsla(220, 15%, 14%, 1), hsla(220, 15%, 10%, 1));
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid hsla(43, 40%, 25%, 0.5);
  transition: all 0.5s ease;
}

.service-card:hover {
  border-color: hsla(43, 96%, 56%, 0.5);
  box-shadow: 0 0 40px hsla(43, 96%, 56%, 0.2);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: hsla(43, 96%, 56%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.service-icon svg {
  color: var(--primary);
}

.service-card:hover .service-icon {
  background: hsla(43, 96%, 56%, 0.2);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card > p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.service-features svg {
  color: var(--primary);
}

/* Contact Section */
.contact {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(220, 15%, 12%, 0.3), var(--background));
}

.contact-glow {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 600px;
  height: 600px;
  background: hsla(43, 96%, 56%, 0.05);
  border-radius: 50%;
  filter: blur(100px);
}

.contact-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .contact-info h2 {
    font-size: 3rem;
  }
}

.contact-info > p {
  color: var(--muted);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 400px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: hsla(220, 15%, 12%, 0.5);
  border: 1px solid hsla(43, 40%, 25%, 0.5);
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: hsla(43, 96%, 56%, 0.5);
  background: var(--card);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: hsla(43, 96%, 56%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.contact-card-icon svg {
  color: var(--primary);
}

.contact-card:hover .contact-card-icon {
  background: hsla(43, 96%, 56%, 0.2);
}

.contact-label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
}

.contact-value {
  display: block;
  font-weight: 500;
}

.location-card {
  background: linear-gradient(145deg, var(--card), hsla(220, 15%, 12%, 0.5));
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid hsla(43, 40%, 25%, 0.5);
  box-shadow: 0 0 40px hsla(43, 96%, 56%, 0.2);
}

.location-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.location-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: hsla(43, 96%, 56%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-icon svg {
  color: var(--primary);
}

.location-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.location-content {
  margin-bottom: 2rem;
}

.location-content p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.location-content strong {
  color: var(--primary);
}

.location-hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}

.location-hours svg {
  color: var(--primary);
}

.business-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: hsla(43, 96%, 56%, 0.1);
  border: 1px solid hsla(43, 96%, 56%, 0.3);
  text-align: center;
}

.business-label {
  font-size: 0.875rem;
  color: var(--muted);
  display: block;
  margin-bottom: 0.5rem;
}

.business-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Footer */
.footer {
  background: hsla(220, 15%, 12%, 0.5);
  border-top: 1px solid hsla(43, 40%, 25%, 0.5);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-contact svg {
  color: var(--primary);
  flex-shrink: 0;
}

.footer-contact a {
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsla(43, 40%, 25%, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-bottom p:last-child {
  font-size: 0.75rem;
}

/* Animations */
@keyframes pulse-gold {
  0%, 100% {
    box-shadow: 0 0 20px hsla(43, 96%, 56%, 0.3);
    opacity: 0.5;
  }
  50% {
    box-shadow: 0 0 40px hsla(43, 96%, 56%, 0.5);
    opacity: 1;
  }
}

/* -------------------------
   Luxury particle + aura
   ------------------------- */

/* Full-screen particle container (fallback / complement to canvas) */
#particle-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}
.particle {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  opacity: 0;
  will-change: transform, opacity;
  filter: blur(6px);
  box-shadow: 0 6px 18px rgba(255, 200, 80, 0.14);
}

@keyframes particleFloat {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(-120vh) scale(0.8); opacity: 0; }
}

/* Hero aura behind image */
.hero-aura {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(255,230,140,0.45), rgba(255,200,70,0.18) 30%, transparent 55%);
  filter: blur(80px);
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
  mix-blend-mode: screen;
  animation: auraPulse 5s ease-in-out infinite;
}

@keyframes auraPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.82; }
  50% { transform: translate(-50%, -50%) scale(1.04); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0.82; }
}

/* Hero image gentle float */
.hero-img {
  animation: heroFloat 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes heroFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Reveal animations (scroll reveal) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Glowing gold border for premium cards */
.glow-border { position: relative; transition: box-shadow 0.35s ease, transform 0.35s ease; }
.glow-border::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: 0 0 18px rgba(255,210,120,0.06);
  transition: box-shadow 0.35s ease, opacity 0.35s ease;
}
.glow-border:hover { transform: translateY(-6px); }
.glow-border:hover::after { box-shadow: 0 10px 50px rgba(255,200,80,0.18); }

/* Nav & Button hover microinteractions */
.nav a { transition: color 0.28s ease, transform 0.28s ease, text-shadow 0.28s ease; }
.nav a:hover { transform: translateY(-3px); color: var(--primary); text-shadow: 0 6px 18px rgba(255,200,60,0.14); }
.btn { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.btn:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(255,200,60,0.12); }

/* Mobile adjustments */
@media (max-width: 640px) {
  .hero-aura { width: 520px; height: 520px; filter: blur(48px); top: 46%; }
  .hero-img { animation-duration: 8s; }
  .reveal { transition-duration: 0.6s; }
  .logo-icon img{width:110%;height:110%;transform:none}
}

/* Mobile-friendly adjustments */
@media (max-width: 900px) {
  .header-content { height: 86px; padding: 0 12px; }
  .logo-icon { width: 64px; height: 64px; }
  .logo-title { font-size: 1.05rem; }
  .nav { gap: 1rem; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; max-width: 100%; }
  .hero-content { padding-top: 110px; }
  .hero-buttons { gap: 0.6rem; }
  .btn-xl { padding: 0.9rem 1.6rem; font-size: 1rem; }
}

@media (max-width: 640px) {
  /* tighter header */
  .header-content { height: 72px; padding: 0 10px; }
  .logo-icon { width: 52px; height: 52px; }
  .logo-icon img{width:110%;height:110%;transform:none}
  .logo-title { font-size: 1rem; }
  .nav { display: none; }

  /* stack hero elements and increase tap targets */
  .hero-content { padding-top: 90px; }
  .hero-title { font-size: 1.6rem; }
  .trust-badges { gap: 0.8rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; justify-content:center }
  .btn-gold-outline { padding-left: 0.8rem; padding-right: 0.8rem }

  /* services stack */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.2rem; }

  /* contact cards touch size */
  .contact-card { padding: 0.9rem; }

  /* smaller hero aura to reduce visual crowding */
  .hero-aura { width: 420px; height: 420px; filter: blur(40px); top: 50%; left: 50%; }

  /* reduce visual noise: make particles lighter and less frequent via JS (see app.js adjustments) */
}

/* Mobile-specific: center hero vertically and reduce header call button padding */
@media (max-width: 640px) {
  /* center hero content in viewport (below header) */
  .hero {
    align-items: center;
    min-height: calc(100vh - 72px);
  }
  .hero-content {
    padding-top: 0 !important;
    padding-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero-inner { width: 100%; }
  .hero-buttons { width: 100%; display:flex; flex-direction:column; gap:0.6rem; }

  /* reduce header call button padding to save space */
  .header .btn-gold.btn-sm {
    /* make circular icon-only button on small screens */
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
  }
  /* hide optional text label if present */
  .header .btn-gold.btn-sm .hide-mobile { display: none !important; }

  /* ensure hero license is visible and compact */
  .hero-license { display:inline-block; font-size:0.92rem; padding:0.35rem 0.7rem; margin-top:0.5rem; z-index:20; }

  /* make View Services smaller and premium */
  .hero .btn-gold-outline.btn-xl {
    padding: 0.35rem 0.7rem;
    font-size: 0.9rem;
    border-width: 1px;
    border-color: rgba(255,210,120,0.9);
    color: #ffd98b;
    background: linear-gradient(180deg, rgba(255,245,220,0.04), rgba(255,240,200,0.02));
    box-shadow: 0 8px 28px rgba(255,200,80,0.06);
  }
  .hero .btn-gold-outline.btn-xl:hover { box-shadow: 0 14px 44px rgba(255,200,80,0.12); transform: translateY(-3px); }
}

/* Accessibility: larger touch targets and readable text on small screens */
@media (max-width: 480px) {
  .btn-sm { padding: 0.65rem 1.1rem; }
  .btn-lg, .btn-xl { padding: 0.9rem 1rem; }
  .hero-title { font-size: 1.5rem; }
}

/* Government license badge styling */
.license-badge {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--primary-light);
  background: linear-gradient(90deg, rgba(255,245,200,0.04), rgba(255,220,120,0.02));
  border: 1px solid rgba(255,200,60,0.10);
  box-shadow: 0 6px 18px rgba(255,200,60,0.04);
}
.footer-license { display: inline-block; margin-top: 1rem; }

@media (prefers-reduced-motion: reduce) {
  .hero-aura, .hero-img, .particle, .reveal { animation: none !important; transition: none !important; }
}

/* Footer WhatsApp button */
.footer-whatsapp{display:flex;justify-content:center;margin-top:18px}
.whatsapp-btn{display:inline-flex;align-items:center;gap:0.6rem;padding:0.6rem 1rem;border-radius:999px;background:linear-gradient(90deg,#25D366,#128C7E);color:#fff;font-weight:700;box-shadow:0 10px 30px rgba(18,140,126,0.18);border:1px solid rgba(255,255,255,0.06)}
.whatsapp-btn svg{flex-shrink:0;color:#fff}
.whatsapp-btn:hover{transform:translateY(-4px);box-shadow:0 18px 48px rgba(18,140,126,0.22)}

/* Floating WhatsApp (right-bottom) */
.whatsapp-float{position:fixed;right:18px;bottom:18px;z-index:9999;display:inline-flex;align-items:center;justify-content:center;width:56px;height:56px;gap:0;padding:0;border-radius:50%;background:linear-gradient(180deg,#25D366,#128C7E);color:#fff;font-weight:700;box-shadow:0 20px 50px rgba(18,140,126,0.22);border:1px solid rgba(255,255,255,0.06);text-decoration:none}
.whatsapp-float .icon{font-size:22px;line-height:1}
.whatsapp-float .label{display:none}
.whatsapp-float:hover{transform:translateY(-4px);box-shadow:0 30px 80px rgba(18,140,126,0.28)}

@media (max-width:640px){
  .whatsapp-float{right:12px;bottom:12px;width:52px;height:52px}
}


/* Prominent hero license styling */
.hero-license {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  color: #3b2f07; /* deep gold-brown for contrast */
  background: linear-gradient(90deg, rgba(255,245,200,0.95), rgba(255,230,150,0.9));
  border: 1px solid rgba(120,80,10,0.12);
  box-shadow: 0 12px 40px rgba(255,200,60,0.12);
  z-index: 12;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.hero-license:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(255,200,60,0.18); }

@media (max-width: 640px) {
  .hero-license { font-size: 0.95rem; padding: 0.5rem 0.9rem; }
}


@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes scroll-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-slide-left {
  opacity: 0;
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-right {
  opacity: 0;
  animation: slideInRight 0.6s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}
