/* PICTORA - Main Stylesheet */
/* Design System: Glassmorphism with Purple Gradient Theme */

/* ========================================
   CSS VARIABLES & DESIGN TOKENS
======================================== */
:root {
  /* Colors */
  --color-white: #FFFFFF;
  --color-gradient-start: #3A1C62;
  --color-gradient-end: #5B30BF;
  --color-purple-secondary: #7C3AED;
  --color-purple-accent: #5B30BF;
  --color-text-primary: #000000;
  --color-text-secondary: #000000;
  --color-text-light: #9CA3AF;
  --color-success: #10B981;
  --color-error: #EF4444;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #3A1C62 100%);
  --gradient-text: linear-gradient(135deg, #7C3AED 0%, #3A1C62 100%);
  
  /* Typography */
  --font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Font Sizes */
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(107, 70, 193, 0.05);
  --shadow-md: 0 8px 32px rgba(107, 70, 193, 0.1);
  --shadow-lg: 0 12px 48px rgba(107, 70, 193, 0.15);
  
  /* Transitions */
  --transition-default: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Container */
  --container-max-width: 1280px;
  --container-padding: 1.5rem;
}

/* ========================================
   RESET & BASE STYLES
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-default);
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  transition: var(--transition-default);
}

/* ========================================
   UTILITY CLASSES
======================================== */
/* CONTAINER */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* TEXT – CLEAN (NO GRADIENT) */
.gradient-text {
  color: #000000;
  font-weight: 1000;
}

/* GLASS CARD – iOS 18 STYLE */
.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);

  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* SUBTLE HOVER (NO FLOATY DRAMA) */
.glass-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

/* SECTION */
.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

/* SECTION TITLE – BIG & CLEAN */
.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.8rem;
  color: #5B30BF;
}

/* SUBTITLE – SOFT iOS GRAY */
.section-subtitle {
  color: #black;
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-sm);
  transition: var(--transition-default);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}

.btn-white {
  background: white;
  color: var(--color-gradient-start);
  border: none;
}

.btn-white:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* ========================================
   NAVBAR
======================================== */
/* iOS 18 LIQUID GLASS NAVBAR */
/* FLOATING GLASS PILL NAVBAR (ZOHO style) */
.navbar {
  position: sticky;
  top: 0;
  inset-inline: 0;
  z-index: 1000;

  padding: 1rem 1rem 0;
  background: transparent;
  border: none;
  box-shadow: none;

  transition: padding 0.3s ease;
}

/* CONTAINER = the glass pill */
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  max-width: 1200px;
  margin: 0 auto;
  padding: 0.55rem 0.75rem 0.55rem 1rem;

  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.52) 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(22px) saturate(165%);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
  box-shadow:
    0 10px 34px rgba(91, 48, 191, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);

  transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* SCROLL STATE */
.navbar.scrolled {
  padding-top: 0.5rem;
}

.navbar.scrolled .navbar-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.72) 100%);
  box-shadow:
    0 14px 40px rgba(91, 48, 191, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* BRAND – logo in glass square + name + tagline */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;

  font-size: 1.35rem;
  font-weight: 600;
  color: #111;
  flex-shrink: 0;
}

.navbar-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 12px rgba(91, 48, 191, 0.18);
  padding: 4px;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.navbar-brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.navbar-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-text-light);
  display: none;
}

@media (min-width: 640px) {
  .navbar-tagline { display: block; }
}

/* SOCIAL ICONS – right side glass circles */
.navbar-social {
  display: none;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

@media (min-width: 1150px) {
  .navbar-social { display: flex; }
}

.navbar-social .icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;

  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.52) 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: #5b5570;
  font-size: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.navbar-social .icon-btn:hover {
  transform: translateY(-2px) scale(1.05);
  color: var(--color-purple-accent);
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 12px 28px rgba(91, 48, 191, 0.24);
}

/* MENU – clean centered links (no pill-in-pill) */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

/* LINKS – LIQUID GLASS PILL STYLE */
.navbar-link {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;

  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2px;

  color: #4a4560;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.navbar-link:hover {
  color: #3A1C62;
  background: rgba(124, 58, 237, 0.1);
  transform: translateY(-1px);
}

