/* ─── RESET & VARIABLES ─────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --white: #ffffff;
  --black: #111111;
  --orange: #ff7a00;
  --orange-light: #ff9a33;
  --orange-glow: rgba(255,122,0,.18);
  --cream: #fff8f2;
  --gray: #f5f5f5;
  --text-muted: #777;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 18px;
  --shadow-soft: 0 8px 40px rgba(0,0,0,.08);
  --shadow-orange: 0 8px 32px rgba(255,122,0,.22);
  --transition: .4s cubic-bezier(.25,.8,.25,1);
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 10px; }

/* ─── PRELOADER ─────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo-wrap {
  width: 180px; height: 180px;
  display: flex; align-items: center; justify-content: center;
}
.preloader-logo {
  max-width: 100%; max-height: 100%; display: block;
}
.preloader-text {
  font-family: var(--font-display); color: var(--black);
  font-size: 1.3rem; letter-spacing: .15em; margin-top: 1.2rem;
  opacity: 0; animation: fadeInUp .6s .3s forwards;
}
.preloader-bar {
  width: 160px; height: 3px; background: rgba(0,0,0,.08);
  border-radius: 10px; margin-top: 1.4rem; overflow: hidden;
}
.preloader-bar-fill {
  height: 100%; width: 0; background: var(--orange);
  border-radius: 10px; animation: fillBar 2s ease forwards;
}
@keyframes fillBar { to { width: 100%; } }

/* ─── PARTICLES CANVAS ──────────────────────────────────── */
#particles-canvas {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
}

/* ─── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: .2rem 4.5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: #000;
  backdrop-filter: blur(18px);
  box-shadow: 0 4px 28px rgba(0,0,0,.4);
  padding: .2rem 4.5%;
}
.dark-header .navbar {
  background: #000;
}
.nav-logo {
  display: flex; align-items: center; gap: .7rem;
}
.nav-logo-icon {
  width: auto; height: auto; background: transparent;
  border-radius: 0; display: flex; align-items: center; justify-content: center;
  box-shadow: none;
}
.nav-logo-image {
  width: 100px; height: auto;
  display: block;
}
.navbar .nav-logo-image {
  transform: scale(1.45);
  transform-origin: left center;
}
.nav-logo-text {
  font-family: var(--font-display); font-size: 1.45rem;
  font-weight: 700; color: var(--white);
  letter-spacing: .03em;
}
.nav-logo-text span { color: var(--orange); }
.nav-links { display: flex; gap: 2.2rem; }
.nav-links a {
  color: rgba(255,255,255,.82); font-weight: 500; font-size: .95rem;
  letter-spacing: .05em; position: relative; transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--orange);
  border-radius: 10px; transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--orange); color: white;
  padding: .6rem 1.5rem; border-radius: 30px;
  font-weight: 600; font-size: .9rem; letter-spacing: .04em;
  box-shadow: var(--shadow-orange);
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255,122,0,.35); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: white;
  border-radius: 10px; transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17,17,17,.97); backdrop-filter: blur(20px);
  z-index: 499; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem; opacity: 0; transition: opacity .4s ease;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  color: white; font-family: var(--font-display); font-size: 2rem;
  font-weight: 600; letter-spacing: .06em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--orange); }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(17,17,17,.75) 0%, rgba(255,122,0,.15) 100%),
    url('https://images.unsplash.com/photo-1513885535751-8b9238bd345a?w=1800&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(17,17,17,.35), rgba(17,17,17,.7));
}
.hero-content {
  position: relative; z-index: 1; text-align: center;
  padding: 0 1.5rem; max-width: 900px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,122,0,.15); border: 1px solid rgba(255,122,0,.3);
  color: var(--orange); padding: .4rem 1.2rem; border-radius: 30px;
  font-size: .85rem; letter-spacing: .12em; font-weight: 500;
  backdrop-filter: blur(10px); margin-bottom: 1.5rem;
  animation: fadeInDown .8s ease forwards;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 700; color: white; line-height: 1.1; margin-bottom: 1.4rem;
  animation: fadeInUp .9s .2s ease both;
}
.hero-title em { color: var(--orange); font-style: italic; }
.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.3rem); color: rgba(255,255,255,.8);
  line-height: 1.7; max-width: 640px; margin: 0 auto 2.5rem;
  font-weight: 300; animation: fadeInUp .9s .4s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp .9s .6s ease both;
}
.btn-primary {
  background: var(--orange); color: white;
  padding: .9rem 2.4rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem; letter-spacing: .05em;
  box-shadow: 0 8px 28px rgba(255,122,0,.5);
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-flex; align-items: center; gap: .6rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,122,0,.55); }
.btn-secondary {
  background: rgba(255,255,255,.1); color: white;
  padding: .9rem 2.4rem; border-radius: 50px;
  font-weight: 500; font-size: 1rem; letter-spacing: .05em;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(10px);
  transition: background var(--transition), transform var(--transition);
  display: inline-flex; align-items: center; gap: .6rem;
}
.btn-secondary:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); }

/* Floating gift box */
.floating-gift {
  position: absolute; right: 8%; bottom: 20%;
  font-size: 5rem; z-index: 2;
  animation: floatGift 4s ease-in-out infinite;
  filter: drop-shadow(0 12px 30px rgba(255,122,0,.4));
  display: none;
}
@media(min-width:900px){ .floating-gift { display: block; } }
@keyframes floatGift {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-24px) rotate(5deg); }
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.55); font-size: .75rem; letter-spacing: .12em;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform: translateX(-50%) translateY(0)} 50%{transform: translateX(-50%) translateY(6px)} }
.hero-scroll i { font-size: 1.2rem; }

