/* ============================================
   eCARDS — Premium Wedding Design System
   Based on Figma design: teal + blush pink
   Fonts: Playfair Display (headings), Inter (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   1. CSS CUSTOM PROPERTIES — FIGMA PALETTE
   ============================================ */
:root {
  /* ---- Primary: Teal ---- */
  --clr-teal: #12908D;
  --clr-teal-dark: #0E7673;
  --clr-teal-light: #14B4B0;
  --clr-teal-glow: rgba(18, 144, 141, 0.25);

  /* ---- Accent: Blush Pink ---- */
  --clr-pink: #FFF0EB;
  --clr-pink-dark: #F5D6CC;

  /* ---- Neutral / Dark ---- */
  --clr-dark: #2B2823;
  --clr-dark-2: #3D3A35;
  --clr-body: #4A4A5A;
  --clr-white: #FFFFFF;
  --clr-cream: #FEFEFE;
  --clr-light-gray: #F2F2F2;
  --clr-muted: #9CA3AF;
  --clr-border: #E5E4E1;

  /* ---- Typography ---- */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  --leading-tight: 1.15;
  --leading-snug: 1.35;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  /* ---- Spacing ---- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* ---- Shadows ---- */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.04);
  --shadow-md: 0 4px 12px -2px rgb(0 0 0 / 0.06), 0 2px 4px -2px rgb(0 0 0 / 0.04);
  --shadow-lg: 0 12px 32px -8px rgb(0 0 0 / 0.08), 0 4px 12px -4px rgb(0 0 0 / 0.04);
  --shadow-xl: 0 20px 48px -12px rgb(0 0 0 / 0.1), 0 8px 16px -8px rgb(0 0 0 / 0.04);
  --shadow-teal: 0 4px 20px var(--clr-teal-glow);
  --shadow-teal-lg: 0 8px 40px var(--clr-teal-glow);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);

  /* ---- Border Radius ---- */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;

  /* ---- Transitions ---- */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--clr-body);
  background-color: var(--clr-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--clr-teal);
  color: var(--clr-white);
}

img {
  max-width: 100%;
  height: auto;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

a {
  color: var(--clr-teal-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--clr-teal);
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--clr-dark);
  line-height: var(--leading-tight);
  font-weight: var(--font-bold);
}

.welcomeHeading {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--clr-dark);
  letter-spacing: -0.01em;
  line-height: var(--leading-tight);
}

.welcomeHeading .teal-accent {
  color: var(--clr-teal);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
}

/* ============================================
   4. CUSTOM LINE DIVIDER
   ============================================ */
.custom-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-teal), var(--clr-teal-light), var(--clr-teal));
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-full);
}

.custom-line-left {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-teal), transparent);
  margin: 0 0 var(--space-4);
  border-radius: var(--radius-full);
}

/* ============================================
   5. DECORATIVE ANIMATIONS
   ============================================ */

/* Floating Particles for Hero */
.floating-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(20, 180, 176, 0.4);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; width: 4px; height: 4px; }
.particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1.2s; width: 6px; height: 6px; }
.particle:nth-child(3) { left: 45%; top: 10%; animation-delay: 2.4s; width: 3px; height: 3px; }
.particle:nth-child(4) { left: 65%; top: 70%; animation-delay: 0.8s; width: 5px; height: 5px; }
.particle:nth-child(5) { left: 80%; top: 30%; animation-delay: 3.6s; width: 4px; height: 4px; }
.particle:nth-child(6) { left: 15%; top: 85%; animation-delay: 1.8s; width: 7px; height: 7px; }
.particle:nth-child(7) { left: 55%; top: 45%; animation-delay: 4.2s; width: 3px; height: 3px; }
.particle:nth-child(8) { left: 90%; top: 55%; animation-delay: 2.0s; width: 5px; height: 5px; }
.particle:nth-child(9) { left: 35%; top: 35%; animation-delay: 3.0s; width: 4px; height: 4px; }
.particle:nth-child(10) { left: 72%; top: 15%; animation-delay: 5.0s; width: 6px; height: 6px; }

