:root {
  --primary: #c1277d;
  --primary-dark: #9b1b6e;
  --primary-light: #e0409a;
  --secondary: #e9c46a;
  --secondary-dark: #c9a227;
  --bg: #faf5fc;
  --text: #1a1025;
  --white: #ffffff;
  --muted: #6b5b7a;
  --shadow: 0 12px 36px rgba(122, 20, 88, 0.18);
  --radius: 16px;
  --transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  opacity: 1;
  transition: opacity 0.5s ease;
  padding-bottom: 0;
}

h1,
h2,
h3,
.section-title {
  font-family: "Playfair Display", Georgia, serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Header — pink brand bar on every page */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: var(--transition);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 22px rgba(193, 39, 125, 0.4);
}

.site-header.scrolled {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #7a1458 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 28px rgba(122, 20, 88, 0.45);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 78px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: auto;
  height: 58px;
  max-width: 140px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  transition: var(--transition);
}

.logo:hover .brand-logo {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.85rem;
  color: var(--white);
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.92rem;
}

.nav-links a {
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--secondary);
  color: #fce8b8;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  color: var(--white);
  position: relative;
  isolation: isolate;
  padding-top: 5rem;
}

.inner-hero {
  min-height: 52vh;
  display: grid;
  align-items: center;
  color: var(--white);
  position: relative;
  padding-top: 6rem;
  isolation: isolate;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(42, 12, 58, 0.9), rgba(58, 16, 72, 0.78)),
    url("https://images.unsplash.com/photo-1517457373958-b7bdd4587205?auto=format&fit=crop&w=1800&q=80")
      center/cover;
  z-index: -1;
}

.inner-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  margin-bottom: 0.8rem;
}

.inner-hero p {
  max-width: 740px;
  color: #f3e0f5;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(35, 10, 48, 0.82), rgba(50, 14, 62, 0.72)),
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1800&q=80")
      center/cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(194, 24, 122, 0.28), transparent 50%);
  z-index: -1;
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.08rem;
  margin-bottom: 1.7rem;
  color: #f0e4f8;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194, 24, 122, 0.45);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: var(--secondary);
  color: #fce8b8;
  background: rgba(194, 24, 122, 0.2);
}

.services-grid,
.choose-grid,
.contact-grid,
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.events-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.2rem;
}

.feature-list {
  margin-top: 0.8rem;
  padding-left: 1.2rem;
}

.feature-list li {
  margin-bottom: 0.5rem;
  color: #4f4f4f;
}

.timeline,
.process-grid,
.stats-grid,
.event-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  text-align: center;
}

.stat-card h3 {
  color: var(--primary);
  font-size: 2rem;
}

.event-item {
  border-left: 4px solid var(--primary);
}

.cta-banner {
  text-align: center;
  background: linear-gradient(140deg, var(--primary-dark), var(--primary));
  color: var(--white);
}


.cta-banner--light {
  background: linear-gradient(135deg, #f8f0fc, #efe4f8);
  color: var(--text);
  border: 2px dashed rgba(194, 24, 122, 0.35);
}

.cta-banner--light h2 {
  color: var(--primary-dark);
}

.cta-banner--light p {
  color: var(--text);
}

.cta-banner p {
  margin: 0.8rem auto 1.2rem;
  max-width: 700px;
  color: #f3e0f8;
}

.upcoming-banner {
  text-align: center;
  background: linear-gradient(135deg, #f8f0fc, #efe4f8);
  border: 2px dashed rgba(194, 24, 122, 0.35);
  padding: 2.5rem 2rem;
}

.upcoming-banner h2 {
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.upcoming-banner p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
}

.upcoming-pulse {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 0.5rem;
  animation: pulseDot 1.8s ease infinite;
  vertical-align: middle;
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.35);
  }
}

/* Event cards with animated visuals */
.event-card {
  padding: 0;
  overflow: hidden;
}

.event-card-visual {
  height: 190px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    -45deg,
    var(--primary-dark),
    var(--primary),
    #9b1b6e,
    var(--primary-light)
  );
  background-size: 300% 300%;
  animation: shimmerBg 6s ease infinite;
}

.event-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 65%
  );
  animation: shineSweep 3.5s ease-in-out infinite;
}

@keyframes shimmerBg {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shineSweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}


.event-card-visual--photo {
  background: none;
  animation: none;
}

.event-card-visual--photo::after {
  display: none;
}

.event-card-visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.event-card:hover .event-card-visual--photo img {
  transform: scale(1.06);
}

.event-card-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 3rem;
  z-index: 1;
  opacity: 0.9;
}

.event-card-body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.event-card-body h3 {
  color: var(--primary-dark);
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.event-card-body p {
  color: #5a4d68;
  font-size: 0.95rem;
}

/* About logo showcase */
.logo-showcase {
  text-align: center;
  margin-bottom: 2.5rem;
}

.logo-showcase img {
  width: min(220px, 55%);
  margin: 0 auto;
  height: auto;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-14px) scale(1.03);
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-7px);
}

.service-card h3 {
  margin-bottom: 0.7rem;
  color: var(--primary-dark);
}

.service-card p,
.choose-card p {
  color: #5a4d68;
}

.choose-card {
  text-align: center;
}

.choose-card .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(194, 24, 122, 0.1);
  color: var(--primary);
  font-size: 1.4rem;
}

.choose-card:hover .icon {
  background: var(--primary);
  color: var(--secondary);
}

.testimonial-wrap {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  min-width: 100%;
  padding: 2rem;
}

