/* Landing page — Book Now registration & marketing */

/* Contact — light section (overrides dark map theme in styles.css) */
section#contact.bg-light {
  background-color: #f8f9fa;
  background-image: none;
}

section#contact.bg-light .section-heading {
  color: #212529;
}

section#contact.bg-light .section-subheading {
  color: #495057 !important;
  font-style: normal;
}

.landing-nav {
  background-color: #212529;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Keep nav readable over light sections (override template transparent navbar on desktop) */
@media (min-width: 992px) {
  #mainNav.landing-nav {
    background-color: #212529 !important;
  }
}

.landing-nav .landing-brand,
.landing-nav .navbar-brand.landing-brand {
  color: #ffffff !important;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.landing-nav .landing-brand .text-warning,
.landing-nav .navbar-brand .text-warning {
  color: #ffc800 !important;
}

.landing-brand-footer {
  font-weight: 700;
  color: #401d27;
}

.landing-brand-footer .text-warning {
  color: #ffc800 !important;
}

.landing-nav .navbar-brand img {
  height: 2.75rem;
}

.landing-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.landing-nav .nav-link:hover,
.landing-nav .nav-link:focus {
  color: #ffc800 !important;
}

header.landing-hero {
  background-image: url("../img/header-background.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 10.5rem;
  min-height: 42rem;
}

header.landing-hero .hero-badge {
  display: inline-block;
  background: rgba(255, 200, 0, 0.95);
  color: #212529;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50rem;
  margin-bottom: 1rem;
}

.benefit-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--bs-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
}

/* Essential Business Tools — Google search demo (bookingpage.ai style) */
@keyframes blink-cursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes slow-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.92;
  }
}

.typing-cursor {
  animation: blink-cursor 1s infinite;
  color: #ffc800;
  font-weight: 300;
}

.slow-pulse {
  animation: slow-pulse 2s ease-in-out infinite;
}

.gbp-feature-card {
  background: linear-gradient(145deg, #1a2f4a 0%, #243b5c 45%, #1e3558 100%);
  border-radius: 1rem;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.2);
}

.gbp-feature-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem 0;
}

.gbp-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 200, 0, 0.15);
  color: #ffc800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.gbp-feature-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #ffc800;
}

.gbp-feature-card-body {
  padding: 0 1.5rem 1.5rem;
}

.gbp-feature-title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.gbp-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50rem;
  background: rgba(0, 0, 0, 0.35);
  color: #ffc800;
  white-space: nowrap;
}

.gbp-feature-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.gbp-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 0.5rem 1rem;
}

.gbp-feature-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.gbp-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffc800;
}

.google-search-demo {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  padding: 1rem;
  backdrop-filter: blur(6px);
}

.google-search-demo-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.google-search-demo-logo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.google-search-demo-input {
  flex: 1;
  font-size: 0.9rem;
  color: #202124;
  min-height: 1.4rem;
  white-space: nowrap;
  overflow: hidden;
}

/* Google Business Profile knowledge panel mockup */
.gbp-panel {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1rem 1.15rem 1.1rem;
  color: #202124;
  font-family: Roboto, Arial, sans-serif;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.gbp-panel-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.gbp-panel-name {
  font-size: 1.5rem;
  font-weight: 500;
  color: #202124;
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0;
}

.gbp-panel-menu-icons {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #5f6368;
  font-size: 1rem;
  padding-top: 0.35rem;
  flex-shrink: 0;
}

.gbp-panel-rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.gbp-panel-score {
  font-weight: 500;
  color: #202124;
}

.gbp-panel-stars {
  color: #fbbc04;
  letter-spacing: -1px;
  font-size: 0.95rem;
}

.gbp-panel-reviews {
  color: #1a73e8;
  text-decoration: none;
  font-size: 0.875rem;
}

.gbp-panel-reviews:hover {
  text-decoration: underline;
}

.gbp-panel-category {
  font-size: 0.875rem;
  color: #5f6368;
  margin: 0 0 1rem;
}

.gbp-panel-action-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.gbp-panel-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a73e8;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 2rem;
  padding: 0.4rem 1rem;
  white-space: nowrap;
}

.gbp-panel-pill i {
  font-size: 0.8rem;
}

.gbp-panel-pill-more {
  color: #5f6368;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.gbp-panel-book-online {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  background: #1a73e8;
  border: none;
  border-radius: 1.5rem;
  cursor: default;
}

.gbp-panel-book-online i {
  font-size: 1.05rem;
}

.gbp-panel-divider {
  border: 0;
  border-top: 1px solid #e8eaed;
  margin: 1rem 0 0.85rem;
}

.gbp-panel-details {
  margin: 0;
}

