/* ============================================
   Anicham Event Planner - Styles
   Elegant, premium, wedding/event theme
   ============================================ */

:root {
  --bg: #F8F7F4;
  --bg-pink: #F5E6E8;
  --bg-pink-soft: #FAF0F2;
  --bg-dark: #2A2220;
  --accent: #8B2942;
  --accent-dark: #6B1E32;
  --maroon: #7B2034;
  --gold: #C9A227;
  --gold-light: #E8D5A3;
  --gold-bg: #D4A84B;
  --text: #2C2420;
  --text-muted: #5C534E;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(44, 36, 32, 0.08);
  --shadow-soft: 0 2px 12px rgba(44, 36, 32, 0.05);
  --shadow-hover: 0 12px 40px rgba(44, 36, 32, 0.14);
  --shadow-premium: 0 20px 50px rgba(139, 41, 66, 0.12);
  --radius: 8px;
  --radius-lg: 14px;
  --radius-full: 9999px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --script: 'Great Vibes', cursive;
  --sans: 'Outfit', -apple-system, sans-serif;
  --transition: 0.25s ease-out;
  --transition-slow: 0.4s ease-out;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(245, 230, 232, 0.4) 0%, transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

body.page-loaded {
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ========== Section common ========== */
.section {
  padding: 4.5rem 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
  will-change: opacity, transform;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
}

.section__title::before,
.section__title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
  border-radius: var(--radius-full);
}

.section__title::before {
  right: calc(50% + 100px);
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section__title::after {
  left: calc(50% + 100px);
}

.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

@media (max-width: 600px) {
  .section__title::before,
  .section__title::after {
    width: 28px;
  }
  .section__title::before {
    right: calc(50% + 72px);
  }
  .section__title::after {
    left: calc(50% + 72px);
  }
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.2s ease, box-shadow var(--transition);
}

.btn:active {
  transform: scale(0.96);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(139, 41, 66, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #5a1828 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 41, 66, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #B8921F 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
}

.btn--gold:hover {
  background: linear-gradient(135deg, #B8921F 0%, #A07D1A 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.45);
}

.btn--hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--cta-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--cta-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ========== Header / Nav ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 230, 232, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 36, 32, 0.06);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nav__logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: var(--radius-full);
  transition: width var(--transition);
}

.nav__logo:hover::after {
  width: 100%;
}

.nav__logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 0.2rem;
}

.nav__link:hover,
.nav__link:focus {
  color: var(--accent);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav__link:hover::after,
.nav__link:focus::after {
  transform: scaleX(1);
}

.nav__cta {
  padding: 0.55rem 1.35rem;
  background: linear-gradient(135deg, var(--gold) 0%, #B8921F 100%);
  color: var(--white) !important;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(201, 162, 39, 0.3);
}

.nav__cta:hover {
  background: linear-gradient(135deg, #B8921F 0%, #A07D1A 100%);
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.4);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 0;
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }

  .nav__menu.open {
    max-height: 80vh;
    opacity: 1;
    overflow-y: auto;
  }

  .nav__menu .nav__link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(44, 36, 32, 0.08);
    width: 100%;
  }

  .nav__menu .nav__cta {
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920') center/cover no-repeat;
  filter: brightness(0.55);
  will-change: transform;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(44, 36, 32, 0.15) 0%, rgba(139, 41, 66, 0.25) 50%, rgba(44, 36, 32, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0;
  animation: fadeInUp 1s ease;
}

.hero__script {
  font-family: var(--script);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  animation: fadeInUp 1s ease 0.15s both;
}

.hero__script::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  border-radius: var(--radius-full);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 520px;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.45s both;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes floatPulse {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ========== About ========== */
.about {
  background: var(--bg-pink);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about__heading {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.about__text {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about__stats--inline {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.stat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 2px solid rgba(201, 162, 39, 0.2);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.stat-circle:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 162, 39, 0.4);
}

.stat-circle__number {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-circle__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.2;
  margin-top: 0.25rem;
}

.about__qualities {
  display: flex;
  align-items: stretch;
}

.qualities-card {
  background: var(--white);
  border: 1px solid rgba(139, 41, 66, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition), transform var(--transition);
}

.qualities-card:hover {
  box-shadow: var(--shadow);
}

.qualities-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.qualities-card__list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text);
  font-size: 1rem;
}

.qualities-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__stats--inline {
    justify-content: flex-start;
  }
}

/* ========== Services ========== */
.services {
  background: var(--bg);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  border: 1px solid rgba(139, 41, 66, 0.06);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform, box-shadow;
}

.services.visible .service-card {
  opacity: 1;
  transform: translateY(0);
}

.services.visible .service-card:nth-child(1) { transition-delay: 0.05s; }
.services.visible .service-card:nth-child(2) { transition-delay: 0.1s; }
.services.visible .service-card:nth-child(3) { transition-delay: 0.15s; }
.services.visible .service-card:nth-child(4) { transition-delay: 0.2s; }
.services.visible .service-card:nth-child(5) { transition-delay: 0.25s; }
.services.visible .service-card:nth-child(6) { transition-delay: 0.3s; }
.services.visible .service-card:nth-child(7) { transition-delay: 0.35s; }
.services.visible .service-card:nth-child(8) { transition-delay: 0.4s; }
.services.visible .service-card:nth-child(9) { transition-delay: 0.45s; }
.services.visible .service-card:nth-child(10) { transition-delay: 0.5s; }

.services.visible .service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(201, 162, 39, 0.2);
}

.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== Process ========== */
.process {
  background: var(--bg-pink);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.process__step {
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  will-change: opacity, transform;
}

.process.visible .process__step:nth-child(1) { transition-delay: 0.1s; }
.process.visible .process__step:nth-child(2) { transition-delay: 0.25s; }
.process.visible .process__step:nth-child(3) { transition-delay: 0.4s; }

.process.visible .process__step {
  opacity: 1;
  transform: translateY(0);
}

.process__circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.process__step:hover .process__circle {
  transform: scale(1.08);
  box-shadow: var(--shadow-hover);
}

.process__icon {
  font-size: 2.25rem;
}

.process__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.process__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .process__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Gallery ========== */
.gallery {
  background: var(--bg);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition);
}

.gallery__item:hover {
  box-shadow: var(--shadow-hover);
}

.gallery__item::after {
  content: '⊕';
  position: absolute;
  inset: 0;
  background: rgba(139, 41, 66, 0.35);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  transition: opacity var(--transition);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease-out;
  will-change: transform;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== Lightbox ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  color: var(--white);
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}

.lightbox__close:hover {
  color: var(--gold-light);
}

.lightbox__img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

/* ========== Packages ========== */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.package-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
  border: 1px solid rgba(44, 36, 32, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  will-change: transform, box-shadow;
  cursor: pointer;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.package-card--featured {
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.2), var(--shadow-premium);
  transform: scale(1.02);
}

.package-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.3), var(--shadow-premium);
}

