/* ============================================================
   PetBooker — Design System
   Colors: Mirage #16232A | Blaze Orange #FF5B04 | Deep Sea Green #075056 | Wild Sand #E4EEF0
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;600;700;800&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --mirage: #16232A;
  --mirage-dark: #0d1820;
  --mirage-light: #1e2f39;
  --orange: #FF5B04;
  --orange-dark: #e04e00;
  --orange-light: #ff7833;
  --teal: #075056;
  --teal-dark: #053c41;
  --teal-light: #0d7a82;
  --sand: #E4EEF0;
  --sand-dark: #c8dce0;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;

  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow: 0 4px 16px rgba(0, 0, 0, .10);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .14);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .18);
  --shadow-orange: 0 8px 32px rgba(255, 91, 4, .30);
  --shadow-teal: 0 8px 32px rgba(7, 80, 86, .30);

  --transition: .25s ease;
  --transition-s: .15s ease;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Layout Width ──────────────────────────────────────────── */
.container {
  width: 90% !important;
  max-width: 1400px !important;
  margin-left: auto;
  margin-right: auto;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ─── Typography ────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--mirage);
}

.display-hero {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.text-orange {
  color: var(--orange) !important;
}

.text-teal {
  color: var(--teal) !important;
}

.text-mirage {
  color: var(--mirage) !important;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn-pb-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: #fff;
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow-orange);
  white-space: nowrap;
}

.btn-pb-primary:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 91, 4, .40);
}

.btn-pb-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--orange);
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--orange);
  transition: var(--transition);
}

.btn-pb-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.btn-pb-teal {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--teal);
  color: #fff;
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  box-shadow: var(--shadow-teal);
}

.btn-pb-teal:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-pb-dark {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--mirage);
  color: #fff;
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
}

.btn-pb-dark:hover {
  background: var(--mirage-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: .45rem 1.1rem !important;
  font-size: .85rem !important;
}

.btn-lg {
  padding: .9rem 2rem !important;
  font-size: 1.05rem !important;
}

/* ─── Navbar ────────────────────────────────────────────────── */
.navbar-pb {
  background: var(--mirage);
  padding: .75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: none !important;
  transition: var(--transition);
}

.navbar-pb.scrolled {
  padding: .5rem 0;
  background: rgba(22, 35, 42, .97);
  backdrop-filter: blur(20px);
}

.navbar-pb .btn-pb-primary,
.navbar-pb .btn-pb-outline {
  border-radius: 12px !important;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 700;
}

.navbar-pb .navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.navbar-pb .brand-logo {
  width: 36px;
  height: 36px;
}

.navbar-pb .brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
}

.navbar-pb .brand-name span {
  color: var(--orange);
}

.navbar-pb .nav-link {
  color: rgba(255, 255, 255, .8) !important;
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: .4rem .8rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition-s);
}

.navbar-pb .nav-link:hover,
.navbar-pb .nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, .1);
}

.navbar-pb .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, .3);
  padding: .35rem .5rem;
}

.navbar-pb .navbar-toggler-icon {
  filter: invert(1);
}

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  border-radius: var(--radius-full) !important;
  padding: .4rem 1.1rem !important;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  color: #fff !important;
}

.dropdown-menu-dark-pb {
  background: var(--mirage-light);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.dropdown-menu-dark-pb .dropdown-item {
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
}

.dropdown-menu-dark-pb .dropdown-item:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(rgba(22, 35, 42, 0.75), rgba(22, 35, 42, 0.75)), url('../images/backgrounds/menu-bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255, 91, 4, .15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(7, 80, 86, .25) 0%, transparent 50%);
}

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

.hero-section h1 {
  color: #fff;
}

.hero-section h1 span {
  color: var(--orange);
  position: relative;
}

.hero-section h1 span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 99px;
}

.hero-section p {
  color: rgba(255, 255, 255, .75);
  font-size: 1.15rem;
}