/* ACTIVE PAGE INDICATOR – GLASS PILL HIGHLIGHT */
.navbar-link.active {
  font-weight: 600;
  color: #fff;
  background: var(--gradient-primary);
  box-shadow:
    0 6px 18px rgba(91, 48, 191, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.navbar-link.active::after {
  content: none;
}

/* DROPDOWN – LIQUID GLASS CARD */
.dropdown-menu {
  position: absolute;
  top: 120%;
  right: 0;

  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);

  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 20px 48px rgba(91, 48, 191, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  min-width: 190px;
  padding: 0.5rem;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.navbar-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* DROPDOWN ITEMS */
.dropdown-item {
  display: block;
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #111;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(124, 58, 237, 0.12);
  color: #5B30BF;
}

/* HAMBURGER – LIQUID GLASS BUTTON */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;

  padding: 0.6rem 0.7rem;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 4px 14px rgba(91, 48, 191, 0.12);
  transition: background 0.25s ease, transform 0.25s ease;
}

.navbar-toggle:hover {
  background: rgba(124, 58, 237, 0.12);
}

.navbar-toggle span {
  width: 22px;
  height: 2.5px;
  border-radius: 4px;
  background: #3A1C62;
}

/* MOBILE MENU – iOS 18 GLASS */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 420px;
  height: 100vh;

  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);

  border-left: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    -16px 0 40px rgba(91, 48, 191, 0.16),
    inset 1px 0 0 rgba(255, 255, 255, 0.5);

  padding: 2rem 1.6rem;
  overflow-y: auto;

  transition: right 0.4s cubic-bezier(.4,0,.2,1);
  z-index: 1001;
}

.mobile-menu.active {
  right: 0;
}

/* HEADER */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.8rem;
}

/* ========================================
   CONTACT PAGE - iOS 18 LIQUID GLASS
======================================== */

/* CONTACT METHODS GRID */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin: 3rem 0;
}

/* CONTACT CARD - iOS GLASS STYLE */
.contact-card {
  text-align: center;
  padding: 2.2rem 1.8rem;
  
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* CONTACT ICON - GLASSMORPHIC CIRCLE */
.contact-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.2rem;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  font-size: 2rem;
  
  background: rgba(124, 58, 237, 0.12);
  backdrop-filter: blur(10px);
  
  border: 1.5px solid rgba(124, 58, 237, 0.2);
  border-radius: 50%;
  
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: rgba(124, 58, 237, 0.18);
  transform: scale(1.08);
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.6rem;
}

.contact-card p {
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 1.3rem;
  font-size: 0.98rem;
}

/* BUSINESS HOURS CARD */
.business-hours {
  padding: 2.5rem;
  text-align: center;
}

.business-hours h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
}