.package-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 20px;
}

.package-card__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 1rem 0 0.5rem;
}

.package-card__price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.package-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.package-card__features {
  margin: 1.5rem 0;
  text-align: left;
}

.package-card__features li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.package-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.package-card__btn {
  width: 100%;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .packages__grid {
    grid-template-columns: 1fr;
  }

  .package-card--featured {
    transform: none;
  }

  .package-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* ========== Testimonials ========== */
.testimonials__slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials__track {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.testimonials__track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
  border: 1px solid rgba(44, 36, 32, 0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  will-change: transform, box-shadow;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-light);
  opacity: 0.5;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 162, 39, 0.3);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card__quote {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.testimonial-card__author {
  font-weight: 600;
  color: var(--text);
  font-style: normal;
  display: block;
}

.testimonial-card__role {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-light);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.testimonials__dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.testimonials__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--white);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.testimonials__arrow:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.testimonials__arrow--prev {
  left: -60px;
}

.testimonials__arrow--next {
  right: -60px;
}

@media (max-width: 768px) {
  .testimonials__arrow--prev {
    left: 0;
  }

  .testimonials__arrow--next {
    right: 0;
  }
}

/* ========== CTA Strip ========== */
.cta-strip {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--accent-dark) 50%, #5a1828 100%);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-strip__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.cta-strip__sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-strip__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ========== Contact ========== */
.contact {
  background: var(--bg-pink);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__intro {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.contact__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  transition: background var(--transition), color var(--transition);
}

.contact__social a:hover {
  background: var(--accent);
  color: var(--white);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  border: 1px solid rgba(44, 36, 32, 0.2);
  border-radius: 4px;
  background: var(--white);
  transition: border-color var(--transition);
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact__form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.contact__icon {
  font-size: 1.5rem;
}

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

.contact__map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
  margin-top: 1rem;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Section divider ========== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
  margin: 0;
  border: none;
}

/* ========== Floating social buttons ========== */
.instagram-float {
  position: fixed;
  bottom: 11rem;
  right: 2rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  animation: floatPulse 3.2s ease-in-out infinite;
  will-change: transform;
}

.instagram-float i {
  font-size: 1.4rem;
}

.instagram-float__text {
  position: absolute;
  left: calc(100% + 10px);
  white-space: nowrap;
  background: var(--bg-dark);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow);
}

.instagram-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
}