.hero-blob {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  opacity: .08;
  background: var(--orange);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {

  0%,
  100% {
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  }

  50% {
    border-radius: 40% 60% 30% 70% / 60% 40% 70% 50%;
  }
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 2.45rem;
  font-weight: 800;
  color: var(--orange);
  font-family: var(--font-heading);
  line-height: 1;
}

.hero-stat .label {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ─── Search Box ────────────────────────────────────────────── */
.search-box {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.search-box .form-control,
.search-box .form-select {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  border-radius: var(--radius);
  padding: .8rem 1rem;
}

.search-box .form-control::placeholder {
  color: rgba(255, 255, 255, .5);
}

.search-box .form-control:focus,
.search-box .form-select:focus {
  background: rgba(255, 255, 255, .15);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 91, 4, .2);
  color: #fff;
}

.search-box .form-select option {
  background: var(--mirage);
  color: #fff;
}

.search-box label {
  color: rgba(255, 255, 255, .7);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .3rem;
}

/* ─── Cards ─────────────────────────────────────────────────── */
.provider-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.provider-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.provider-header-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  margin-top: -120px;
  position: relative;
  z-index: 10;
  border: 1px solid var(--gray-200);
}

.provider-main-logo {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-lg);
  border: 5px solid #fff;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  background: #fff;
}

/* Info Bar and Sections */
.provider-info-bar {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.info-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--gray-600);
}

.info-item i {
  color: var(--orange);
  font-size: 1.1rem;
}

.content-section {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
  scroll-margin-top: 100px;
}

.section-title-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.section-title-bar::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-100);
}

.section-title-bar h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--mirage);
  white-space: nowrap;
  margin: 0;
}

.section-icon {
  width: 44px;
  height: 44px;
  background: var(--gray-50);
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.provider-card .cover {
  height: 200px;
  object-fit: cover;
  width: 100%;
  background: linear-gradient(135deg, var(--teal), var(--mirage));
}

.provider-card .card-body {
  padding: 1rem 1.2rem 1.2rem;
}

.provider-card .provider-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  border: 4px solid #fff;
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  margin-top: -40px;
  margin-bottom: .5rem;
  background: var(--sand);
}

.provider-card .provider-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: #fff;
  padding: .2rem .7rem;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.provider-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .2rem;
  color: var(--mirage);
}

.provider-card .location {
  color: var(--gray-600);
  font-size: .82rem;
}

.provider-card .rating-row {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: .5rem;
  font-size: .82rem;
}

.provider-card .featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--warning);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
}

/* ─── Service Chips ─────────────────────────────────────────── */
.service-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(7, 80, 86, .08);
  color: var(--teal);
  padding: .3rem .8rem;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 600;
  border: 1px solid rgba(7, 80, 86, .15);
  transition: var(--transition-s);
}

.service-chip:hover {
  background: var(--teal) !important;
  color: #fff !important;
  border-color: var(--teal) !important;
}

/* ─── Section Layouts ───────────────────────────────────────── */
.section-pb {
  padding: 5rem 0;
}

.section-pb-sm {
  padding: 3rem 0;
}

.section-bg-sand {
  background: var(--sand);
}

.section-bg-dark {
  background: var(--mirage);
}

.section-bg-teal {
  background: var(--teal);
}

.section-label {
  display: inline-block;
  background: rgba(255, 91, 4, .1);
  color: var(--orange);
  padding: .25rem .8rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .8rem;
}

.section-label.teal {
  background: rgba(7, 80, 86, .1);
  color: var(--teal);
}

/* ─── How It Works ──────────────────────────────────────────── */
.step-card {
  text-align: left;
  padding: 1.2rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.step-icon-lg {
  font-size: 1.8rem;
}

.step-card h4 {
  font-size: 1.1rem;
  margin: 0;
}

.step-card p {
  font-size: .88rem;
  color: var(--gray-600);
  margin: 0;
}

.steps-connector {
  display: none;
}

@media (min-width: 768px) {
  .steps-connector {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--teal));
    opacity: .2;
    margin: 28px 0;
  }
}

/* ─── Plan Cards ────────────────────────────────────────────── */
.plan-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.plan-card.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  transform: scale(1.04);
}

.plan-card.featured::before {
  content: '⭐ Mais Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  padding: .2rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}

.plan-card:hover:not(.featured) {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}

.plan-name {
  font-size: 1.3rem;
  font-weight: 800;
}

.plan-price {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--mirage);
  line-height: 1;
}

.plan-price sup {
  font-size: 1.2rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: .5rem;
}