.hours-list {
  list-style: none;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.hours-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

/* MAP CONTAINER - iOS ROUNDED STYLE */
.map-container {
  margin: 3rem 0;
  border-radius: 20px;
  overflow: hidden;
  
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* SOCIAL LINKS - iOS 18 LIQUID GLASS */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.social-link {
  width: 64px;
  height: 64px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  
  color: #111;
  
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.social-link svg {
  width: 26px;
  height: 26px;
  transition: transform 0.3s ease;
}

/* HOVER - iOS STYLE LIFT */
.social-link:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.18);
  background: rgba(124, 58, 237, 0.08);
  color: #7c3aed;
}

.social-link:hover svg {
  transform: scale(1.1);
}

/* ACTIVE STATE */
.social-link:active {
  transform: translateY(-2px) scale(1.02);
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .social-links {
    gap: 1.2rem;
  }
  
  .social-link {
    width: 58px;
    height: 58px;
  }
  
  .social-link svg {
    width: 24px;
    height: 24px;
  }
}

/* CLOSE BUTTON – iOS STYLE */
.mobile-close {
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.55rem 0.7rem;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #3A1C62;

  transition: background 0.25s ease;
}

.mobile-close:hover {
  background: rgba(124, 58, 237, 0.15);
}

/* MENU LIST */
.mobile-menu-list {
  list-style: none;
}

/* ITEM */
.mobile-menu-item {
  margin-bottom: 0.4rem;
}

/* LINKS – CLEAN & BIG FONT */
.mobile-menu-link {
  position: relative;
  display: block;

  padding: 1rem 1rem;
  border-radius: 14px;

  font-size: 1.1rem;              /* 👈 Bigger font */
  font-weight: 500;
  letter-spacing: 0.2px;

  color: #111;
  transition: background 0.25s ease;
}

/* HOVER */
.mobile-menu-link:hover {
  background: rgba(124, 58, 237, 0.08);
}

/* ACTIVE PAGE – LIQUID GLASS PILL */
.mobile-menu-link.active {
  color: #fff;
  background: var(--gradient-primary);
  font-weight: 600;
  box-shadow:
    0 6px 18px rgba(91, 48, 191, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.mobile-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--gradient-primary);
  color: white;
  padding: 3rem 0 0;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  opacity: 0.9;
  margin-top: 0.5rem;
}

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

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

.footer-links a {
  opacity: 0.9;
  transition: var(--transition-default);
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 4px;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem 0;
  text-align: center;
  opacity: 0.9;
}

/* ========================================
   HERO SECTION
======================================== */

/* Hero — clean, seamless backdrop. The page's own fixed gradient provides the
   base ambiance, so the hero has no rectangular background box/seams. A focused
   spotlight glow (below) sits behind the image for a premium "lit stage" look. */
.hero-section {
  position: relative;
  overflow: hidden;
}

/* Old orb layer retired */
.hero-bg { display: none; }

.hero-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image {
  width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
  padding: 2rem 1.5rem 0;
}

/* PREMIUM SPOTLIGHT GLOW behind the hero image (soft, seamless, gently pulsing) */
.hero-image::before {
  content: "";
  position: absolute;
  inset: -16% -8% -10%;
  border-radius: 50%;
  background: radial-gradient(closest-side,
    rgba(124, 58, 237, 0.55),
    rgba(124, 58, 237, 0.15) 55%,
    transparent 78%);
  filter: blur(48px);
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
  animation: heroGlow 7s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.68; transform: scale(1); }
  50%      { opacity: 0.95; transform: scale(1.05); }
}

/* GLASS CARD STYLE - ALL ROUNDED EDGES */
.hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  position: relative;
  z-index: 1;

  /* iOS 18 Liquid Glass Card - Full Rounded */
  background: rgba(255, 255, 255, 0.5);

  border-radius: 28px; /* All corners rounded */
  border: 1px solid rgba(255, 255, 255, 0.5);

  box-shadow:
    0 20px 50px rgba(91, 48, 191, 0.18),
    0 4px 14px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* SUBTLE HOVER */
.hero-image img:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 60px rgba(91, 48, 191, 0.26),
    0 8px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* HERO CONTENT */
.hero-content {
  text-align: center;
  padding: 1rem 1.5rem;
}

/* HERO TITLE - PURPLE GRADIENT & EXTRA BOLD */
.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 800; /* Extra bold like screenshot */
  margin-bottom: 1.5rem;
  margin-top: 0;
  line-height: 1.1;
  
  /* Purple Gradient */
  background: linear-gradient(135deg, #6B46C1 0%, #9333EA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  letter-spacing: -0.03em;
  
  /* Multi-line title support */
  word-wrap: break-word;
}

/* SUBTITLE - CLEAN BLACK & BOLD */
.hero-subtitle {
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  font-weight: 600;
  color: #111;
  margin-bottom: 3rem;
  line-height: 1.3;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Common button style – ZOHO pill with icon + shine sweep */
.hero-buttons .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;

  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}

/* Shine sweep on hover */
.hero-buttons .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  transition: left 0.5s ease;
}

.hero-buttons .btn:hover::after { left: 140%; }

