/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #f5f1e8;
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* =========================
   GLOBAL
========================= */
img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1240px, 92%);
  margin: 0 auto;
}

.section-space {
  padding: 110px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  color: #e4c76a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.07);
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
}

.section-heading {
  margin-bottom: 46px;
}

.section-heading.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.section-heading h2,
.about-text h2,
.cta-content h2,
.contact-info-card h2,
.contact-form-card h2,
.address-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.06;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}

.section-heading p,
.about-text p,
.cta-content p,
.contact-info-card p,
.contact-form-card p,
.faq-card p,
.map-info p {
  color: #d0c7b7;
  font-size: 17px;
}

/* =========================
   BACKGROUND EFFECTS
========================= */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.12), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(212, 175, 55, 0.08), transparent 22%),
    radial-gradient(circle at 50% 82%, rgba(212, 175, 55, 0.05), transparent 26%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 300px 300px;
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo {
  width: 270px;
  max-width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: #f5f1e8;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: #d4af37;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.12);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: #d4af37;
  display: block;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 4%;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.mobile-menu.show {
  display: flex;
}

.mobile-menu a {
  color: #f5f1e8;
  font-size: 15px;
}

.mobile-btn {
  margin-top: 10px;
  width: fit-content;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 45%, #f1df9b 100%);
  color: #111111;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.24);
}

.btn-outline {
  color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  padding: 88px 0 76px;
  min-height: calc(100svh - 90px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, 0.98fr);
  gap: 58px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(50px, 6.3vw, 96px);
  line-height: 0.95;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-wrap: balance;
}

.hero-text {
  color: #d8cfbf;
  font-size: 18px;
  max-width: 680px;
  margin-bottom: 34px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 34px;
  max-width: 760px;
}

.point-card {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), rgba(255, 255, 255, 0.02));
  color: #f2eadf;
  font-size: 15px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.08) 38%, transparent 70%);
  filter: blur(18px);
  animation: pulseGlow 5.5s ease-in-out infinite;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.10);
  pointer-events: none;
}

.hero-orbit-one {
  width: 620px;
  height: 620px;
  animation: slowSpin 22s linear infinite;
}

.hero-orbit-two {
  width: 520px;
  height: 520px;
  animation: slowSpinReverse 18s linear infinite;
}

.hero-image-card {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  border-radius: 34px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(12px);
}