.particle-ring {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(20, 180, 176, 0.3);
  border-radius: 50%;
  opacity: 0;
  animation: float-ring 8s ease-in-out infinite;
}

.particle-ring:nth-child(11) { left: 20%; top: 40%; animation-delay: 1s; width: 16px; height: 16px; }
.particle-ring:nth-child(12) { left: 50%; top: 75%; animation-delay: 3.5s; width: 22px; height: 22px; }
.particle-ring:nth-child(13) { left: 75%; top: 25%; animation-delay: 5.5s; width: 14px; height: 14px; }
.particle-ring:nth-child(14) { left: 8%; top: 65%; animation-delay: 2.5s; width: 18px; height: 18px; }
.particle-ring:nth-child(15) { left: 40%; top: 5%; animation-delay: 4.5s; width: 12px; height: 12px; }

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(20px) scale(0); }
  20% { opacity: 0.6; }
  60% { opacity: 0.4; transform: translateY(-60px) scale(1); }
  100% { opacity: 0; transform: translateY(-120px) scale(0.5); }
}

@keyframes float-ring {
  0% { opacity: 0; transform: translateY(0) scale(0.5) rotate(0deg); }
  20% { opacity: 0.4; }
  50% { opacity: 0.3; transform: translateY(-80px) scale(1) rotate(180deg); }
  100% { opacity: 0; transform: translateY(-160px) scale(0.6) rotate(360deg); }
}

/* Heart Beat */
@keyframes heartBeat {
  0% { transform: scale(1); }
  15% { transform: scale(1.15); }
  30% { transform: scale(1); }
  45% { transform: scale(1.1); }
  60% { transform: scale(1); }
}

.heart-beat {
  animation: heartBeat 1.5s ease-in-out infinite;
  display: inline-block;
}

/* ---- Fade-In-Up Reveal (Intersection Observer) ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   6. BUTTONS — Teal Primary
   ============================================ */
.btn {
  font-family: var(--font-body);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-8);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  letter-spacing: 0.3px;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

/* Teal Primary */
.btn-teal {
  background: var(--clr-teal);
  border: none;
  color: var(--clr-white);
  box-shadow: 0 4px 16px var(--clr-teal-glow);
}

.btn-teal:hover {
  background: var(--clr-teal-dark);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--clr-teal-glow);
}

/* Teal Outline */
.btn-outline-teal {
  border: 2px solid var(--clr-teal);
  color: var(--clr-teal-dark);
  background: transparent;
}

.btn-outline-teal:hover {
  background: var(--clr-teal);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--clr-teal-glow);
}

/* Dark */
.btn-dark-custom {
  background: var(--clr-dark);
  border: none;
  color: var(--clr-white);
}

.btn-dark-custom:hover {
  background: var(--clr-dark-2);
  color: var(--clr-white);
  transform: translateY(-2px);
}

/* Bootstrap primary override — teal */
.btn-primary {
  background: var(--clr-teal) !important;
  border: none !important;
  color: var(--clr-white) !important;
  box-shadow: 0 4px 16px var(--clr-teal-glow) !important;
}

.btn-primary:hover {
  background: var(--clr-teal-dark) !important;
  color: var(--clr-white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px var(--clr-teal-glow) !important;
}

/* Search Button */
.searchBtn {
  color: var(--clr-white);
  background: var(--clr-teal);
  font-weight: var(--font-semibold);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full) !important;
  border: none;
  letter-spacing: 0.5px;
  font-size: var(--text-sm);
  transition: all var(--transition-base);
  font-family: var(--font-body);
}

.searchBtn:hover {
  background: var(--clr-teal-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-teal);
  color: var(--clr-white);
}

/* Let's Talk / Outline button — teal border */
.letsBtn {
  color: var(--clr-teal);
  background: transparent;
  font-weight: var(--font-semibold);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full) !important;
  border: 2px solid var(--clr-teal);
  transition: all var(--transition-base);
  font-family: var(--font-body);
}