/* Icon inside hero buttons */
.hero-buttons .btn-icon {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

/* Primary button */
.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 10px 30px rgba(124, 58, 237, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 40px rgba(124, 58, 237, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* Outline buttons – LIQUID GLASS */
.btn-outline {
  background: rgba(255, 255, 255, 0.35);
  color: #5B30BF;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow:
    0 8px 24px rgba(91, 48, 191, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(124, 58, 237, 0.9);
  color: #fff;
  border-color: rgba(124, 58, 237, 0.9);
  transform: translateY(-3px);
  box-shadow:
    0 14px 32px rgba(124, 58, 237, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* 💻 Desktop / Laptop – SPLIT HERO (image left, content right) */
@media (min-width: 992px) {
  .hero-section {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 74px); /* fill viewport under sticky navbar */
  }

  .hero-wrapper {
    display: flex;
    align-items: stretch; /* both columns share the same height */
    gap: 3.5rem;
  }

  /* Image sits on the LEFT and stays compact (original 16/10 ratio kept) */
  .hero-image {
    flex: 0 0 48%;
    max-width: 48%;
    padding: 0;
    margin-bottom: 0;
    align-self: center; /* image keeps its natural height, never stretches */
  }

  .hero-image::before {
    inset: -0.6rem;
  }

  /* Keep the ORIGINAL image ratio (16/10) — only the size shrinks responsively */

  /* Content column matches the image height; text stays within image top & bottom */
  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 0;
  }

  /* Tighter spacing so title + buttons fit inside the image's height */
  .hero-content .hero-title {
    margin-top: 0;
    margin-bottom: 1rem;
  }

  .hero-content .hero-subtitle {
    margin-bottom: 1.75rem;
  }

  .hero-buttons {
    justify-content: flex-start;
    margin-top: 0;
  }
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}


/* ========================================
   GRID LAYOUTS
======================================== */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ========================================
   CARDS
======================================== */
.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: var(--transition-default);
}

.card-image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.5rem;
}

.card-description {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

/* Service Card */
.service-card {
  cursor: pointer;
}

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

/* Feature Card */
.feature-card {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  font-size: 2rem;
}

/* Review Card */
.review-card {
  padding: 1.5rem;
}

.review-rating {
  color: #FFA500;
  margin-bottom: 0.5rem;
}

.review-text {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  font-weight: var(--font-weight-semibold);
}

/* Package Card */
.package-card {
  position: relative;
  padding: 2rem;
  text-align: center;
}

.package-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

.package-popular {
  border: 2px solid var(--color-purple-accent);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

.package-name {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

.package-price {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.package-duration {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.package-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.package-features li::before {
  content: "✓";
  color: var(--color-success);
  font-weight: bold;
}

.package-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Package Category Sections (all-in-one packages page) */
.package-category {
  margin-bottom: 4rem;
  scroll-margin-top: 100px;
}

.package-category:last-child {
  margin-bottom: 0;
}

.package-category-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;

  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.package-category-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* ========================================
   PACKAGES HERO CARD (unique header)
======================================== */
.packages-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  margin: 0 auto 3rem;
  padding: 3.5rem 2rem;
  border-radius: 32px;
  text-align: center;

  background:
    radial-gradient(120% 140% at 15% 0%, rgba(124, 58, 237, 0.14) 0%, transparent 55%),
    radial-gradient(120% 140% at 85% 100%, rgba(91, 48, 191, 0.14) 0%, transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.42) 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 20px 50px rgba(91, 48, 191, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Soft floating orbs inside the card */
.packages-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: -1;
  animation: heroFloat 12s ease-in-out infinite;
}

.packages-hero-orb-1 {
  width: 260px;
  height: 260px;
  top: -90px;
  left: -60px;
  background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.7), transparent 65%);
}

.packages-hero-orb-2 {
  width: 300px;
  height: 300px;
  bottom: -110px;
  right: -70px;
  background: radial-gradient(circle at 70% 50%, rgba(91, 48, 191, 0.6), transparent 65%);
  animation-delay: -6s;
}

.packages-hero-inner {
  position: relative;
  z-index: 1;
}

/* Back button docked in the hero card (top-left) */
.packages-hero-back {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
}

.packages-hero-back:empty {
  display: none;
}

@media (max-width: 575px) {
  .packages-hero-back {
    top: 0.9rem;
    left: 0.9rem;
  }
}

.packages-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.5rem 1.1rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;

  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #5B30BF;

  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.packages-hero .page-title {
  margin-bottom: 0.75rem;
}

.packages-hero .section-subtitle {
  margin: 0 auto;
  max-width: 520px;
}

@media (max-width: 575px) {
  .packages-hero {
    padding: 2.5rem 1.25rem;
    border-radius: 24px;
  }
}

/* Back-to-all link on a filtered packages view */
.packages-back {
  text-align: center;
  margin-top: 3rem;
}

/* Icon-only back button */
.back-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: #5B30BF;

  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.45) 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    0 8px 22px rgba(91, 48, 191, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.back-icon-btn svg {
  width: 22px;
  height: 22px;
}

.back-icon-btn:hover {
  transform: translateX(-3px);
  color: #fff;
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(91, 48, 191, 0.32);
}

.packages-back a {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  color: #5B30BF;

  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.45) 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.packages-back a:hover {
  transform: translateY(-2px);
  color: #3A1C62;
  box-shadow: 0 10px 26px rgba(91, 48, 191, 0.16);
}

/* Sub-category heading (e.g. Mehndi / Wedding / Waleema under Wedding Photography) */
.package-subcategory-title {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin: 2rem 0 1.25rem;
  color: var(--color-text-primary);
}

.package-subcategory-title::before,
.package-subcategory-title::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  margin: 0 0.75rem;
  vertical-align: middle;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5));
  border-radius: 2px;
}

.package-subcategory-title::after {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.5), transparent);
}