/* ─── SHARED SECTION STYLES ─────────────────────────────── */
section { position: relative; z-index: 1; }
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--orange); font-size: .8rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: .8rem;
}
.section-label::before, .section-label::after {
  content: ''; width: 28px; height: 1.5px; background: var(--orange); border-radius: 2px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-muted); font-size: 1.05rem; line-height: 1.8;
  max-width: 580px;
}
.container { max-width: 1240px; margin: 0 auto; padding: 0 5%; }
.section-pad { padding: 7rem 0; }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-copy {
  max-width: 560px;
}
.feature-list {
  margin: 2rem 0; padding-left: 1.2rem; color: var(--black);
  display: grid; gap: .9rem;
}
.feature-list li {
  position: relative; padding-left: 1.25rem; line-height: 1.8;
}
.feature-list li::before {
  content: '•'; position: absolute; left: 0; color: var(--orange);
}
.about-image-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.75rem;
  margin-top: 3rem;
}
.service-card {
  background: white; border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0,0,0,.12);
}
.service-icon {
  width: 56px; height: 56px; display: grid; place-items: center;
  font-size: 1.6rem; background: rgba(255,122,0,.12);
  border-radius: 16px; margin-bottom: 1.25rem;
}
.service-card h3 {
  margin-bottom: .85rem; font-size: 1.1rem;
}
.step-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem;
  margin-top: 3rem;
}
.step-card {
  background: rgba(255,255,255,.95); border: 1px solid rgba(17,17,17,.06);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.step-number {
  width: 50px; height: 50px; display: grid; place-items: center;
  background: var(--orange); color: white; border-radius: 14px;
  font-weight: 700; margin-bottom: 1rem;
}
.step-card h3 {
  margin-bottom: .75rem;
}
@media(max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
}

/* ─── ABOUT ─────────────────────────────────────────────── */
.about { background: var(--cream); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-image-wrap {
  position: relative; border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.14);
}
.about-image-wrap img {
  width: 100%; height: 500px; object-fit: cover;
  transition: transform .8s ease;
}
.about-image-wrap:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute; bottom: 1.8rem; left: 1.8rem;
  background: var(--orange); color: white;
  padding: .8rem 1.4rem; border-radius: 12px;
  font-weight: 700; font-size: 1rem; line-height: 1.3;
  box-shadow: 0 8px 24px rgba(255,122,0,.45);
}
.about-badge span { font-size: .75rem; font-weight: 400; display: block; opacity: .85; }
.about-text .section-desc { max-width: 100%; margin-bottom: 2.5rem; }
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2.2rem;
}
.stat-card {
  background: white; border-radius: 14px; padding: 1.4rem;
  box-shadow: var(--shadow-soft); border-top: 3px solid var(--orange);
  text-align: center; transition: transform var(--transition);
}
.stat-card:hover { transform: translateY(-4px); }
.stat-num {
  font-family: var(--font-display); font-size: 2.2rem;
  font-weight: 700; color: var(--orange); line-height: 1;
}
.stat-label { font-size: .85rem; color: var(--text-muted); margin-top: .3rem; }