.hero-image {
  width: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.floating-badge {
  position: absolute;
  z-index: 3;
  border-radius: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  color: #f5f1e8;
}

.floating-badge span,
.floating-badge strong {
  display: block;
}

.floating-badge span {
  font-size: 13px;
  color: #d9cfbd;
}

.floating-badge strong {
  font-size: 15px;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.badge-top {
  top: 90px;
  left: -10px;
  animation: floatY 4s ease-in-out infinite;
}

.badge-bottom {
  right: 10px;
  bottom: 76px;
  animation: floatY 5s ease-in-out infinite 0.8s;
}

/* =========================
   TRUST STRIP
========================= */
.trust-strip {
  padding: 28px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trust-box {
  text-align: center;
}

.trust-box h3 {
  font-family: "Cormorant Garamond", serif;
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 8px;
}

.trust-box p {
  color: #cfc5b4;
  font-size: 15px;
}

/* =========================
   ABOUT
========================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.94fr;
  gap: 34px;
  align-items: stretch;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text p {
  margin-bottom: 18px;
}

.about-card {
  display: flex;
}

.about-card-inner {
  width: 100%;
  padding: 36px 30px;
  border-radius: 26px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.about-card-inner h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: #ffffff;
  margin-bottom: 20px;
}

.about-card-inner ul li {
  color: #d8cfbf;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.10);
  font-size: 16px;
}

.about-card-inner ul li:last-child {
  border-bottom: none;
}

/* =========================
   SERVICES
========================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 30px 26px;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.34);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #111111;
  background: linear-gradient(135deg, #b8860b, #f1df9b);
  font-size: 20px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 12px;
}

.service-card p {
  color: #d0c7b7;
  font-size: 16px;
}

/* =========================
   WHY / LIFE / PROCESS / TESTIMONIALS
========================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  padding: 22px 20px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(255, 255, 255, 0.025);
  color: #f3eadf;
  font-size: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.30);
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.life-card {
  padding: 18px 16px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(255, 255, 255, 0.025);
  color: #f5f1e8;
  font-size: 15px;
  transition: 0.3s ease;
}

.life-card:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  padding: 30px 26px;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.process-card span {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  color: #d4af37;
  margin-bottom: 16px;
}

.process-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 10px;
}

.process-card p {
  color: #d0c7b7;
  font-size: 16px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 30px 26px;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.testimonial-card p {
  color: #d7cebf;
  font-size: 16px;
  margin-bottom: 18px;
}

.testimonial-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: #ffffff;
}

/* =========================
   CTA
========================= */
.cta-box {
  padding: 40px 42px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.10), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-content {
  max-width: 760px;
}

/* =========================
   AWARDS
========================= */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

.award-card {
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  transition: 0.3s ease;
}

.award-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.34);
}

.award-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  padding-top: 80px;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  background: rgba(0, 0, 0, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 30px;
  padding-bottom: 40px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 18px;
}

.footer-brand p {
  color: #cfc5b4;
  max-width: 420px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-links a {
  color: #d6cdbd;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-social {
  margin-top: 18px;
}

.footer-bottom {
  padding: 20px 0 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.10);
  text-align: center;
}

.footer-bottom p {
  color: #bfb4a1;
  font-size: 14px;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: block;
  width: 52px;
  height: 52px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* =========================
   SCROLL REVEAL
========================= */
.reveal {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.65, 0.2, 1);
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-left {
  transform: translateX(-55px);
}

.reveal-right {
  transform: translateX(55px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

.delay-4 {
  transition-delay: 0.48s;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes slowSpinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.75;
  }
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1180px) {
  .hero-grid,
  .about-grid,
  .services-grid,
  .why-grid,
  .life-grid,
  .process-grid,
  .testimonial-grid,
  .trust-grid,
  .footer-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 74px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-image-card {
    width: min(100%, 700px);
  }

  .hero-image {
    min-height: 560px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 84px;
  }

  .container {
    width: min(100%, 94%);
  }

  .nav,
  .header-btn,
  .header-right {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-inner {
    position: relative;
    justify-content: center;
    min-height: 78px;
    gap: 12px;
    padding-right: 54px;
  }

  .logo-link {
    flex: 0 1 auto;
    margin: 0 auto;
    max-width: 100%;
  }

  .logo {
    width: 170px;
  }

  .menu-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }

  .hero,
  .section-space {
    padding-top: 70px;
  }

  .hero {
    padding: 42px 0 54px;
  }

  .hero-grid,
  .about-grid,
  .services-grid,
  .why-grid,
  .life-grid,
  .process-grid,
  .testimonial-grid,
  .trust-grid,
  .footer-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .about-text,
  .cta-content,
  .section-heading,
  .section-heading.center,
  .footer-brand,
  .footer-links {
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
    min-height: 500px;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: clamp(42px, 10vw, 68px);
    line-height: 1.02;
  }

  .hero-text,
  .about-text p,
  .section-heading p,
  .cta-content p,
  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-points {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .point-card,
  .service-card,
  .why-card,
  .life-card,
  .process-card,
  .testimonial-card,
  .about-card-inner,
  .award-card {
    text-align: center;
  }

  .cta-box {
    padding: 32px 24px;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .hero-orbit-one {
    width: 470px;
    height: 470px;
  }

  .hero-orbit-two {
    width: 390px;
    height: 390px;
  }

  .hero-glow {
    width: 460px;
    height: 460px;
  }

  .hero-image-card {
    width: min(100%, 500px);
    padding: 10px;
  }

  .hero-image {
    min-height: 420px;
    border-radius: 20px;
  }

  .badge-top {
    top: 24px;
    left: 6px;
  }

  .badge-bottom {
    right: 6px;
    bottom: 22px;
  }

  .award-image {
    height: auto;
    max-height: 420px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 82px;
  }

  .section-space {
    padding: 76px 0;
  }

  .hero {
    padding: 28px 0 44px;
  }

  .hero-content h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-image-card {
    width: 100%;
    padding: 8px;
    border-radius: 24px;
  }

  .hero-image {
    min-height: 340px;
    border-radius: 18px;
  }

  .hero-glow {
    width: 360px;
    height: 360px;
  }

  .hero-orbit-one {
    width: 340px;
    height: 340px;
  }

  .hero-orbit-two {
    width: 280px;
    height: 280px;
  }

  .floating-badge {
    padding: 10px 12px;
    border-radius: 14px;
  }

  .floating-badge span {
    font-size: 11px;
  }

  .floating-badge strong {
    font-size: 13px;
  }

  .badge-top {
    top: 14px;
    left: 0;
  }

  .badge-bottom {
    right: 0;
    bottom: 12px;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .logo {
    width: 150px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .trust-box h3,
  .service-card h3,
  .process-card h3,
  .testimonial-card h4,
  .footer-links h4 {
    font-size: 26px;
  }

  .whatsapp-float {
    width: 44px;
    height: 44px;
    right: 10px;
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .hero-glow,
  .hero-orbit,
  .floating-badge {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}