.plan-price .period {
  font-size: .9rem;
  font-weight: 400;
  color: var(--gray-400);
}

.plan-price.free-price {
  font-size: 2.2rem;
}

.plan-features {
  text-align: left;
  margin: 1.5rem 0;
}

.plan-features li {
  padding: .4rem 0;
  font-size: .88rem;
  display: flex;
  gap: .5rem;
  align-items: flex-start;
}

.plan-features li .bi-check-circle-fill {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-features li .bi-x-circle-fill {
  color: var(--gray-400);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── Blog ──────────────────────────────────────────────────── */
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card .blog-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: .4s ease;
}

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

.blog-card .blog-img-wrap {
  overflow: hidden;
}

.blog-card .blog-body {
  padding: 1.3rem;
}

.blog-card .category-badge {
  background: rgba(255, 91, 4, .1);
  color: var(--orange);
  padding: .2rem .7rem;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: .6rem;
}

.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
  line-height: 1.35;
}

.blog-card p {
  font-size: .85rem;
  color: var(--gray-600);
}

.blog-card .meta {
  font-size: .78rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .8rem;
}

.blog-card:hover .btn-pb-outline {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── Product Cards ─────────────────────────────────────────── */
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card .product-img-wrap {
  overflow: hidden;
  height: 200px;
  background: var(--sand);
}

.product-card .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}

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

.product-card .product-body {
  padding: 1rem 1.1rem 1.2rem;
}

.product-card .product-name {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .2rem;
}

.product-card .product-shop {
  font-size: .78rem;
  color: var(--gray-400);
}

.product-card .product-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
}

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonial-card {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}

.testimonial-card p {
  color: rgba(255, 255, 255, .85);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.7;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.2rem;
}

.testimonial-card .author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}

.testimonial-card .author .name {
  font-weight: 700;
  color: #fff;
  font-size: .9rem;
}

.testimonial-card .author .role {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}

/* ─── CTA Banner ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 2.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cta-section p {
  color: rgba(255, 255, 255, .85);
}

.btn-cta-white {
  background: #fff;
  color: var(--orange);
  padding: .8rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-cta-white:hover {
  background: var(--mirage);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── Type Selector ─────────────────────────────────────────── */
.type-selector {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.type-btn {
  flex: 1;
  min-width: 100px;
  background: rgba(255, 255, 255, .08);
  border: 2px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  padding: 0.6rem .8rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  color: rgba(255, 255, 255, .7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.type-btn:hover,
.type-btn.active {
  background: rgba(255, 91, 4, .15);
  border-color: var(--orange);
  color: #fff;
}

.type-btn .icon {
  font-size: 1.7rem;
}

.type-btn .label {
  font-size: 1rem;
  font-weight: 600;
}

.type-btn:hover .label,
.type-btn.active .label {
  color: #000;
}

/* ─── Specialty Filters ─────────────────────────────────────── */
.filter-pills {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.filter-pill {
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-200);
  background: #fff;
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-s);
  color: var(--gray-600);
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ─── Forms ─────────────────────────────────────────────────── */
.form-pb .form-control,
.form-pb .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  font-size: .9rem;
  transition: var(--transition-s);
}

.form-pb .form-control:focus,
.form-pb .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 91, 4, .12);
  outline: none;
}

.form-pb label {
  font-weight: 600;
  color: var(--gray-800);
  font-size: .85rem;
  margin-bottom: .3rem;
}

.form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
}

.form-card.compact {
  padding: 1.8rem;
}

/* ─── Alert / Flash ─────────────────────────────────────────── */
.alert-pb {
  border-radius: var(--radius);
  border: none;
  padding: .9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
}

.alert-pb.success {
  background: rgba(16, 185, 129, .12);
  color: #065f46;
}

.alert-pb.error {
  background: rgba(239, 68, 68, .12);
  color: #991b1b;
}

.alert-pb.warning {
  background: rgba(245, 158, 11, .12);
  color: #92400e;
}

.alert-pb.info {
  background: rgba(59, 130, 246, .12);
  color: #1e40af;
}

/* ─── Dashboard ─────────────────────────────────────────────── */
.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--mirage);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  position: sticky;
  top: 0;
  height: 100vh;
}