.gbp-panel-detail {
  display: flex;
  gap: 0.35rem;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.gbp-panel-detail dt {
  font-weight: 500;
  color: #202124;
  flex-shrink: 0;
  margin: 0;
}

.gbp-panel-detail dd {
  margin: 0;
  color: #202124;
}

.gbp-panel-detail dd a {
  color: #1a73e8;
  text-decoration: none;
}

.gbp-panel-detail dd a:hover {
  text-decoration: underline;
}

.gbp-panel-open {
  color: #188038;
  font-weight: 500;
}

.gbp-panel-hours-chevron {
  font-size: 0.65rem;
  color: #5f6368;
  margin-left: 0.15rem;
}

.gbp-panel-footer-links {
  font-size: 0.875rem;
  margin: 0.75rem 0 0;
}

.gbp-panel-footer-links a {
  color: #1a73e8;
  text-decoration: none;
}

.gbp-panel-footer-links a:hover {
  text-decoration: underline;
}

.gbp-feature-cta {
  color: #212529 !important;
  border: none;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.gbp-feature-cta:hover {
  background: #e6b400;
  color: #212529 !important;
}

/* Cookie consent banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  padding: 1rem;
  background: rgba(33, 37, 41, 0.97);
  color: #fff;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  border-top: 3px solid #ffc800;
}

.cookie-consent-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-consent-title {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.cookie-consent-text {
  flex: 1 1 16rem;
  max-width: 42rem;
}

.cookie-consent-text a {
  color: #ffc800;
  text-decoration: underline;
}

.cookie-consent-text a:hover {
  color: #ffe066;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-consent-actions .btn-warning {
  color: #212529;
}

@media (max-width: 575.98px) {
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-actions .btn {
    flex: 1;
  }
}

.how-step-num {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--bs-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Google → Book Now → booking page flow */
.flow-animation {
  max-width: 960px;
  margin: 0 auto;
}

.flow-step {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
  padding: 1.25rem;
  height: 100%;
  border: 2px solid transparent;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.flow-step.is-active {
  border-color: var(--bs-primary);
  transform: translateY(-4px);
}

.flow-step-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bs-gray);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.gbp-mockup {
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  font-size: 0.8rem;
}

.gbp-mockup-header {
  background: #f8f9fa;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gbp-mockup-header img {
  width: 28px;
  height: 28px;
}

.gbp-mockup-body {
  padding: 0.75rem;
}

.gbp-book-btn {
  display: block;
  width: 100%;
  background: #1a73e8;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  animation: pulse-book-btn 2s ease-in-out infinite;
}

@keyframes pulse-book-btn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(26, 115, 232, 0); }
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  font-size: 1.5rem;
  padding: 0.5rem 0;
}

.flow-arrow .arrow-line {
  width: 100%;
  max-width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--bs-primary), #ffc800);
  position: relative;
  overflow: hidden;
}

.flow-arrow .arrow-line::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: arrow-shine 2s ease-in-out infinite;
}

@keyframes arrow-shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.booking-preview-frame {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #f8f9fa;
  min-height: 280px;
}

.booking-preview-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.pricing-card {
  border-radius: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1) !important;
}

.pricing-card.featured {
  border: 2px solid var(--bs-primary);
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bs-primary);
}

.integration-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 50rem;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
}

#register-form .form-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.verification-panel {
  display: none;
}

.verification-panel.is-visible {
  display: block;
}

.register-form-panel.is-hidden {
  display: none;
}

@media (min-width: 768px) {
  .flow-arrow {
    padding: 0 0.5rem;
  }

  .flow-arrow .arrow-line {
    max-width: 80px;
  }
}

@media (max-width: 767.98px) {
  .flow-arrow .fa-arrow-down {
    animation: bounce-down 1.5s ease-in-out infinite;
  }
}

/* Supported business types */
.business-types-panel {
  max-width: 720px;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.06);
  padding: 1.25rem 1.25rem 1.5rem;
}

.business-types-quick-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.business-types-idle {
  font-size: 0.9rem;
  padding: 0 0.5rem;
}

.business-types-search-wrap .form-control:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.business-types-search-wrap:focus-within {
  box-shadow: 0 0 0 0.2rem rgba(64, 29, 39, 0.15);
  border-radius: 0.375rem;
}

.business-types-letters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  padding: 1rem 0 0.75rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 0.5rem;
  position: sticky;
  top: 4.5rem;
  background: #fff;
  z-index: 2;
}

.business-types-letters .letter-jump {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  padding: 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bs-primary);
  text-decoration: none;
  border-radius: 0.25rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.business-types-letters .letter-jump:hover,
.business-types-letters .letter-jump:focus {
  background: var(--bs-primary);
  color: #fff;
}

.business-types-scroll {
  max-height: 18rem;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.75rem 0.25rem 0.25rem;
  scroll-behavior: smooth;
}

.business-types-group {
  margin-bottom: 1rem;
}

.business-types-letter {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bs-gray-600);
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid #ffc800;
  display: inline-block;
  min-width: 1.5rem;
}

.business-types-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.business-type-chip {
  display: inline-block;
  font-size: 0.8rem;
  line-height: 1.3;
  padding: 0.35rem 0.65rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 50rem;
  color: #495057;
}

.business-types-scroll:focus-within .business-type-chip,
.business-type-chip:hover {
  border-color: var(--bs-primary);
  background: rgba(64, 29, 39, 0.06);
  color: var(--bs-primary);
}

@media (min-width: 768px) {
  .business-types-scroll {
    max-height: 32rem;
  }

  .business-type-chip {
    font-size: 0.85rem;
  }
}

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

/* Registration — business type autocomplete */
.register-business-type-suggestions {
  position: absolute;
  z-index: 1050;
  left: 0;
  right: 0;
  max-height: 14rem;
  overflow-y: auto;
  margin-top: 0.25rem;
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12);
}

.register-business-type-suggestions .list-group-item {
  cursor: pointer;
  font-size: 0.9rem;
  border-left: 0;
  border-right: 0;
}

.register-business-type-suggestions .list-group-item:first-child {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.register-business-type-suggestions .list-group-item:last-child {
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.register-business-type-suggestions .list-group-item.active,
.register-business-type-suggestions .list-group-item:hover {
  background-color: #401d27;
  border-color: #401d27;
  color: #fff;
}