/* ─── SERVICES ──────────────────────────────────────────── */
.services { background: var(--black); }
.services .section-title { color: white; }
.services .section-desc { color: rgba(255,255,255,.5); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3.5rem;
}
.service-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; padding: 2rem 1.6rem; position: relative; overflow: hidden;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(255,122,0,.08), transparent 65%);
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(255,122,0,.3); background: rgba(255,255,255,.07); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--orange-glow); border: 1px solid rgba(255,122,0,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--orange); margin-bottom: 1.3rem;
  transition: background var(--transition), transform var(--transition);
}
.service-card:hover .service-icon { background: var(--orange); color: white; transform: scale(1.1) rotate(-5deg); }
.service-card h3 { color: white; font-size: 1.1rem; font-weight: 600; margin-bottom: .6rem; }
.service-card p { color: rgba(255,255,255,.5); font-size: .9rem; line-height: 1.7; }
.service-arrow {
  position: absolute; bottom: 1.4rem; right: 1.4rem;
  color: rgba(255,122,0,0); font-size: 1rem;
  transition: color var(--transition), transform var(--transition);
}
.service-card:hover .service-arrow { color: var(--orange); transform: translate(3px,-3px); }

/* ─── GALLERY ───────────────────────────────────────────── */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 14px; cursor: pointer;
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.25,.8,.25,1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.7), transparent);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-size: .85rem; font-weight: 500; }

/* Lightbox */
#lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(17,17,17,.95); backdrop-filter: blur(16px);
  display: none; align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 88vw; max-height: 85vh; border-radius: 14px; box-shadow: 0 24px 64px rgba(0,0,0,.5); }
.lb-close {
  position: absolute; top: 1.5rem; right: 2rem;
  color: white; font-size: 2rem; cursor: pointer; transition: color var(--transition);
}
.lb-close:hover { color: var(--orange); }

/* ─── WHY CHOOSE US ─────────────────────────────────────── */
.why { background: var(--cream); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  background: white; border-radius: 20px; padding: 2rem 1.6rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  border-left: 4px solid transparent;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(0,0,0,.11);
  border-left-color: var(--orange);
}
.why-icon {
  min-width: 52px; height: 52px; background: var(--orange-glow);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--orange);
  transition: background var(--transition), color var(--transition);
}
.why-card:hover .why-icon { background: var(--orange); color: white; }
.why-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .4rem; }
.why-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

/* ─── CONTACT ───────────────────────────────────────────── */
.contact { background: var(--black); }
.contact .section-title { color: white; }
.contact .section-desc { color: rgba(255,255,255,.5); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 1.4rem 1.6rem;
  display: flex; gap: 1.2rem; align-items: center;
  transition: border-color var(--transition), background var(--transition);
}
.contact-card:hover { border-color: rgba(255,122,0,.3); background: rgba(255,255,255,.07); }
.contact-card-icon {
  width: 46px; height: 46px; background: var(--orange-glow);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--orange);
}
.contact-card h4 { color: rgba(255,255,255,.6); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .3rem; }
.contact-card p { color: white; font-size: .95rem; line-height: 1.5; }
.contact-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .5rem; }
.btn-call {
  background: var(--orange); color: white;
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  display: inline-flex; align-items: center; gap: .6rem;
  box-shadow: var(--shadow-orange);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-call:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(255,122,0,.5); }