.letsBtn:hover {
  background: var(--clr-teal);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--clr-teal-glow);
}

.textBtn {
  font-size: var(--text-sm) !important;
  font-family: var(--font-body);
  font-weight: var(--font-medium) !important;
  color: var(--clr-dark-2);
  padding: var(--space-3) var(--space-4);
  background: transparent;
  border: none;
}

.textBtn:hover {
  color: var(--clr-teal) !important;
}

/* ============================================
   7. SEARCH BAR
   ============================================ */
.searchBar {
  max-width: 600px;
  background: var(--clr-white);
  padding: var(--space-1);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: all var(--transition-base);
  overflow: hidden;
  position: relative;
}

.searchBar:focus-within {
  border-color: var(--clr-teal);
  box-shadow: 0 4px 32px var(--clr-teal-glow);
}

.searchField {
  border: none !important;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  background: transparent !important;
}

.searchField:focus {
  box-shadow: none !important;
}

/* ============================================
   8. HEADER / NAVIGATION — Solid White
   ============================================ */
.nav-bar {
  transition: all var(--transition-base);
  z-index: 1030;
  background: var(--clr-white);
}

.customNavSetting {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
}

.nav-bar.nav-scrolled .customNavSetting {
  background: var(--clr-white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.navbar-light .navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: var(--font-medium);
  font-size: var(--text-sm);
  color: var(--clr-dark-2) !important;
  padding: var(--space-3) var(--space-4);
  margin: 0 var(--space-1);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
  letter-spacing: 0.3px;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--clr-teal-dark) !important;
  background: rgba(18, 144, 141, 0.06);
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--clr-teal-dark) !important;
  background: rgba(18, 144, 141, 0.08);
}

.navbar-light .navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--clr-teal);
  border-radius: var(--radius-full);
}

/* Dropdown for nav */
.dropdown-menu {
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  padding: var(--space-2);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  min-width: 200px;
}

.dropdown-item {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--clr-dark-2);
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(18, 144, 141, 0.06);
  color: var(--clr-teal-dark);
  transform: translateX(4px);
}

.profileDropDown {
  font-weight: var(--font-medium);
  color: var(--clr-dark) !important;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.acc_Image {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--clr-teal-light);
}

.download_img {
  width: 18px;
  margin-right: var(--space-2);
  opacity: 0.6;
}

.profileNAme {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: var(--space-2);
}

.profileNAme h6 {
  margin-bottom: 0;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  font-family: var(--font-body);
}

.profileNAme p {
  margin-bottom: 0;
  font-size: var(--text-xs);
  color: var(--clr-muted);
}

/* ============================================
   9. HERO SECTION — Dark Background
   ============================================ */
.hero-section {
  background: var(--clr-dark);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(18, 144, 141, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(20, 180, 176, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-16) var(--space-6);
}

.hero-section .hero-script {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--clr-teal-light);
  font-size: var(--text-lg);
  display: block;
  margin-bottom: var(--space-4);
  letter-spacing: 0.5px;
}

.hero-section h1 {
  color: var(--clr-white);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  letter-spacing: -0.02em;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

.hero-section h1 .teal-accent {
  color: var(--clr-teal-light);
}

.hero-section .hero-subtext {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto var(--space-8);
  line-height: var(--leading-relaxed);
}

/* ============================================
   10. CARDS — Blush Pink Backgrounds
   ============================================ */
.card {
  border: none;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all var(--transition-base);
  background: var(--clr-white);
  box-shadow: var(--shadow-card);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--clr-teal-light), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 2;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(18, 144, 141, 0.1);
}

.card:hover::before {
  opacity: 1;
}

.card-img-top {
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  transition: transform var(--transition-slow);
}

.card:hover .card-img-top {
  transform: scale(1.06);
}

.card-body {
  padding: var(--space-5);
}

