/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color System */
  --color-bg: #fafafa;
  --color-bg-alt: #f5f5f5;
  --color-surface: #ffffff;
  --color-text: #1a1a2e;
  --color-text-muted: #64748b;
  --gradient-cta: linear-gradient(
    135deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 100%
  );
  --color-accent: #1a1a2e;
  --color-border: rgba(0, 0, 0, 0.08);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 30px rgba(201, 169, 98, 0.3);

  /* Typography */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== STICKY HEADER ===== */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transform: translateY(-100%);
  opacity: 0;
  transition:
    transform var(--transition-smooth),
    opacity var(--transition-smooth);
}

.sticky-header.visible {
  transform: translateY(0);
  opacity: 1;
}

.header-content {
  max-width: 480px;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.02em;
  /* padding-left: 28px; */
}

/* ===== SCROLL CONTAINER ===== */
.scroll-container {
  height: 100svh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.scroll-section {
  height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: var(--color-surface);
}

.verified {
  align-items: center;
  gap: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.verifiedbig {
  padding-bottom: 5px;
}

.verified svg {
  width: 28px;
  height: 28px;
  padding-left: 4px;
  fill: rgb(66, 103, 178);
  stroke: white;
  stroke-width: 2px;
}

.hero-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45svh;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.5) 0%,
    rgba(26, 26, 46, 0.3) 50%,
    rgba(255, 255, 255, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: calc(40svh - 120px);
  padding-bottom: 2rem;
  /* padding-bottom: 0 ; */
  /* padding-top: 120px; */
  text-align: center;
}

.logo-container {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-surface);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease forwards;
  /* animation: float 6s ease-in-out infinite; */
  /* animation: bounce 2s infinite; */
  animation-delay: 0.2s;
  opacity: 0;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-header {
  display: flex;
  padding: 0;
  box-sizing: border-box;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.business-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
  display: inline-block;
  max-width: 100%;
  line-height: 120%;
}

.category {
  font-size: 1rem;
  font-weight: 500;
  max-width: 320px;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.positioning {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 320px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.positioning strong {
  color: var(--color-text);
  font-weight: 600;
}

.trust-signal {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  /* padding: 0.625rem 1.25rem; */
  margin-bottom: 1rem ;
  color: var(--color-primary-dark);
  /* color: white; */
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  /* box-shadow: var(--shadow-md); */
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
  /* background-color: color-mix(in srgb, var(--color-primary) 10%, transparent); */
}

.catalog-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
  background-color: color-mix(in srgb, var(--color-primary) 100%, transparent);
  text-decoration: none;
}

.check-icon {
  width: 16px;
  height: 16px;
}

.arrow-icon {
  width: 20px;
  height: 20px;
}

/* ===== VALUE SECTION ===== */
.value-section {
  background: var(--color-bg-alt);
}

.value-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 1.5rem;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-surface);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.value-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  border-radius: 10px;
  color: white;
}

.value-icon svg {
  width: 20px;
  height: 20px;
}

.value-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.value-text strong {
  color: var(--color-text);
  font-weight: 600;
}

.testimonial-block {
  padding: 1.5rem;
  background: var(--color-surface);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 12px 12px 0;
}

.testimonial-quote {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.testimonial-author {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-style: normal;
}

/* ===== ACTION SECTION ===== */
.action-section {
  background: var(--color-surface);
}

.action-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  gap: 2rem;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.125rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  color: white;
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    var(--shadow-lg),
    0 0 40px rgba(201, 169, 98, 0.4);
}

.cta-icon {
  width: 20px;
  height: 20px;
}

.contact-icons {
  display: flex;
  gap: 1rem;
}

.contact-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: var(--color-bg-alt); */
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text);
  text-decoration: none;
  transition: all var(--transition-smooth);
  background-color: color-mix(in srgb, var(--color-primary) 10%, transparent);
}

.contact-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-btn svg {
  width: 24px;
  height: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.contact-link svg {
  margin-top: 2px;
}

.contact-link:hover {
  color: var(--color-primary);
}

.contact-detail-icon {
  min-width: 18px;
  height: 18px;
  color: var(--color-primary);
}

.location-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  /* background: var(--color-bg-alt); */
  background-color: color-mix(in srgb, var(--color-primary) 10%, transparent);

  border-radius: 12px;
  width: 100%;
}

.contact-items {
  width: 100%;
}

.location-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  margin-top: 2px;
}

.location-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.location-address {
  font-size: 0.9375rem;
  color: var(--color-text);
}

.location-hours {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.branding-watermark {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  opacity: 0.6;
}

.branding-watermark strong {
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.branding-watermark a {
  color: var(--color-primary);
  text-decoration: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 390px) {
  .business-name {
    font-size: 1.5rem;
  }
  .positioning {
    font-size: 1rem;
  }
  .trust-signal {
    font-size: 0.75rem;
  }
  .logo-container {
    width: 120px;
    height: 120px;
  }
  .value-item {
    padding: 0.5rem;
  }

  .value-text {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  .testimonial-quote {
    font-size: 0.75rem;
  }
  .location-info {
    padding: 1rem 1rem;
  }

  .location-info a {
    font-size: 0.85rem;
  }
  .location-info span {
    font-size: 0.85rem;
  }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .business-name {
    font-size: 2.5rem;
  }

  .logo-container {
    width: 140px;
    height: 140px;
  }

  .positioning {
    font-size: 1.1rem;
    max-width: 400px;
  }
}

/* Hide scrollbar but keep functionality */
.scroll-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.fab-container {
  position: fixed;
  right: 16px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  z-index: 2000;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.4;
}

.fab {
  height: 48px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex; /* controlled via JS */

  align-items: center;
  justify-content: center;
}

.fab-container span {
  animation: bounce 2s infinite;
  user-select: none;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* old Edge/IE */
  -webkit-touch-callout: none; /* iOS */
}

.fab:active {
  transform: scale(0.95);
}

.share-icon,
.qr-icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background-color: white;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  z-index: 99;
  color: var(--color-text-muted);
  transition: all var(--transition-smooth);
}

.share-icon:hover,
.qr-icon:hover {
  background-color: var(--color-primary);
  color: white;
  fill: white;
}

.share-icon:hover svg,
.qr-icon:hover svg {
  fill: white;
}

.share-icon svg,
.qr-icon svg {
  transition: all var(--transition-smooth);
  fill: var(--color-primary);
}

.footer {
  display: flex;
  gap: 36px;
}

.cards-icon {
  position: absolute;
  border-radius: 50%;
  border: 2px solid white;
  background-color: var(--color-primary-dark);
  top: 20px;
  left: 20px;
  padding: 5px;

  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: var(--shadow-lg), var(--shadow-glow); */
}

.cards-icon img {
  width: 24px;
  height: 24px;
}

*:has(> .verified) {
  padding-left: 28px; /* Adjust the value as needed */
}