/* Tighter spacing between the sub-grids inside a grouped category */
.package-category .package-subcategory-title + .package-grid {
  margin-bottom: 0.5rem;
}

.package-grid {
  margin-bottom: 0;
}

/* Combo Benefits cards – simple glass cards, no pricing/buttons */
.combo-card .package-name {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.combo-card .package-features {
  margin-bottom: 0;
}

/* ========================================
   CUSTOM PRODUCTS – PRODUCT CHIPS & ORDER HEADER
======================================== */
.product-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 720px;
  margin: 2rem auto 0;
}

.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;

  font-size: 0.95rem;
  font-weight: 600;
  color: #4a4560;

  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  box-shadow: 0 6px 18px rgba(91, 48, 191, 0.08);

  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.product-chip:hover {
  transform: translateY(-2px);
  color: #3A1C62;
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 10px 26px rgba(91, 48, 191, 0.16);
}

.product-chip.active {
  color: #fff;
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow:
    0 10px 26px rgba(91, 48, 191, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.product-chip-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* Order card header showing the selected product */
.order-product-header {
  display: flex;
  align-items: center;
  gap: 1rem;

  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(91, 48, 191, 0.12);
}

.order-product-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;

  border-radius: 18px;
  background: rgba(124, 58, 237, 0.12);
  border: 1.5px solid rgba(124, 58, 237, 0.2);
}

.order-product-meta h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.order-product-meta p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ========================================
   FORMS
======================================== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}

.form-label.required::after {
  content: " *";
  color: var(--color-error);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(107, 70, 193, 0.2);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--color-text-primary);
  transition: var(--transition-default);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-purple-accent);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-input:read-only {
  background: rgba(107, 70, 193, 0.05);
  cursor: not-allowed;
}

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

.form-help {
  display: block;
  margin-top: 0.25rem;
  font-size: var(--font-size-small);
  color: var(--color-text-light);
}

.form-error {
  display: block;
  margin-top: 0.25rem;
  font-size: var(--font-size-small);
  color: var(--color-error);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  margin: 3rem 0;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   ABOUT PAGE
======================================== */
.about-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image-wrapper {
  text-align: center;
}

.about-image {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid transparent;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-lg);
}

.about-content h1 {
  margin-bottom: 1rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.trust-elements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.trust-item {
  text-align: center;
  padding: 1rem;
  background: rgba(107, 70, 193, 0.05);
  border-radius: var(--radius-sm);
}

.trust-item strong {
  display: block;
  font-size: 1.5rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

/* ========================================
   PORTFOLIO
======================================== */
.portfolio-filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  background: transparent;
  color: var(--color-gradient-start);
  border: 2px solid var(--color-gradient-start);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: var(--transition-default);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}

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

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-default);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: var(--transition-default);
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-category {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.portfolio-title {
  color: white;
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  position: relative;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-default);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
}

/* ========================================
   CONTACT PAGE
======================================== */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  text-align: center;
  padding: 2rem;
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
}