.testimonial p {
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.testimonial strong {
  color: var(--primary);
}

.gallery-controls {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.filter-btn {
  border: 1px solid rgba(194, 24, 122, 0.35);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.gallery-preview-grid {
  margin-top: 1.5rem;
}

.gallery-preview-card {
  padding: 0.75rem;
  text-align: center;
}

.gallery-preview-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.gallery-preview-btn-wrap {
  margin-top: 2rem;
  display: block;
}

.gallery-grid {
  columns: 3 240px;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transform: scale(1);
  opacity: 1;
  transition: transform var(--transition), opacity var(--transition);
}

.gallery-item.hide {
  transform: scale(0.94);
  opacity: 0;
  pointer-events: none;
}

.gallery-item img {
  transition: transform 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.7rem 0.8rem;
  background: linear-gradient(transparent, rgba(26, 10, 38, 0.85));
  color: #fff;
  font-size: 0.88rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  width: min(920px, 90%);
  max-height: 85vh;
  object-fit: cover;
  border-radius: 14px;
}

.lightbox button {
  position: absolute;
  top: 24px;
  right: 28px;
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 2rem;
  cursor: pointer;
}

.contact-form {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.contact-form label {
  display: block;
  font-size: 0.94rem;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid #e8d4ef;
  border-radius: 10px;
  margin-bottom: 1rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(194, 24, 122, 0.35);
  border-color: var(--primary);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.map-card iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius);
}

.contact-details p {
  margin-bottom: 0.5rem;
}

.socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(194, 24, 122, 0.12);
  color: var(--primary);
  transition: var(--transition);
}

.socials a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.socials a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background: linear-gradient(160deg, #1a0a26 0%, #2d1040 55%, #3d1458 100%);
  color: #f0e6f8;
  padding: 3.5rem 0 2.5rem;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.footer-logo-img {
  width: min(160px, 100%);
  height: auto;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  transition: var(--transition);
}

.footer-logo-link:hover .footer-logo-img {
  transform: scale(1.05);
}

.footer-tagline {
  color: #d4c4e4;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  max-width: 320px;
}

.footer-contact h3,
.footer-links-col h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  font-family: "Playfair Display", Georgia, serif;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.footer-contact-list a {
  color: var(--secondary);
  transition: var(--transition);
}

.footer-contact-list a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: #e8ddf4;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(194, 24, 122, 0.25);
  border: 1px solid rgba(233, 196, 106, 0.35);
  transition: var(--transition);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(194, 24, 122, 0.45);
}

.footer-powered {
  background: #0a0a0a;
  text-align: center;
  padding: 0.65rem 1rem;
}

.footer-powered p {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffd700;
  letter-spacing: 0.03em;
}

.footer-powered a {
  color: #ffd700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.footer-powered a:hover {
  color: #fff;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: whatsappPulse 2.5s ease infinite;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.65);
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0.15);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}


/* Mobile hamburger menu */
.nav-toggle {
  display: none;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }

  .site-header.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav {
    flex-wrap: wrap;
    align-items: center;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
    background: linear-gradient(180deg, var(--primary-dark) 0%, #7a1458 100%);
    border-radius: 0 0 14px 14px;
    padding: 0.5rem 0 0.75rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  }

  .site-header.nav-open .main-nav {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    flex-wrap: nowrap;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-bottom: none;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
  }
}

@media (max-width: 900px) {
  .services-grid,
  .choose-grid,
  .contact-grid,
  .timeline,
  .process-grid,
  .stats-grid,
  .event-list,
  .split-grid,
  .events-grid,
  .events-grid--four,
  .footer-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .brand-logo {
    height: 42px;
    max-width: 130px;
  }

  .nav {
    min-height: 68px;
  }


  .hero p {
    font-size: 1rem;
  }

  .gallery-preview-card img {
    height: 130px;
  }

  .whatsapp-float {
    bottom: 72px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/* Footer — mobile */
@media (max-width: 900px) {
  .site-footer {
    padding: 2.5rem 0 1.75rem;
  }

  .footer-grid {
    gap: 1.75rem;
  }

  .footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-logo-img {
    width: 120px;
    max-width: 120px;
    margin: 0 auto 0.75rem;
    padding: 6px 10px;
  }

  .footer-tagline {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-contact,
  .footer-links-col {
    text-align: center;
  }

  .footer-contact-list li {
    justify-content: center;
    text-align: left;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem 1.25rem;
    max-width: 260px;
    margin: 0 auto;
  }

  .footer-nav a:hover {
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 2rem 0 1.25rem;
  }

  .footer-grid {
    gap: 1.35rem;
  }

  .footer-logo-img {
    width: 96px;
    max-width: 96px;
    padding: 5px 8px;
    border-radius: 8px;
    margin-bottom: 0.6rem;
  }

  .footer-tagline {
    font-size: 0.84rem;
    margin-bottom: 1rem;
    padding: 0 0.25rem;
  }

  .footer-contact h3,
  .footer-links-col h3 {
    font-size: 1rem;
    margin-bottom: 0.65rem;
  }

  .footer-contact-list li {
    font-size: 0.84rem;
    margin-bottom: 0.6rem;
    gap: 0.45rem;
  }

  .footer-icon {
    font-size: 0.95rem;
    flex-shrink: 0;
  }

  .footer-nav {
    max-width: 100%;
    gap: 0.35rem 0.75rem;
  }

  .footer-nav a {
    font-size: 0.86rem;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }

  .footer-powered p {
    font-size: 0.76rem;
    line-height: 1.45;
    padding: 0 0.5rem;
  }
}