.btn-whatsapp {
  background: #25d366; color: white;
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  display: inline-flex; align-items: center; gap: .6rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,.4); }
.map-container {
  border-radius: 20px; overflow: hidden;
  height: 100%; min-height: 380px;
  box-shadow: 0 20px 56px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
}
.map-container iframe { width: 100%; height: 100%; min-height: 380px; border: none; filter: grayscale(40%) contrast(1.1); }

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: #0a0a0a; border-top: 1px solid rgba(255,255,255,.07);
  padding: 4rem 5% 2rem;
}
footer .nav-logo-image {
  width: 150px;
}
.footer-inner {
  display: flex; gap: 2.5rem; align-items: flex-start; flex-wrap: wrap;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { flex: 2 1 360px; }
.footer-col { flex: 1 1 180px; }
.footer-brand p { color: rgba(255,255,255,.45); font-size: .9rem; line-height: 1.75; margin: 1rem 0 1.6rem; max-width: 280px; }
.social-links { display: flex; gap: .8rem; }
.social-links a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-links a:hover { background: var(--orange); color: white; border-color: var(--orange); transform: translateY(-3px); }
.footer-col h4 { color: white; font-weight: 600; font-size: 1rem; margin-bottom: 1.3rem; }
.footer-col ul li { margin-bottom: .7rem; }
.footer-col ul li a { color: rgba(255,255,255,.45); font-size: .9rem; transition: color var(--transition), padding-left var(--transition); display: block; }
.footer-col ul li a:hover { color: var(--orange); padding-left: 6px; }
.contact-list { padding: 0; margin: 0; }
.contact-list li { margin-bottom: .6rem; display: flex; align-items: center; gap: .6rem; }
.contact-list a, .contact-list span { color: rgba(255,255,255,.45); font-size: .95rem; display: inline-flex; align-items: center; gap: .6rem; }
.contact-list a:hover { color: var(--orange); }
.contact-list i { color: rgba(255,255,255,.6); width: 20px; text-align: center; }
.footer-bottom {
  padding-top: 2rem; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .85rem; }
.footer-bottom span { color: var(--orange); }

/* ─── SPARKLE ELEMENTS ──────────────────────────────────── */
.sparkle {
  position: absolute; width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  animation: sparklePulse 2s ease-in-out infinite;
}
@keyframes sparklePulse {
  0%,100% { opacity: 0; transform: scale(0); }
  50%      { opacity: .8; transform: scale(1); }
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-content { order: 1; }
  .about-media { order: 2; }
  .about-image-wrap img { height: 380px; }
  .contact-inner { grid-template-columns: 1fr; }
  .map-container { min-height: 300px; }
  .footer-inner { gap: 1.6rem; }
  .footer-brand, .footer-col { flex: 1 1 48%; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section-pad { padding: 5rem 0; }
  section[style*="padding-top:9rem"] { padding-top: 6.4rem !important; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { gap: 1rem; }
  .footer-brand, .footer-col { flex: 1 1 100%; }
  .nav-logo-image { width: 80px; }
  .navbar .nav-logo-image { transform: scale(1.48); }
  footer .nav-logo-image { width: 130px; }
  .service-img { width: 56px; height: 56px; }
  .about-image-wrap img { height: auto; max-height: 320px; object-fit: cover; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: center; }
  section[style*="padding-top:9rem"] { padding-top: 5.8rem !important; }
  .nav-logo-image { width: 70px; }
  .navbar .nav-logo-image { transform: scale(1.42); }
  footer .nav-logo-image { width: 120px; }
}