.contact-card h3 {
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.business-hours {
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.hours-list {
  list-style: none;
  margin: 1rem 0;
}

.hours-list li {
  padding: 0.5rem 0;
  color: var(--color-text-secondary);
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 2rem 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   POLICY PAGE
======================================== */
.policy-section {
  margin-bottom: 2rem;
}

.policy-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-gradient-start);
}

.policy-section h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
}

.policy-section p,
.policy-section ul {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section ul {
  padding-left: 2rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
}

/* ========================================
   PAYMENT PAGE
======================================== */
.payment-instructions {
  padding: 2rem;
  margin-bottom: 2rem;
}

.payment-steps {
  list-style: none;
  counter-reset: step-counter;
}

.payment-steps li {
  counter-increment: step-counter;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(107, 70, 193, 0.05);
  border-radius: var(--radius-sm);
}

.payment-steps li::before {
  content: counter(step-counter);
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.payment-details {
  padding: 2rem;
  margin-bottom: 2rem;
}

.payment-info {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.payment-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(107, 70, 193, 0.05);
  border-radius: var(--radius-sm);
}

.info-label {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

.info-value {
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.copy-btn {
  padding: 0.25rem 0.75rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  cursor: pointer;
}

.copy-btn:hover {
  opacity: 0.9;
}

/* ========================================
   UTILITIES
======================================== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden {
  display: none !important;
}

.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.3s ease;
  z-index: 3000;
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-default);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--color-gradient-start);
  transition: var(--transition-default);
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb-separator {
  color: var(--color-text-light);
}

/* Loading Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(107, 70, 193, 0.2);
  border-top-color: var(--color-gradient-start);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 2rem auto;
}

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

/* ==================================================================
   LIGHT THEME — clean white glassmorphism, purple accents
================================================================== */
:root {
  --dk-bg: #f4f1fb;
  --dk-surface: rgba(255, 255, 255, 0.72);
  --dk-surface-2: rgba(255, 255, 255, 0.85);
  --dk-border: rgba(124, 58, 237, 0.14);
  --dk-border-strong: rgba(124, 58, 237, 0.4);
  --dk-text: #1a1030;
  --dk-muted: rgba(26, 16, 48, 0.62);
  --dk-purple: #5B30BF;
  --dk-grad: linear-gradient(135deg, #7c3aed 0%, #3A1C62 100%);
  --dk-glass-shadow:
    0 12px 34px rgba(91, 48, 191, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  --dk-glow: 0 0 30px rgba(124, 58, 237, 0.16);

  --color-text-primary: #1a1030;
  --color-text-secondary: rgba(26, 16, 48, 0.62);
  --color-text-light: rgba(26, 16, 48, 0.45);
}

body {
  color: var(--dk-text);
  background:
    radial-gradient(900px 620px at 12% -8%, rgba(124, 58, 237, 0.10), transparent 60%),
    radial-gradient(1000px 720px at 100% 6%, rgba(91, 48, 191, 0.08), transparent 55%),
    radial-gradient(800px 800px at 50% 120%, rgba(124, 58, 237, 0.07), transparent 60%),
    var(--dk-bg);
  background-attachment: fixed;
}

.gradient-text,
.hero-title,
.package-price,
.package-category-title,
.combo-card .package-name {
  background: var(--dk-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-title { color: #3A1C62; }
.section-subtitle,
.card-description,
.order-product-meta p,
.package-category-note,
.review-text,
.about-content p,
.hours-list li { color: var(--dk-muted); }

.card-title,
.package-name,
.package-features li,
.order-product-meta h2,
.contact-card h3,
.business-hours h3,
.review-author,
.hero-subtitle,
.form-label,
.about-content h1 { color: var(--dk-text); }

.glass-card,
.package-card,
.contact-card,
.product-chip,
.packages-hero,
.navbar-social .icon-btn,
.back-icon-btn,
.btn-outline,
.dropdown-menu {
  background: var(--dk-surface);
  border: 1px solid var(--dk-border);
  box-shadow: var(--dk-glass-shadow);
  color: var(--dk-text);
}

.glass-card:hover,
.package-card:hover,
.contact-card:hover {
  box-shadow: var(--dk-glass-shadow), var(--dk-glow);
}

.navbar-container,
.navbar.scrolled .navbar-container {
  background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.65) 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 10px 34px rgba(91, 48, 191, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.navbar-link { color: #4a4560; }
.navbar-link:hover { color: #3A1C62; background: rgba(124, 58, 237, 0.1); }
.navbar-tagline { color: var(--dk-muted); }
.navbar-social .icon-btn { color: #5b5570; }
.navbar-social .icon-btn:hover { color: #5B30BF; }
.navbar-toggle { background: rgba(124, 58, 237, 0.08); border: 1px solid rgba(124,58,237,0.15); }
.navbar-toggle span { background: #3A1C62; }

.dropdown-item { color: var(--dk-text); }
.dropdown-item:hover { background: rgba(124, 58, 237, 0.12); color: #5B30BF; }

.mobile-menu {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.82) 100%);
  border-left: 1px solid rgba(124,58,237,0.12);
  box-shadow: -18px 0 44px rgba(31, 17, 58, 0.18);
}
.mobile-menu-link { color: var(--dk-text); }
.mobile-menu-link:hover { background: rgba(124, 58, 237, 0.1); }
.mobile-close {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124,58,237,0.15);
  color: #3A1C62;
}
.mobile-close:hover { background: rgba(124, 58, 237, 0.16); }

.btn-outline {
  color: #5B30BF;
  border: 1.5px solid rgba(124, 58, 237, 0.4);
}
.btn-outline:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}
.btn-white { background: #fff; }

.package-popular {
  border: 1.5px solid rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1), var(--dk-glow);
}
.package-subcategory-title { color: #3A1C62; }
.package-features li::before { color: #10B981; }
.order-product-header { border-bottom: 1px solid rgba(124, 58, 237, 0.12); }
.order-product-icon {
  background: rgba(124, 58, 237, 0.12);
  border: 1.5px solid rgba(124, 58, 237, 0.22);
}

.product-chip { color: #4a4560; }
.product-chip:hover { color: #5B30BF; border-color: rgba(124, 58, 237, 0.4); }

.hero-image img {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 20px 50px rgba(91, 48, 191, 0.18),
    0 4px 14px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.packages-hero {
  background:
    radial-gradient(120% 140% at 15% 0%, rgba(124, 58, 237, 0.12) 0%, transparent 55%),
    radial-gradient(120% 140% at 85% 100%, rgba(91, 48, 191, 0.1) 0%, transparent 55%),
    rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.65);
}
.packages-hero-badge {
  color: #5B30BF;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
}
.back-icon-btn { color: #5B30BF; }
.back-icon-btn:hover { color: #fff; background: var(--gradient-primary); }
.packages-back a {
  color: #5B30BF;
  background: var(--dk-surface);
  border: 1px solid var(--dk-border);
}
.packages-back a:hover { color: #3A1C62; }

.form-input,
.form-select,
.form-textarea {
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(124, 58, 237, 0.2);
  color: var(--dk-text);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(26, 16, 48, 0.4); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.14);
}
.form-input:read-only { background: rgba(124, 58, 237, 0.05); }
.form-select option { background: #fff; color: var(--dk-text); }
.form-help { color: var(--dk-muted); }

.contact-icon {
  background: rgba(124, 58, 237, 0.12);
  border: 1.5px solid rgba(124, 58, 237, 0.22);
  color: #5B30BF;
}
.contact-card p { color: var(--dk-muted); }
.hours-list li { border-bottom: 1px solid rgba(124, 58, 237, 0.12); }

.breadcrumb { color: var(--dk-muted); }
.breadcrumb a { color: #5B30BF; }
.breadcrumb-separator { color: var(--dk-muted); }

.portfolio-category { color: #e6d9ff; }
.portfolio-title { color: #fff; }

.feature-icon svg { width: 34px; height: 34px; color: #fff; }
.contact-icon svg { width: 36px; height: 36px; }

.package-subcategory-title::before {
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5));
}
.package-subcategory-title::after {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.5), transparent);
}

/* ===== FOOTER (light glass) ===== */
.footer {
  position: relative;
  overflow: hidden;
  margin-top: 5rem;
  padding: 3.5rem 0 0;
  border: none;
  border-radius: 32px 32px 0 0;
  color: var(--dk-text);
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(124, 58, 237, 0.10) 0%, transparent 55%),
    rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    0 -18px 50px rgba(91, 48, 191, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, 70%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #7c3aed 25%, #a67ffa 50%, #7c3aed 75%, transparent);
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.5);
}

.footer::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.footer .container { position: relative; z-index: 1; }
.footer-content { gap: 2.5rem; padding-bottom: 2.5rem; }

.footer-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  padding: 7px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(124,58,237,0.15);
  box-shadow: 0 6px 18px rgba(91, 48, 191, 0.18);
  margin-bottom: 0.9rem;
}

.footer-logo + h3 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: var(--dk-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.footer-logo + h3::after { display: none; }

.footer-tagline { color: var(--dk-muted); max-width: 260px; line-height: 1.6; }

.footer-column h3,
.footer-heading,
.footer-section h4 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.65rem;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1030;
}

.footer-column h3::after,
.footer-heading::after,
.footer-section h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--dk-grad);
}

.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--dk-muted);
  opacity: 1;
  transition: color 0.25s ease, transform 0.25s ease, padding-left 0.25s ease;
}
.footer-links a::before {
  content: "\203A";
  margin-right: 0;
  width: 0;
  opacity: 0;
  color: #7c3aed;
  font-weight: 700;
  transition: width 0.25s ease, opacity 0.25s ease, margin-right 0.25s ease;
}
.footer-links a:hover { color: #3A1C62; padding-left: 0; }
.footer-links a:hover::before { width: 12px; margin-right: 6px; opacity: 1; }

.footer-contact p { color: var(--dk-muted); display: flex; align-items: center; gap: 0.4rem; }

.footer-bottom {
  margin-top: 1rem;
  border-top: 1px solid rgba(124, 58, 237, 0.12);
  color: var(--dk-muted);
  font-size: 0.85rem;
  letter-spacing: 0.2px;
}

/* ===== DROPDOWN (light) ===== */
.navbar-dropdown { position: relative; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: 0.35rem; cursor: pointer; }
.dd-caret {
  display: inline-block;
  font-size: 0.7em;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(.22, 1, .36, 1), color 0.25s ease;
}
.navbar-dropdown:hover .dropdown-toggle { color: #3A1C62; }
.navbar-dropdown:hover .dd-caret { transform: rotate(180deg); color: #7c3aed; }

.dropdown-menu {
  padding: 0.5rem;
  border-radius: 18px;
  min-width: 200px;
  transform-origin: top right;
  transform: translateY(-10px) scale(0.94);
  box-shadow:
    0 20px 48px rgba(91, 48, 191, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 24px rgba(124, 58, 237, 0.14);
}
.navbar-dropdown:hover .dropdown-menu { transform: translateY(0) scale(1); }

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 28px;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.9);
  border-left: 1px solid rgba(124, 58, 237, 0.14);
  border-top: 1px solid rgba(124, 58, 237, 0.14);
}

.dropdown-item { display: flex; align-items: center; gap: 0.35rem; border-radius: 12px; font-weight: 600; }
.dropdown-item::before {
  content: "\203A";
  width: 0;
  opacity: 0;
  overflow: hidden;
  color: #7c3aed;
  font-weight: 700;
  transition: width 0.25s ease, opacity 0.25s ease;
}
.dropdown-item:hover::before { width: 12px; opacity: 1; }

/* ===== OFFERS ===== */
.package-offer {
  position: absolute;
  top: -10px;
  left: 20px;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #ff5f8f 0%, #d6266a 100%);
  box-shadow: 0 8px 20px rgba(214, 38, 106, 0.4), inset 0 1px 0 rgba(255,255,255,0.35);
  z-index: 2;
}

.offer-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 auto 2.5rem;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(124,58,237,0.95), rgba(214,38,106,0.9));
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 14px 40px rgba(124, 58, 237, 0.28), inset 0 1px 0 rgba(255,255,255,0.3);
}
.offer-banner-icon { font-size: 1.3rem; }

/* Hero spacing on mobile/tablet */
@media (max-width: 991px) {
  .hero-section { padding-top: 1rem; padding-bottom: 0.5rem; }
}
