@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: #05060f;
  --bg-deep: #0b0c16;
  --bg-card: rgba(18, 19, 38, 0.55);
  --bg-card-hover: rgba(28, 30, 58, 0.8);
  --primary: #d4af37;
  --primary-light: #f3e5ab;
  --primary-glow: rgba(212, 175, 55, 0.25);
  --accent: #8b5cf6;
  --accent-light: #c7d2fe;
  --accent-glow: rgba(139, 92, 246, 0.2);
  --text-light: #ffffff;
  --text-muted: #a5a3c2;
  --text-gold: #f3c623;
  --text-lavender: #ccd0f6;
  --gold-grad: linear-gradient(135deg, #f5d061, #b8860b);
  --dark-grad: linear-gradient(135deg, #120d2a, #05060f);
  --border-glow: rgba(212, 175, 55, 0.15);
  --border-light: rgba(255, 255, 255, 0.08);
  --radius-lg: 20px;
  --radius-md: 12px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --container-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 40%),
    radial-gradient(1px 1px at 20px 30px, #fff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.5), rgba(0,0,0,0)),
    radial-gradient(2px 2px at 90px 110px, #fff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 150px 200px, rgba(255,255,255,0.3), rgba(0,0,0,0)),
    radial-gradient(2px 2px at 250px 300px, #fff, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: auto, auto, 200px 200px, 350px 350px, 150px 150px, 250px 250px, 400px 400px;
  color: var(--text-lavender);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography & Titles */
h1, h2, h3, h4, .brand-text h1, .cinzel-font {
  font-family: 'Cinzel', serif;
  color: var(--text-light);
  letter-spacing: 1px;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #ffffff 30%, #ccd0f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-grad);
  margin: 16px auto 0;
  border-radius: 2px;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--text-light);
}

p {
  color: var(--text-lavender);
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.text-gold {
  color: var(--primary) !important;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header & Navigation */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  z-index: 101;
}

.logo-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 2px;
  background: var(--gold-grad);
  box-shadow: 0 0 15px var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background-color: var(--bg-dark);
}

.brand-text h1 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.brand-text .tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-lavender);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 6px 0;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-grad);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-light);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 24px;
  cursor: pointer;
  z-index: 101;
  outline: none;
}

/* Sticky Header State */
.site-header.sticky {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  max-width: var(--container-width);
  margin: 0 auto;
  background: rgba(18, 19, 38, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-glow);
  border-radius: 50px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  gap: 8px;
}

.btn-primary {
  background: var(--gold-grad);
  color: var(--bg-dark);
  border: 1px solid transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.whatsapp-cta {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 180px 0 100px;
  background-image: radial-gradient(circle at 50% 50%, rgba(18, 15, 48, 0.6) 0%, transparent 60%);
  display: flex;
  align-items: center;
  min-height: 90vh;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '★';
  color: var(--primary);
}

.hero h2 {
  font-size: 3.2rem;
  line-height: 1.15;
  text-align: left;
  background: linear-gradient(180deg, #ffffff 40%, #ccd0f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.hero h2::after {
  display: none;
}

.hero .lead {
  text-align: left;
  margin: 0 0 36px 0;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Circular Astro Visual Graphics */
.hero-side {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.astro-art-wrap {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.astro-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 8s infinite alternate;
}

.astro-orbit {
  position: absolute;
  border: 1px dashed rgba(212, 175, 55, 0.2);
  border-radius: 50%;
}

.orbit-1 { width: 380px; height: 380px; animation: spin-clockwise 30s linear infinite; }
.orbit-2 { width: 280px; height: 280px; animation: spin-counter 20s linear infinite; }
.orbit-3 { width: 180px; height: 180px; border-style: dotted; }

.astro-center {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--dark-grad);
  border: 1px solid var(--primary);
  box-shadow: 0 0 30px var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.astro-logo-icon {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}

.star-node {
  position: absolute;
  color: var(--primary);
  font-size: 10px;
}
.node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.node-2 { bottom: 10%; left: 10%; }
.node-3 { bottom: 10%; right: 10%; }

/* Glassmorphic Cards Styling */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.15), 0 0 20px rgba(212, 175, 55, 0.05);
}

/* Services Grid Section */
.services-section {
  padding: 100px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--gold-grad);
  color: var(--bg-dark);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  transform: rotate(360deg);
}

.service-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-light);
  transition: var(--transition);
}

.service-card:hover h4 {
  color: var(--primary-light);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-top: auto;
}

.service-card .btn-link::after {
  content: '→';
  transition: var(--transition);
}

.service-card:hover .btn-link {
  color: var(--text-light);
}

.service-card:hover .btn-link::after {
  transform: translateX(4px);
}

/* Trust Building Section */
.trust-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(18, 19, 38, 0.4), transparent);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trust-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.trust-badge-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border: 1.5px solid var(--border-glow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.trust-badge-circle::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(139, 92, 246, 0.2);
  animation: spin-clockwise 40s linear infinite;
}