.card-title {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--clr-dark);
  margin-bottom: 0;
  font-family: var(--font-body);
}

.card-link {
  text-decoration: none;
  display: block;
}

.card-link:hover .card-title {
  color: var(--clr-teal-dark);
}

/* ============================================
   11. CATEGORY CARDS — Blush Pink
   ============================================ */
.category-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--clr-pink);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  position: relative;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.category-card .category-img {
  position: relative;
  overflow: hidden;
}

.category-card .category-img img {
  transition: transform var(--transition-slow);
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.category-card:hover .category-img img {
  transform: scale(1.1);
}

.category-card .category-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(18, 144, 141, 0.15) 70%,
    rgba(43, 40, 35, 0.6) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 2;
}

.category-card:hover .category-img::after {
  opacity: 1;
}

.category-card .category-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: linear-gradient(transparent, rgba(43, 40, 35, 0.85));
  padding: var(--space-12) var(--space-5) var(--space-4);
  font-size: var(--text-xl);
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  color: var(--clr-white);
}

/* ============================================
   12. CATEGORIES SECTION
   ============================================ */
.categories-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ============================================
   13. TRENDING SECTION
   ============================================ */
.trendingView {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ============================================
   14. BADGE ON TRENDING CARDS
   ============================================ */
.featured-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-4);
  background: var(--clr-pink);
  border: 1px solid var(--clr-pink-dark);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--clr-teal-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  gap: var(--space-1);
}

.featured-badge i {
  font-size: 10px;
  color: var(--clr-teal);
}

/* ============================================
   15. HOW IT WORKS SECTION
   ============================================ */
.step-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--clr-white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--clr-border);
  transition: all var(--transition-base);
  position: relative;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-teal-light);
}

.step-number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-pink);
  border: 2px solid var(--clr-teal-light);
  border-radius: 50%;
  margin: 0 auto var(--space-4);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--clr-teal-dark);
  transition: all var(--transition-base);
}

.step-card:hover .step-number {
  background: var(--clr-teal);
  border-color: var(--clr-teal);
  color: var(--clr-white);
  box-shadow: 0 4px 16px var(--clr-teal-glow);
}

.step-card h4 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--clr-dark);
  margin-bottom: var(--space-3);
}

.step-card p {
  font-size: var(--text-sm);
  color: var(--clr-muted);
  line-height: var(--leading-relaxed);
}

.step-icon {
  font-size: var(--text-3xl);
  color: var(--clr-teal);
  margin-bottom: var(--space-3);
}

/* ============================================
   16. TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-card .quote-icon {
  color: var(--clr-teal-light);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  opacity: 0.5;
}

.testimonial-card p {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--clr-dark-2);
  line-height: var(--leading-relaxed);
}

.testimonial-card .testimonial-author {
  margin-top: var(--space-4);
  font-weight: var(--font-semibold);
  color: var(--clr-dark);
  font-size: var(--text-sm);
}

.testimonial-card .testimonial-role {
  font-size: var(--text-xs);
  color: var(--clr-muted);
}

/* Wedding Divider */
.wedding-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin: var(--space-8) 0;
}

.wedding-divider .line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-teal), transparent);
}

.wedding-divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--clr-teal);
  transform: rotate(45deg);
}

/* ============================================
   17. CALL TO ACTION — Teal Gradient
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--clr-teal-dark) 0%, var(--clr-teal) 50%, var(--clr-teal-light) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--space-16) 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 240, 235, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-heading);
  color: var(--clr-white);
  font-size: var(--text-4xl);
  position: relative;
  z-index: 2;
}

.cta-section .cta-script {
  font-family: var(--font-heading);
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-lg);
  display: block;
  margin-bottom: var(--space-2);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}

.cta-section .btn-cta {
  background: var(--clr-white);
  color: var(--clr-teal-dark);
  border: none;
  font-weight: var(--font-bold);
  padding: var(--space-4) var(--space-10);
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  transition: all var(--transition-base);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.cta-section .btn-cta:hover {
  background: var(--clr-pink);
  color: var(--clr-teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ============================================
   18. FOOTER — Clean White
   ============================================ */
