/* ==============================================
   INVITATIONWEBSITE.IN — MAIN CSS
   Dark Mode Only — Black + Gold (#d4af37) — Uccify Brand
   ============================================== */

:root {
  --gold: #d4af37;
  --gold-light: #e8c96a;
  --gold-pale: #2a2418;
  --black: #0a0a0a;
  --dark: #161616;
  --text: #f0ebe3;
  --muted: #a89f94;
  --bg: #0c0c0c;
  --surface: #181818;
  --surface2: #1f1f1f;
  --border: #3d3830;
  --border-soft: #2a2824;
  --shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

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

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

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.logo-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.btn-book {
  background: var(--gold);
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}

.btn-book:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-count {
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme toggle hidden — dark mode only */
.theme-toggle {
  display: none;
}

/* === HERO === */
.hero {
  text-align: center;
  padding: 100px 24px 80px;
  background: linear-gradient(160deg, #0a0a0a 0%, #1c1206 50%, #0a0a0a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 32px;
  animation: badgePulse 3s ease infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: #fff;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-sub strong {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.btn-ghost {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === NOTICE BAR === */
.notice-bar {
  background: #1a1408;
  border-left: 4px solid var(--gold);
  padding: 14px 48px;
  font-size: 0.95rem;
  color: #d4c9b0;
}

.notice-bar strong {
  color: var(--gold);
}

/* === SECTION TITLES === */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
  color: #f0ebe3;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 40px;
}

/* === TEMPLATES SECTION === */
.templates-section {
  padding: 64px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.tab {
  background: var(--surface);
  border: 2px solid var(--border);
  color: #c8bfb0;
  padding: 9px 22px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-body);
}

.tab:hover,
.tab.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* === TEMPLATE GRID === */
.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.template-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border-soft);
}

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

.template-card.hidden {
  display: none;
}

.card-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.card-badge.birthday {
  background: #e8567a;
  color: #fff;
}

.card-badge.baby {
  background: #7c3aed;
  color: #fff;
}

.card-badge.corporate {
  background: #1e40af;
  color: #fff;
}

.card-badge.engagement {
  background: #be185d;
  color: #fff;
}

.card-badge.anniversary {
  background: #b45309;
  color: #fff;
}

.card-badge.cafe {
  background: #065f46;
  color: #fff;
}

/* Card preview */
.card-preview {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #111;
}

.card-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.template-card:hover .card-preview-img {
  transform: scale(1.04);
}

.card-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 55%);
  pointer-events: none;
}

/* Card placeholder style when image is not yet provided */
.card-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #201a10 0%, #0d0d0d 100%);
  color: var(--gold);
  border: 1px dashed rgba(212, 175, 55, 0.25);
  transition: background 0.3s, border-color 0.3s;
}

.template-card:hover .card-placeholder {
  background: radial-gradient(circle, #2d2416 0%, #121212 100%);
  border-color: rgba(212, 175, 55, 0.45);
}

.placeholder-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
  transition: transform 0.3s ease;
}

.template-card:hover .placeholder-icon {
  transform: scale(1.1) rotate(5deg);
}

.placeholder-text {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.template-card:hover .placeholder-text {
  color: var(--gold-light);
}

/* === COMING SOON CARDS === */
.coming-soon-card {
  cursor: default;
  border: 1px solid rgba(212, 175, 55, 0.18);
  position: relative;
  overflow: hidden;
}

.coming-soon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      transparent 40%,
      rgba(212, 175, 55, 0.04) 50%,
      transparent 60%);
  background-size: 200% 200%;
  animation: shimmerSweep 3s ease infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes shimmerSweep {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.coming-soon-card .card-placeholder {
  background: radial-gradient(circle at center, #121018 0%, #0a0a0a 100%);
  border: none;
  position: relative;
}

.coming-soon-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
}

.cs-icon {
  font-size: 2.8rem;
  animation: floatIcon 2.8s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.35));
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.cs-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  font-family: var(--font-body);
}

.cs-dots {
  display: flex;
  gap: 6px;
  margin-top: 2px;
}

.cs-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  animation: dotPulse 1.4s ease-in-out infinite;
}

.cs-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.cs-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {

  0%,
  80%,
  100% {
    opacity: 0.25;
    transform: scale(0.9);
  }

  40% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Coming soon footer tag */
.coming-soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
  animation: tagGlow 2.5s ease-in-out infinite;
}

@keyframes tagGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.2);
  }

  50% {
    box-shadow: 0 0 12px 2px rgba(212, 175, 55, 0.18);
  }
}

/* Card info */
.card-info {
  padding: 18px;
  background: var(--surface);
}

.card-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #f0ebe3;
  line-height: 1.3;
}