.trust-years {
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.trust-exp-text {
  font-size: 0.95rem;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
  max-width: 200px;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.trust-item {
  display: flex;
  gap: 20px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-light);
}

.trust-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Process Steps Section */
.process-section {
  padding: 100px 0;
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 72px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-glow) 30%, var(--border-glow) 70%, transparent);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--border-glow);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 700;
  transition: var(--transition);
}

.process-step:hover .process-num {
  border-color: var(--primary);
  background: var(--gold-grad);
  color: var(--bg-dark);
  box-shadow: 0 0 25px var(--primary-glow);
  transform: scale(1.08);
}

.process-step h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: rgba(212, 175, 55, 0.15);
  font-family: 'Cinzel', serif;
  position: absolute;
  top: 24px;
  left: 24px;
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-lavender);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.15);
  border: 1.5px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

.client-details h5 {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 600;
}

.client-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 100px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: rgba(18, 19, 38, 0.35);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover, .faq-item.active {
  border-color: var(--border-glow);
  background: rgba(18, 19, 38, 0.6);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-size: 1.05rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  color: var(--text-lavender);
  transition: var(--transition);
}

.faq-item.active .faq-question h4 {
  color: var(--primary);
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--gold-grad);
  color: var(--bg-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-answer-inner a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

/* Contact CTA Banner Section */
.contact-cta-section {
  padding: 100px 0;
  position: relative;
}

.contact-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.contact-cta-content {
  position: relative;
  z-index: 2;
}

.contact-cta-content h2::after {
  display: none;
}

.contact-cta-content p {
  font-size: 1.15rem;
  margin-bottom: 36px;
  color: var(--text-lavender);
}

.contact-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Main Services Page styling */
.services-page-header {
  padding: 180px 0 60px;
  text-align: center;
}

.services-intro-card {
  margin-bottom: 64px;
}

.services-detail-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 80px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(139, 92, 246, 0.1);
  border: 1.5px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-detail-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text-light);
}

.service-detail-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-detail-actions {
  display: flex;
  gap: 16px;
}

/* Contact Page Styles */
.contact-page-header {
  padding: 180px 0 60px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 80px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-info-text a:hover {
  color: var(--primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.contact-form input, .contact-form textarea {
  background: rgba(6, 7, 15, 0.5);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  width: 100%;
  outline: none;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
  background: rgba(6, 7, 15, 0.8);
}

.contact-form .form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.contact-form .small-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer Section */
.site-footer {
  background: rgba(4, 5, 12, 0.95);
  border-top: 1px solid var(--border-light);
  padding: 60px 0 40px;
  position: relative;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--primary);
}

.footer-brand h4 {
  font-size: 1.15rem;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 24px;
  margin-top: 24px;
}

/* Floating Widgets & Actions */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-4px);
}

.float-btn.float-whatsapp {
  background: #25D366;
}

.float-btn.float-call {
  background: var(--primary);
  background-image: var(--gold-grad);
  color: var(--bg-dark);
}

.float-btn .tooltip {
  position: absolute;
  right: 70px;
  background: rgba(6, 7, 15, 0.9);
  border: 1px solid var(--border-glow);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.float-btn:hover .tooltip {
  opacity: 1;
  right: 66px;
}

/* Pulsar Animation for Call/WhatsApp */
.float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  opacity: 0;
  animation: pulse-widget 2s infinite;
  pointer-events: none;
}

.float-btn.float-whatsapp::before {
  border: 2px solid #25D366;
}

.float-btn.float-call::before {
  border: 2px solid var(--primary);
}

/* Keyframes Animations */
@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 1; }
}

@keyframes spin-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin-counter {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes pulse-widget {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Mobile Responsiveness & Menu Transitions */
@media (max-width: 1024px) {
  h2 { font-size: 2.2rem; }
  .hero h2 { font-size: 2.6rem; }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content, .hero h2, .hero .lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trust-visual {
    order: -1;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-grid::before {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(5, 6, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
  }

  .nav.open {
    right: 0;
  }

  .nav-toggle {
    display: block;
  }

  .header-cta {
    display: none; /* Hide topcta on small screens, float buttons handle it */
  }

  .hero {
    padding: 140px 0 60px;
  }

  .astro-art-wrap {
    width: 280px;
    height: 280px;
  }
  
  .astro-glow {
    width: 240px;
    height: 240px;
  }

  .orbit-1 { width: 280px; height: 280px; }
  .orbit-2 { width: 210px; height: 210px; }
  .orbit-3 { width: 140px; height: 140px; }
  .astro-center { width: 110px; height: 110px; }
  .astro-logo-icon { width: 80px; height: 80px; }

  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .service-detail-icon {
    margin: 0 auto;
  }

  .service-detail-actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .service-detail-actions .btn {
    width: 100%;
  }
}