.footer {
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.footer .footer-item h3 {
  color: var(--clr-dark);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer .footer-item h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--clr-teal);
  border-radius: var(--radius-full);
}

.footer .footer-item p {
  color: var(--clr-body);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.footer .footer-item a {
  color: var(--clr-body);
  font-size: var(--text-sm);
  line-height: 2.6;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer .footer-item a:hover {
  color: var(--clr-teal);
  transform: translateX(6px);
}

.footer .footer-item i {
  font-size: var(--text-sm);
  color: var(--clr-teal) !important;
}

.footer .social-link {
  color: var(--clr-muted) !important;
  transition: color var(--transition-fast) !important;
  opacity: 1 !important;
}

.footer .social-link:hover {
  color: var(--clr-teal) !important;
}

.footer-copyright {
  border-top: 1px solid var(--clr-border);
  padding: var(--space-6) 0;
  text-align: center;
}

.footer-copyright p {
  margin-bottom: 0;
  color: var(--clr-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.5px;
}

/* ============================================
   19. BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-teal);
  color: var(--clr-white);
  border: none;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px var(--clr-teal-glow);
  transition: all var(--transition-base);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

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

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--clr-teal-glow);
  color: var(--clr-white);
}

/* ============================================
   20. OWL CAROUSEL TRENDING
   ============================================ */
.attractions-carousel .owl-stage-outer {
  margin-top: 0;
}

.attractions-item {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.attractions-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  border: 2px solid transparent;
  transition: border-color var(--transition-base);
}

.attractions-item:hover::after {
  border-color: var(--clr-teal);
}

.attractions-item img {
  transition: transform var(--transition-slow);
  border-radius: var(--radius-2xl);
}

.attractions-item:hover img {
  transform: scale(1.06);
}

/* ============================================
   21. OFFCANVAS / SIDEBAR
   ============================================ */
.offcanvas {
  background: var(--clr-white);
}

.offcanvas-header {
  border-bottom: 1px solid var(--clr-border);
  padding: var(--space-5);
}

.offcanvas-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--clr-dark);
}

.sidebarHeading {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--clr-teal-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Submenu */
.submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  padding-left: var(--space-6);
}

.submenu-link {
  text-decoration: none;
  color: var(--clr-dark-2);
  display: block;
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}

.submenu-link:hover {
  color: var(--clr-teal-dark);
  padding-left: var(--space-2);
}

.submenu-icon {
  float: right;
  font-size: 12px;
  color: var(--clr-muted);
  transition: transform var(--transition-base);
}

.submenu-icon.rotate {
  transform: rotate(90deg);
}

/* ============================================
   22. CATEGORY MOBILE SCROLL
   ============================================ */
.viewCategories {
  padding: var(--space-4);
  overflow: hidden;
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
}

.category-grid {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  scrollbar-width: none;
}

.category-grid::-webkit-scrollbar {
  display: none;
}

.category-item {
  background: var(--clr-pink);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  flex: 0 0 auto;
  white-space: nowrap;
  transition: all var(--transition-fast);
  font-size: var(--text-sm);
  border: 1px solid transparent;
}

.category-item:hover {
  background: var(--clr-pink-dark);
  border-color: var(--clr-teal-light);
}

.category-link {
  text-decoration: none;
  color: var(--clr-dark-2);
}

.category-link.active {
  font-weight: var(--font-semibold);
  color: var(--clr-teal-dark);
}

.category-item:hover .category-link {
  color: var(--clr-teal-dark);
}

/* ============================================
   23. PLANS / PRICING
   ============================================ */
.packageDiv {
  max-width: 900px;
  margin: 0 auto;
}

.currentPlanDiv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--clr-pink);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: 0 4px 24px rgba(18, 144, 141, 0.08);
  border: 1px solid var(--clr-teal-light);
}