.instagram-float:hover .instagram-float__text {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .instagram-float {
    bottom: 10rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
  }

  .instagram-float__text {
    display: none;
  }
}

/* ========== WhatsApp floating button ========== */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  animation: floatPulse 3.2s ease-in-out infinite;
  will-change: transform;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  background: #20bd5a;
  color: var(--white);
}

.whatsapp-float svg {
  flex-shrink: 0;
}

.whatsapp-float__text {
  position: absolute;
  left: calc(100% + 10px);
  white-space: nowrap;
  background: var(--bg-dark);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow);
}

.whatsapp-float:hover .whatsapp-float__text {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-float__text {
    display: none;
  }
}

/* Ensure floating buttons stay fixed on small screens */
@media (max-width: 768px) {
  .whatsapp-float,
  .instagram-float {
    position: fixed !important;
    z-index: 9999;
  }
}

/* ========== Back to top ========== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-hover);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #B8921F;
  color: var(--white);
  transform: translateY(-2px);
}

/* ========== Footer ========== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}

.footer__social a:hover {
  background: var(--accent);
  color: var(--white);
}

/* Brand colors for social icons */
.footer__social .fa-facebook-f,
.contact__social .fa-facebook-f {
  color: #1877F2;
}

.footer__social .fa-instagram,
.contact__social .fa-instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  position: relative;
  padding-left: 0;
  transition: color var(--transition), transform var(--transition);
}