.card-info p {
  font-size: 0.88rem;
  color: #a89f94;
  margin-bottom: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.price-tag {
  background: #2a2418;
  color: var(--gold);
  border: 1px solid #3d3830;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.95rem;
}

.action-btns {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.btn-book-now {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  flex: 1;
  white-space: nowrap;
}

.btn-book-now:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.btn-customize {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  border: none;
  padding: 10px 14px;
  border-radius: 24px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
  display: inline-block;
  text-align: center;
  flex: 1;
  white-space: nowrap;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.btn-customize:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45);
}

/* === WEDDING PREVIEW CARDS (Reference Design) === */
.wedding-preview-card {
  background: #faf6f0;
  border: 1px solid #e8e0d4;
  border-radius: 20px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.wedding-preview-card .card-info {
  background: transparent;
  padding: 0 4px 12px;
  text-align: center;
  width: 100%;
}

.wedding-preview-card .card-info h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c2418;
  margin-bottom: 4px;
  line-height: 1.2;
}

.wedding-preview-card .card-info p {
  font-size: 0.85rem;
  color: #8a7e72;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Card thumbnail image */
.card-thumb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  border: 3px solid rgba(212, 175, 55, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card-thumb:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
}

/* Phone frame */
.card-phone-preview {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.phone-frame {
  width: 240px;
  height: 460px;
  background: #1a1a1a;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.2),
    inset 0 0 0 2px #333;
  border: 3px solid #2a2a2a;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #1a1a1a;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-frame iframe {
  width: 375px;
  height: 812px;
  border: none;
  transform: scale(0.64);
  transform-origin: top left;
  pointer-events: none;
  display: block;
  background: #fff;
}

/* Card buttons area */
.card-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.btn-view-large {
  display: inline-block;
  background: #2c2c2c;
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.25s;
  width: 100%;
  max-width: 260px;
  letter-spacing: 0.3px;
}

.btn-view-large:hover {
  background: #444;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.card-buttons-row {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

/* Removed redundant .wedding-preview-card specific button styles */

/* === PROCESS SECTION === */
.process-section {
  background: linear-gradient(180deg, #111008, var(--bg));
  padding: 80px 24px;
  text-align: center;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1100px;
  margin: 48px auto 0;
}

.step {
  background: var(--surface);
  border-radius: 12px;
  padding: 28px 20px;
  width: 170px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s;
}

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

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.step-icon {
  font-size: 1.8rem;
  margin: 8px 0;
}

.step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #f0ebe3;
}

.step p {
  font-size: 0.8rem;
  color: var(--muted);
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  padding: 0 8px;
  opacity: 0.5;
}

/* === PRICING === */
.pricing-section {
  padding: 80px 24px;
  text-align: center;
  background: var(--surface);
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 30px;
}

.price-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  min-width: 120px;
  font-size: 0.9rem;
  line-height: 2;
  transition: all 0.3s;
  cursor: default;
  color: #d4c9b0;
}

.price-card strong {
  color: var(--gold);
  font-size: 1.1rem;
  display: block;
}

.price-card:hover,
.highlight-card {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: scale(1.05);
}

.price-card:hover strong,
.highlight-card strong {
  color: #000;
}

.pricing-note {
  background: #1a1408;
  border: 1px solid #3a3020;
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
  color: #d4c9b0;
}

.pricing-note p {
  margin: 6px 0;
  font-size: 0.95rem;
  color: #c4b99a;
}

.pricing-note strong {
  color: var(--gold);
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, #080808, #111);
  border-top: 1px solid var(--border);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 12px;
  color: #fff;
}

.cta-section h2 em {
  color: var(--gold);
  font-style: italic;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
  font-size: 1rem;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn-primary-light {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary-light:hover {
  background: var(--gold);
  color: #000;
}

/* === FOOTER === */
.footer {
  width: 100%;
  background: #050505;
  border-top: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 48px 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: var(--gold);
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
  font-size: 0.85rem;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: var(--gold);
  margin: 0 6px;
}

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

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 998;
  animation: waBounce 2s ease infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  animation: none;
}

@keyframes waBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  .header {
    padding: 14px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-text {
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #080808;
    padding: 20px 24px 28px;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
  }

  .nav.open {
    display: flex;
  }

  .nav-link {
    font-size: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    padding: 60px 16px 50px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat strong {
    font-size: 1.5rem;
  }

  .notice-bar {
    padding: 12px 16px;
    font-size: 0.88rem;
  }

  .templates-section {
    padding: 40px 12px;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

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

  .tab {
    white-space: nowrap;
    padding: 8px 16px;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .template-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .action-btns {
    width: 100%;
  }

  .btn-book-now {
    flex: 1;
    text-align: center;
  }

  /* Wedding preview cards mobile */
  .wedding-preview-card {
    padding: 16px 12px 16px;
  }

  .phone-frame {
    width: 200px;
    height: 390px;
  }

  .phone-frame iframe {
    width: 375px;
    height: 812px;
    transform: scale(0.533);
  }

  .btn-view-large {
    font-size: 0.82rem;
    padding: 9px 20px;
  }

  .card-buttons-row {
    flex-wrap: nowrap;
  }

  .wedding-preview-card .btn-book-now {
    font-size: 0.82rem;
    padding: 9px 14px;
  }

  .process-section {
    padding: 48px 16px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .step {
    width: 100%;
    max-width: 280px;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
    opacity: 0.35;
  }

  .pricing-section {
    padding: 48px 16px;
  }

  .pricing-grid {
    gap: 10px;
  }

  .price-card {
    min-width: 90px;
    padding: 14px 12px;
    font-size: 0.82rem;
  }

  .cta-section {
    padding: 56px 16px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-whatsapp,
  .btn-primary-light {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .footer {
    padding: 36px 16px 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .card-preview {
    height: 195px;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 7px 14px;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .template-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header {
    padding: 14px 24px;
  }

  .nav {
    gap: 20px;
  }
}