.plan-details {
  max-width: 60%;
}

.plan-title {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--clr-dark);
  margin-bottom: var(--space-2);
  font-family: var(--font-heading);
}

.plan-price {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--clr-dark);
  margin: var(--space-2) 0;
  font-family: var(--font-heading);
}

.per-month {
  font-size: var(--text-base);
  color: var(--clr-muted);
  margin-left: var(--space-2);
  font-weight: var(--font-normal);
}

.plan-user {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--clr-dark-2);
  margin-bottom: var(--space-2);
  display: block;
}

.plan-description {
  font-size: var(--text-sm);
  color: var(--clr-body);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.rightImagePackage img {
  max-width: 180px;
  height: auto;
  border-radius: var(--radius-xl);
}

.subButton {
  font-family: var(--font-body);
  width: auto;
  padding: var(--space-3) var(--space-8);
}

/* ============================================
   24. DOWNLOADS TAB
   ============================================ */
.tab {
  overflow: hidden;
  display: flex;
  background: var(--clr-light-gray);
  border-radius: var(--radius-xl);
  padding: var(--space-1);
  border: 1px solid var(--clr-border);
}

.tab button {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: var(--space-3) var(--space-6);
  transition: all var(--transition-base);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--clr-dark-2);
  border-radius: var(--radius-lg);
  flex: 1;
  font-family: var(--font-body);
}

.tab button.active {
  background: var(--clr-white);
  color: var(--clr-teal-dark);
  box-shadow: var(--shadow-sm);
  border-bottom: none;
}

.tabcontent {
  display: none;
  padding: var(--space-6);
  border-top: none;
}

.tabSectionDiv {
  max-width: 900px;
  margin: 0 auto;
}

/* Card item in downloads */
.card-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.card-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-2xl);
  background: var(--clr-white);
  transition: all var(--transition-base);
}

.card-item:hover {
  border-color: var(--clr-teal-light);
  box-shadow: 0 4px 20px rgba(18, 144, 141, 0.08);
}

.card-image img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.card-content {
  flex: 1;
  margin-left: var(--space-5);
}

.card-content h4 {
  margin: 0;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  font-family: var(--font-body);
}

.card-content p {
  margin: var(--space-1) 0 0;
  font-size: var(--text-sm);
  color: var(--clr-muted);
}

.card-actions {
  display: flex;
  gap: var(--space-2);
}

.action-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--clr-teal);
  transition: all var(--transition-fast);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
}

.action-btn:hover {
  background: rgba(18, 144, 141, 0.1);
  color: var(--clr-teal-dark);
}

/* ============================================
   25. TABLE
   ============================================ */
.table {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.table thead th {
  background: var(--clr-light-gray);
  color: var(--clr-dark);
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  border-bottom: 2px solid var(--clr-teal-light);
  padding: var(--space-3) var(--space-4);
}

.table tbody td {
  padding: var(--space-3) var(--space-4);
  vertical-align: middle;
  border-bottom: 1px solid var(--clr-border);
  font-size: var(--text-sm);
}

/* ============================================
   26. DASHBOARD TILES
   ============================================ */
.dashboard-tiles {
  padding: var(--space-6);
  background: linear-gradient(135deg, var(--clr-teal), var(--clr-teal-dark));
  border-radius: var(--radius-2xl);
  color: var(--clr-white);
  transition: all var(--transition-base);
}

.dashboard-tiles:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--clr-teal-glow);
}

.tiles-title h3 {
  color: var(--clr-white);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  opacity: 0.9;
  font-family: var(--font-body);
}

.cardCount span {
  color: var(--clr-white);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
}

/* ============================================
   27. CHART
   ============================================ */
.ChartDiv {
  background: var(--clr-white);
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
}

.pieChartHeadingDiv span,
.barChartHeadingDiv span {
  color: var(--clr-dark);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  font-family: var(--font-heading);
}