.sidebar-logo {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.sidebar-nav {
  padding: 1rem 0;
  flex: 1;
}

.sidebar-group {
  padding: .5rem 1rem;
  margin-bottom: .2rem;
}

.sidebar-group-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .35);
  font-weight: 700;
  padding: .3rem .5rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem .8rem;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .7);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: var(--transition-s);
  text-decoration: none;
  margin-bottom: .1rem;
}

.sidebar-link i {
  font-size: 1rem;
  width: 20px;
  flex-shrink: 0;
}

.sidebar-link:hover,
.sidebar-link.active {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.sidebar-link.active {
  background: rgba(255, 91, 4, .2);
  color: var(--orange);
}

.sidebar-link .badge-count {
  margin-left: auto;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: .65rem;
  font-weight: 700;
  padding: .1rem .45rem;
}

.dashboard-main {
  flex: 1;
  overflow: auto;
  display: flex;
  flex-direction: column;
  background: var(--gray-50);
}

.dashboard-topbar {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.dashboard-content {
  padding: 1.5rem 0;
  flex: 1;
}

.dashboard-main .container {
  width: 90% !important;
  max-width: 100% !important;
}

.kpi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.kpi-card:hover {
  box-shadow: var(--shadow-md);
}

.kpi-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.kpi-icon.orange {
  background: rgba(255, 91, 4, .1);
  color: var(--orange);
}

.kpi-icon.teal {
  background: rgba(7, 80, 86, .1);
  color: var(--teal);
}

.kpi-icon.blue {
  background: rgba(59, 130, 246, .1);
  color: var(--info);
}

.kpi-icon.green {
  background: rgba(16, 185, 129, .1);
  color: var(--success);
}

.kpi-value {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
  color: var(--mirage);
}

.kpi-label {
  font-size: .78rem;
  color: var(--gray-400);
  margin-top: .2rem;
}

.kpi-trend {
  font-size: .75rem;
  font-weight: 600;
}

.kpi-trend.up {
  color: var(--success);
}

.kpi-trend.down {
  color: var(--danger);
}

/* ─── Tables ────────────────────────────────────────────────── */
.table-pb {
  width: 100%;
  border-collapse: collapse;
}

.table-pb th {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray-400);
  font-weight: 700;
  padding: .7rem 1rem;
  background: var(--gray-50);
  border-bottom: 2px solid var(--gray-200);
  white-space: nowrap;
}

.table-pb td {
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: .88rem;
  vertical-align: middle;
}

.table-pb tr:last-child td {
  border-bottom: none;
}

.table-pb tr:hover td {
  background: var(--gray-50);
}

.table-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

/* ─── Status Badges ─────────────────────────────────────────── */
.status-badge {
  padding: .25rem .7rem;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: inline-block;
}

.status-pending {
  background: rgba(245, 158, 11, .12);
  color: #92400e;
}

.status-confirmed {
  background: rgba(16, 185, 129, .12);
  color: #065f46;
}

.status-cancelled {
  background: rgba(239, 68, 68, .12);
  color: #991b1b;
}

.status-completed {
  background: rgba(59, 130, 246, .12);
  color: #1e40af;
}

.status-paid {
  background: rgba(16, 185, 129, .12);
  color: #065f46;
}

.status-shipped {
  background: rgba(139, 92, 246, .12);
  color: #4c1d95;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer-pb {
  background: var(--mirage-dark);
  color: rgba(255, 255, 255, .7);
  padding: 4rem 0 2rem;
}

.footer-pb .footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.footer-pb .footer-brand .brand-name span {
  color: var(--orange);
}

.footer-pb p {
  font-size: .88rem;
}

.footer-pb h5 {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.footer-pb ul li {
  margin-bottom: .5rem;
}

.footer-pb ul li a {
  color: rgba(255, 255, 255, .6);
  font-size: .88rem;
  transition: var(--transition-s);
}

.footer-pb ul li a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
}

.social-links {
  display: flex;
  gap: .5rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition-s);
}

.social-link:hover {
  background: var(--orange);
  color: #fff;
}

/* ─── Avatar ────────────────────────────────────────────────── */
.avatar {
  border-radius: 50%;
  object-fit: cover;
  background: var(--sand);
  flex-shrink: 0;
}

.avatar-sm {
  width: 32px;
  height: 32px;
}

