:root {
  --primary: #6D28D9;   /* Royal Purple */
  --secondary: #F59E0B; /* Golden Amber */
  --accent: #EC4899;    /* Pink accent */
  --dark: #0F172A;      /* Deep Navy */
  --light: #ffffff;
  --bg: #F3F4F6;       /* Soft Gray */
  --muted: #6B7280;    /* Slate */
  --radius-lg: 20px;
  --shadow-soft: 0 18px 40px rgba(15,23,42,0.18);
  --shadow-card: 0 10px 30px rgba(15,23,42,0.12);
  --transition-fast: 180ms ease-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background:
    radial-gradient(circle at top left, rgba(236,72,153,0.15), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(96,165,250,0.14), transparent 55%),
    var(--bg);
  color: var(--dark);
}

html {
  scroll-behavior: smooth;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; border: 0; }

/* HEADER */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(15,23,42,0.06);
  z-index: 1000;
  border-bottom: 1px solid rgba(148,163,184,0.25);
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 0.85rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.logo span {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  background: rgba(109,40,217,0.08);
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width var(--transition-fast);
}

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

/* MOBILE NAV TOGGLE (DESKTOP LO HIDE) */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.3rem;
  color: var(--dark);
}

.btn {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 12px 30px rgba(109,40,217,0.35);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 18px 40px rgba(109,40,217,0.45);
}

.btn-outline {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(148,163,184,0.5);
  color: var(--dark);
}

.btn-outline:hover {
  background: var(--light);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15,23,42,0.15);
}

/* MAIN LAYOUT */
main {
  padding-top: 5rem;
}

/* HERO (home only) */
.hero {
  padding: 2.5rem 1.25rem 3.5rem;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,1fr);
  gap: 2.4rem;
  align-items: center;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(148,163,184,0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-buttons {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}

.hero img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 26px 60px rgba(15,23,42,0.32);
}

/* PAGE SECTIONS */
section.page {
  max-width: 1200px;
  margin: auto;
  padding: 2.8rem 1.25rem;
  position: relative;
}

section.page::before {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border-radius: 32px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 20px 40px rgba(15,23,42,0.09);
  z-index: -1;
}

.page-title {
  margin-bottom: 0.4rem;
  font-size: 1.5rem;
}

.section-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.sub {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* CARDS & GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1.5rem;
}

.card {
  position: relative;
  background: radial-gradient(circle at top left, rgba(236,72,153,0.08), white 55%);
  border-radius: 22px;
  padding: 1.3rem 1.3rem 1.4rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  border: 1px solid rgba(148,163,184,0.35);
}

.card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(245,158,11,0.26), transparent 60%);
  top: -60px;
  right: -40px;
  opacity: 0.85;
  pointer-events: none;
  z-index: -1;
}

.card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 45px rgba(15,23,42,0.22);
  border-color: rgba(109,40,217,0.45);
}

.card h3 { margin-bottom: 0.4rem; }

.price {
  color: var(--primary);
  font-weight: 700;
  margin: 0.5rem 0;
}

ul {
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
}

ul li { margin-bottom: 0.2rem; }

ul li::before {
  content: '• ';
  color: var(--accent);
}

/* SPECIAL BLOCK */
.highlight {
  background: radial-gradient(circle at top left, rgba(236,72,153,0.12), rgba(255,255,255,0.95));
  border-radius: 22px;
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(109,40,217,0.28);
  font-size: 0.9rem;
  margin-bottom: 1.6rem;
}

/* REVIEWS */
.review { font-size: 0.85rem; }
.stars { color: #fbbf24; margin-bottom: 0.35rem; }

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 1.2rem;
}

.step {
  background: white;
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 6px 16px rgba(15,23,42,0.08);
  font-size: 0.87rem;
}

.step-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.8rem;
  font-size: 0.87rem;
  box-shadow: 0 4px 14px rgba(15,23,42,0.07);
}

.faq-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-line {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

form {
  display: grid;
  gap: 0.75rem;
}

input,
textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.85rem;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.map iframe {
  width: 100%;
  height: 260px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 14px 34px rgba(15,23,42,0.22);
}

/* FOOTER */
footer {
  background: radial-gradient(circle at top left, rgba(109,40,217,0.55), rgba(15,23,42,1));
  color: white;
  padding: 2.7rem 1.25rem 2.2rem;
  margin-top: 2.4rem;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 1.5rem;
  font-size: 0.85rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e5e7eb;
  position: relative;
  padding-bottom: 0.25rem;
}

/* small gradient underline for footer titles */
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  opacity: 0.95;
}

.copy {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  opacity: 0.78;
}

.copy span { color: var(--secondary); }

/* FLOATING WHATSAPP */
.float-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.35rem;
  box-shadow: 0 16px 35px rgba(22,163,74,0.7);
  z-index: 999;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.float-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 48px rgba(22,163,74,0.85);
}

/* RESPONSIVE */
@media(max-width:800px){
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 6.3rem;
  }

  .hero-buttons { justify-content: center; }
  .hero-badges { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  section.page { padding: 2.3rem 1rem; }
  section.page::before { inset: 0.3rem; border-radius: 26px; }

  

  /* MOBILE NAVIGATION */

    .nav-whatsapp {
    display: none !important;
  }

  .nav {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    margin-top: 0.6rem;
    background: rgba(255,255,255,0.97);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15,23,42,0.20);
    flex-direction: column;
    padding: 0.7rem 0.9rem;
    display: none; /* default hidden on mobile */
    z-index: 999;
  }

  .nav-links a {
    padding: 0.45rem 0.2rem;
  }

  .nav-links.open {
    display: flex;
  }
  
  .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 0.6rem;
  box-shadow: 0 10px 26px rgba(15,23,42,0.22);
  transition: transform 160ms ease-out, box-shadow 160ms ease-out;
}

.gallery-item:hover img {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(15,23,42,0.32);
}

.gallery-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(15,23,42,0.85);
  color: #f9fafb;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  position: relative;
  z-index: 2;
  margin-bottom: 0.45rem;
}

/* NEW: name + rating layout */
.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}

.gallery-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.gallery-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.gallery-rating .stars i {
  color: #fbbf24;
  font-size: 0.75rem;
  margin-right: 1px;
}

.gallery-rating .rating-score {
  font-size: 0.7rem;
  color: var(--muted);
}

.gallery-caption {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

}