/* ============================================
   28. PRELOADER
   ============================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--clr-white);
  display: none;
}

#preloader:before {
  content: '';
  position: fixed;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  border: 3px solid var(--clr-teal-light);
  border-top-color: var(--clr-teal);
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
  to { transform: rotate(360deg); }
}

/* ============================================
   29. UTILITY
   ============================================ */
.text-teal {
  color: var(--clr-teal) !important;
}

.bg-pink {
  background-color: var(--clr-pink) !important;
}

.bg-cream {
  background-color: var(--clr-cream) !important;
}

.border-teal {
  border-color: var(--clr-teal-light) !important;
}

/* ============================================
   30. ANIMATION KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fadeInUp {
  animation: fadeInUp 0.7s ease forwards;
}

.fadeIn {
  animation: fadeIn 0.5s ease forwards;
}

/* ============================================
   31. SKELETON LOADING
   ============================================ */
.skeleton {
  background: linear-gradient(90deg, var(--clr-light-gray) 25%, var(--clr-pink-dark) 50%, var(--clr-light-gray) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text {
  height: 14px;
  margin-bottom: var(--space-2);
  width: 80%;
}

.skeleton-image {
  height: 200px;
  width: 100%;
}

/* ============================================
   32. SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--clr-light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-teal-light);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-teal);
}

/* ============================================
   33. REDUCE MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   34. RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
  .hero-section {
    min-height: 440px;
  }

  .hero-section h1 {
    font-size: var(--text-4xl);
  }
}

@media (max-width: 991px) {
  .navbar.navbar-expand-lg .navbar-toggler {
    border: none;
    color: var(--clr-dark);
    padding: var(--space-2);
  }

  .navbar.navbar-expand-lg .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-light .navbar-nav .nav-link {
    padding: var(--space-2) 0;
  }

  .welcomeHeading {
    font-size: var(--text-3xl);
  }

  .cta-section h2 {
    font-size: var(--text-3xl);
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 380px;
  }

  .hero-section h1 {
    font-size: var(--text-3xl);
  }

  .hero-section .hero-content {
    padding: var(--space-10) var(--space-4);
  }

  .welcomeHeading {
    font-size: var(--text-2xl);
  }

  .currentPlanDiv {
    flex-direction: column;
    text-align: center;
    gap: var(--space-4);
  }

  .plan-details {
    max-width: 100%;
  }

  .acc_Image {
    width: 28px;
    height: 28px;
  }

  .footer-container {
    padding: 0 var(--space-4);
  }

  .cta-section {
    padding: var(--space-10) 0;
  }

  .cta-section h2 {
    font-size: var(--text-2xl);
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 340px;
  }

  .hero-section h1 {
    font-size: var(--text-2xl);
  }

  .hero-section .hero-subtext {
    font-size: var(--text-sm);
  }

  .searchBar {
    max-width: 100%;
  }

  .step-card {
    padding: var(--space-6) var(--space-4);
  }

  .category-card .category-img img {
    height: 200px;
  }
}

/* ============================================
   35. MOBILE SIDEBAR TOGGLES
   ============================================ */
.categoryMobileSide {
  display: block;
}

.categoryMobileView {
  display: block;
}

@media (max-width: 767px) {
  .categoryMobileSide {
    display: none !important;
  }

  .viewCategories {
    display: block;
  }

  .mobileView {
    display: block;
  }

  .tabView {
    display: none !important;
  }

  .cardName {
    font-size: var(--text-xs);
  }

  .iconButton {
    width: 100% !important;
  }

  .cardDateTime {
    font-size: 11px !important;
  }
}

/* ============================================
   36. LEGACY COMPATIBILITY
   ============================================ */
.cardHeight {
  height: 100%;
}

.for_Flex {
  display: flex;
  gap: var(--space-4);
}

.for_Flex.mobileView img {
  margin-bottom: 0;
}

.mainCard,
.maincard {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.row.m-0 {
  margin: 0 !important;
}

.col-6 {
  padding: 5px;
}