.footer__links a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer__bottom {
  padding: 1.25rem 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__desc {
    max-width: none;
  }

  .footer__social {
    justify-content: center;
  }

  /* Extra space so footer text is not hidden behind floating buttons on mobile */
  .footer {
    padding-bottom: 11rem;
  }

/* Icon size */
a i {
  font-size: 24px;
  margin: 0 10px;
  transition: 0.3s ease;
}

/* Facebook official blue */
.facebook i {
  color: #1877F2;
}

/* Instagram official gradient */
.instagram i {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hover effect */
a:hover i {
  transform: scale(1.2);
}
  /* =====================================================
   ANICHAM EVENT PLANNER
   ULTRA HIGH SPEED ANIMATION ENGINE
   (Add at END of your CSS)
===================================================== */


/* ===============================
   GPU PERFORMANCE BOOST
=================================*/
*,
*::before,
*::after {
  backface-visibility: hidden;
  perspective: 1000px;
}

.section,
.service-card,
.package-card,
.gallery__item,
.testimonial-card,
.btn,
.nav__link,
.hero__content {
  will-change: transform, opacity;
  transform: translateZ(0);
}


/* ===============================
   FAST SECTION REVEAL
=================================*/
.section {
  opacity: 0;
  transform: translateY(40px) scale(.97);
  transition:
    opacity .45s cubic-bezier(.22,1,.36,1),
    transform .45s cubic-bezier(.22,1,.36,1);
}

.section.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* ===============================
   HERO CINEMATIC ENTRY
=================================*/
.hero__content > * {
  opacity: 0;
  transform: translateY(60px);
  animation: heroReveal .7s cubic-bezier(.22,1,.36,1) forwards;
}

.hero__content > *:nth-child(2){animation-delay:.08s;}
.hero__content > *:nth-child(3){animation-delay:.16s;}
.hero__content > *:nth-child(4){animation-delay:.24s;}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===============================
   HERO BACKGROUND CINEMATIC ZOOM
=================================*/
.hero__bg {
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}


/* ===============================
   SUPER FAST CARD HOVER
=================================*/
.service-card,
.package-card,
.testimonial-card {
  transition:
    transform .22s cubic-bezier(.22,1,.36,1),
    box-shadow .22s;
}

.service-card:hover,
.package-card:hover,
.testimonial-card:hover {
  transform: translateY(-10px) scale(1.04);
}

.option-pop {
  animation: optionCardPop 0.3s cubic-bezier(.22,1,.36,1);
}

@keyframes optionCardPop {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(201,162,39,.0);
    border-color: rgba(201,162,39,.35);
    background-image: none;
  }
  50% {
    transform: translateY(-8px) scale(1.08);
    box-shadow:
      0 18px 46px rgba(139,41,66,.22),
      0 0 22px rgba(201,162,39,.4);
    border-color: rgba(255,255,255,.98);
    background-image: radial-gradient(circle at top left, rgba(201,162,39,.45), rgba(139,41,66,.35));
  }
  100% {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
      0 12px 32px rgba(139,41,66,.16),
      0 0 14px rgba(201,162,39,.2);
    border-color: rgba(139,41,66,.8);
    background-image: radial-gradient(circle at top left, rgba(201,162,39,.12), #ffffff 55%);
  }
}

/* Tap / click feedback for main options */
.service-card:active,
.process__step:active,
.stat-circle:active,
.gallery__item:active {
  transform: translateY(-4px) scale(0.97);
  box-shadow:
    0 14px 32px rgba(139, 41, 66, 0.22),
    0 0 16px rgba(201, 162, 39, 0.28);
  border-color: rgba(201, 162, 39, 0.7);
  background-image: radial-gradient(circle at top left, rgba(201, 162, 39, 0.16), #ffffff 55%);
}


/* ===============================
   MAGNETIC BUTTON EFFECT
=================================*/
.btn {
  transition:
    transform .2s cubic-bezier(.22,1,.36,1),
    box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.btn:active {
  transform: scale(.92);
}


/* ===============================
   NAVBAR MICRO INTERACTION
=================================*/
.header {
  transition:
    background .35s ease,
    box-shadow .35s ease,
    backdrop-filter .35s ease;
}

.nav__link {
  transition:
    transform .25s ease,
    color .25s ease;
}

.nav__link:hover {
  transform: translateY(-2px);
}

.nav__link.nav-pop {
  animation: navOptionPop .25s cubic-bezier(.22,1,.36,1);
}

@keyframes navOptionPop {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(201,162,39,.0);
    border-color: rgba(201,162,39,.4);
  }
  50% {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 0 18px 2px rgba(201,162,39,.45);
    border-color: rgba(255,255,255,.9);
  }
  100% {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 0 0 0 rgba(201,162,39,.0);
    border-color: rgba(139,41,66,.8);
  }
}


/* ===============================
   GALLERY FAST ZOOM EFFECT
=================================*/
.gallery__item img {
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}

.gallery__item:hover img {
  transform: scale(1.12) rotate(.4deg);
}


/* ===============================
   PREMIUM FLOAT FEATURED CARD
=================================*/
.package-card--featured {
  animation: premiumFloat 4s ease-in-out infinite;
}

@keyframes premiumFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}


/* ===============================
   WHATSAPP FLOAT IMPROVEMENT
=================================*/
.whatsapp-float {
  animation: whatsappPulse 2.8s infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}


/* ===============================
   FAST IMAGE RENDER FIX
=================================*/
img {
  image-rendering: auto;
  transform: translateZ(0);
}


/* ===============================
   PREMIUM GLOW HOVER
=================================*/
.service-card:hover,
.package-card:hover {
  box-shadow:
    0 20px 45px rgba(139,41,66,.15),
    0 0 25px rgba(201,162,39,.15);
}


/* ===============================
   ULTRA SMOOTH BACK TO TOP
=================================*/
.back-to-top {
  transition:
    transform .25s cubic-bezier(.22,1,.36,1),
    opacity .25s;
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.08);
}
}