.avatar-md {
  width: 44px;
  height: 44px;
}

.avatar-lg {
  width: 64px;
  height: 64px;
}

.avatar-xl {
  width: 96px;
  height: 96px;
}

.avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-heading);
  border-radius: 50%;
}

/* ─── Map Placeholder ───────────────────────────────────────── */
.map-placeholder {
  background: var(--sand);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--teal);
}

/* ─── Loading / Skeleton ────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 400% 100%;
  animation: skeleton-loading 1.4s ease infinite;
  border-radius: var(--radius);
}

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

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

/* ─── Divider ───────────────────────────────────────────────── */
.divider-orange {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 99px;
}

.divider-teal {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 99px;
}

/* ─── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb-pb {
  background: var(--mirage);
  padding: .8rem 0;
}

.breadcrumb-pb .breadcrumb {
  margin: 0;
  font-size: .82rem;
}

.breadcrumb-pb .breadcrumb-item a {
  color: rgba(255, 255, 255, .6);
}

.breadcrumb-pb .breadcrumb-item a:hover {
  color: var(--orange);
}

.breadcrumb-pb .breadcrumb-item.active {
  color: rgba(255, 255, 255, .9);
}

.breadcrumb-pb .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .3);
}

/* ─── Pet Icons ─────────────────────────────────────────────── */
.pet-icon {
  font-size: 2rem;
}

/* ─── Scroll to top ─────────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition);
  border: none;
  font-size: 1.2rem;
}

#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#scrollTop:hover {
  background: var(--orange-dark);
}

/* ─── Whatsapp Float ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* ─── Cookie Banner ─────────────────────────────────────────── */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--mirage-dark);
  color: rgba(255, 255, 255, .85);
  padding: 1rem 2rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .3);
  border-top: 2px solid var(--orange);
}

#cookieBanner.show {
  display: flex;
}

#cookieBanner p {
  font-size: .85rem;
  margin: 0;
}

#cookieBanner a {
  color: var(--orange);
}

/* ─── Animations ────────────────────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
  animation: pulse-anim 2s ease infinite;
}

@keyframes pulse-anim {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: .7;
  }
}

/* ─── Responsive Utilities ──────────────────────────────────── */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 4rem 0;
  }

  .search-box {
    padding: 1.2rem;
    border-radius: var(--radius-lg);
  }

  .type-selector .type-btn {
    min-width: 80px;
    padding: .7rem .5rem;
    flex-direction: column;
    gap: 0.2rem;
  }

  .plan-card.featured {
    transform: scale(1);
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: static;
  }

  .dashboard-wrapper {
    flex-direction: column;
  }

  .form-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
  }

  .hero-stats {
    gap: 1.2rem;
  }

  .hero-stat .number {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {

  .btn-pb-primary,
  .btn-pb-outline,
  .btn-pb-teal {
    padding: .6rem 1.2rem;
    font-size: .88rem;
  }
}

/* ─── Footer Newsletter ─────────────────────────────────────────── */
.footer-newsletter-group {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 4px;
}

.footer-newsletter-group input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
  outline: none;
}

.footer-newsletter-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-group button {
  background: var(--orange);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-newsletter-group button:hover {
  background: var(--orange-dark);
  transform: scale(1.05);
}

/* ─── Premium Footer ─────────────────────────────────────────────── */
.footer-pb {
  background: #0d141a;
  padding: 3rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
}

.footer-top {
  padding-bottom: 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo .brand-name {
  font-size: 1.8rem;
  color: #fff;
}

.footer-about-text {
  line-height: 1.8;
  margin-bottom: 2rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
}

.footer-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-family: var(--font-heading);
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--orange);
}

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

.footer-link-item {
  margin-bottom: 1rem;
}

.footer-link-item a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-s);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link-item a:hover {
  color: var(--orange);
  padding-left: 5px;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 91, 4, 0.1);
  color: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.footer-contact-text b {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 0.1rem;
}

.footer-bottom {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 1rem;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  transition: var(--transition-s);
}

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

@media (max-width: 991px) {
  .footer-title { margin-top: 2rem; }
  .newsletter-box { padding: 3rem 1.5rem; }
  .newsletter-title { font-size: 1.8rem; }
}