/* Mawar Cat House - Public Stylesheet */
:root {
  --primary-color: #ff7a90; /* Soft warm pink-rose */
  --primary-hover: #ff5470;
  --secondary-color: #ffb142; /* Soft warm orange */
  --secondary-hover: #ffa524;
  --dark-color: #2c3e50;
  --light-bg: #fff9f9;
  --card-bg: #ffffff;
  --text-muted: #7f8c8d;
  --text-main: #34495e;
  --border-radius: 16px;
  --box-shadow: 0 10px 30px rgba(255, 122, 144, 0.08);
  --box-shadow-hover: 0 15px 40px rgba(255, 122, 144, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--text-main);
  background-color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
  font-family: 'Fredoka', sans-serif;
  color: var(--dark-color);
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 122, 144, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
  padding: 16px 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  text-decoration: none;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.03);
}

.logo-emoji {
  font-size: 1.8rem;
}

.logo-image {
  height: 40px;
  max-height: 45px;
  width: auto;
  object-fit: contain;
  border-radius: 5px;
  display: block;
}


.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--dark-color);
  border-radius: 3px;
  transition: var(--transition);
}

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

.nav-link {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -6px;
  left: 0;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:hover:after {
  width: 100%;
}

/* Button UI */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  border-radius: 30px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 10px 24px;
  box-shadow: 0 4px 15px rgba(255, 122, 144, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 144, 0.4);
  color: white;
}

.main-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff527b 100%);
  color: white;
  padding: 16px 36px;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(255, 122, 144, 0.4);
}

.main-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 122, 144, 0.5);
}

.secondary-cta {
  background-color: #f7f9fa;
  color: var(--dark-color);
  border: 2px solid rgba(44, 62, 80, 0.1);
  padding: 14px 32px;
  font-size: 1.1rem;
}

.secondary-cta:hover {
  background-color: #eef2f5;
  border-color: rgba(44, 62, 80, 0.2);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 177, 66, 0.05) 0%, rgba(255, 122, 144, 0.04) 90%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

/* Left Column Content */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-badge {
  background-color: rgba(255, 122, 144, 0.12);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 24px;
  display: inline-block;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--dark-color) 40%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 36px;
  text-align: left;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Right Column Image Frame Slider */
.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(255, 122, 144, 0.12);
  border: 8px solid white;
  background-color: var(--light-bg);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

/* Hero Highlights row at bottom */
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.highlight-item {
  background: var(--card-bg);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 122, 144, 0.05);
  transition: var(--transition);
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: inline-block;
}

.highlight-item h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.highlight-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 90px 0;
}

.bg-light {
  background-color: var(--light-bg);
}

.section-header {
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 16px;
  position: relative;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Boarding Packages */
.boarding-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 950px;
  margin: 0 auto 50px auto;
}

.card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 2px solid transparent;
  padding: 40px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.premium-highlight {
  border-color: var(--primary-color);
  background: linear-gradient(180deg, #ffffff 0%, #fffefe 100%);
}

.badge-premium {
  position: absolute;
  top: -15px;
  right: 40px;
  background: linear-gradient(135deg, var(--secondary-color), #ff9f1a);
  color: white;
  padding: 6px 16px;
  font-family: 'Fredoka', sans-serif;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(255, 177, 66, 0.3);
}

.package-name {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--dark-color);
}

.package-price {
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.package-price .currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 4px;
}

.package-price .price-val {
  font-size: 3.5rem;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.package-price .duration {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.feature-list {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.feature-list li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-main);
}

.check-icon {
  background-color: rgba(255, 122, 144, 0.12);
  color: var(--primary-color);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.card-cta {
  width: 100%;
  background-color: #f0f3f5;
  color: var(--dark-color);
  padding: 14px 24px;
  font-size: 1.05rem;
}

.card-cta:hover {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 6px 15px rgba(255, 122, 144, 0.3);
}

.premium-highlight .card-cta {
  background-color: var(--primary-color);
  color: white;
}

.premium-highlight .card-cta:hover {
  background-color: var(--primary-hover);
}

/* Terms and Syarat Area */
.terms-container {
  max-width: 950px;
  margin: 40px auto 0 auto;
  background-color: rgba(255, 122, 144, 0.03);
  border-left: 5px solid var(--primary-color);
  border-radius: 0 16px 16px 0;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.terms-heading {
  font-size: 1.3rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.terms-content {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.7;
}

.terms-content br + br {
  margin-top: 10px;
}

/* Pacak (Mating) Section */
.pacak-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 50px auto;
}

.pacak-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 36px 24px;
  border: 1px solid rgba(255, 122, 144, 0.04);
  transition: var(--transition);
}

.pacak-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.pacak-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.pacak-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pacak-price {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 12px;
}

.pacak-guarantee {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: bold;
  margin-bottom: 24px;
}

.pacak-cta {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 24px;
  width: 100%;
}

.pacak-cta:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Vaksin Section */
.vaksin-container {
  max-width: 850px;
  margin: 0 auto;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--card-bg);
  text-align: left;
}

.styled-table th {
  background-color: var(--primary-color);
  color: white;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  padding: 18px 24px;
}

.styled-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 1.05rem;
}

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

.styled-table tbody tr:hover {
  background-color: rgba(255, 122, 144, 0.02);
}

.price-text {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--primary-color);
}

.highlight-row {
  background-color: rgba(255, 177, 66, 0.05);
}

.highlight-row:hover {
  background-color: rgba(255, 177, 66, 0.08) !important;
}

/* Steril Section */
.steril-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.steril-pricing {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.steril-intro h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.steril-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.steril-cards-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.steril-price-card {
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(255, 122, 144, 0.08);
}

.steril-price-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.steril-price-card .price {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 4px;
}

.steril-price-card .subtitle {
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.post-steril-care {
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  padding-top: 24px;
}

.post-steril-care h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.post-steril-care p {
  color: var(--text-muted);
}

.post-steril-price {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-top: 8px;
}

.post-steril-price .duration {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Booking Template Card */
.booking-template-card {
  background-color: var(--dark-color);
  color: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.25);
}

.booking-template-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.booking-template-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.template-box {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  position: relative;
}

.template-box pre {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.95rem;
  line-height: 1.5;
  white-space: pre-wrap;
  color: #fff;
}

.copy-btn {
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 15px;
  transition: var(--transition);
}

.copy-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

.copy-btn.copied {
  background-color: #2ecc71;
}

.template-instructions {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* Map Wrapper */
.map-wrapper {
  margin-top: 40px;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  overflow: hidden;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.05);
}

/* Footer */
.footer {
  background-color: #1a252f;
  color: #bdc3c7;
  padding: 70px 0 30px 0;
  border-top: 5px solid var(--primary-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-title {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-hours {
  margin-top: 16px;
  font-size: 0.9rem;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.small-cta {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 18px;
  font-size: 0.9rem;
}

.small-cta:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-title, .hero-subtitle {
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-slider-wrapper {
    height: 350px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.15rem;
  }
  .boarding-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .pacak-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
  .steril-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 73px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    overflow-y: auto;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .hero-highlights {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .steril-cards-inner {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero-section {
    padding: 50px 0 40px 0;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .card {
    padding: 30px 20px;
  }
  .booking-template-card, .steril-pricing {
    padding: 30px 20px;
  }
}

/* Floating Action Buttons */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  text-decoration: none;
  font-size: 24px;
}

.floating-btn:hover {
  transform: translateY(-5px);
}

.whatsapp-float {
  background-color: #25d366;
  color: white;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.back-to-top {
  background-color: #ff7a90;
  color: white;
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #ff5470;
  box-shadow: 0 6px 20px rgba(255, 122, 144, 0.3);
}

/* ==================== CUTE CAT CHARACTER STYLING & ANIMATIONS ==================== */

/* Paw prints background decorator on sections */
.section {
  position: relative;
}

.section::before {
  content: '🐾';
  position: absolute;
  font-size: 2.2rem;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

.section:nth-of-type(odd)::before {
  left: 3%;
  top: 10%;
  transform: rotate(-25deg);
}

.section:nth-of-type(even)::before {
  right: 3%;
  bottom: 8%;
  transform: rotate(35deg);
}

/* Additional paws patterns for light section */
.bg-light {
  background-color: var(--light-bg);
  background-image: radial-gradient(rgba(255, 122, 144, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
}

/* Cute Bounce/Pounce effect for cards */
.card, .pacak-card, .steril-price-card, .highlight-item {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.card:hover, .pacak-card:hover, .steril-price-card:hover, .highlight-item:hover {
  transform: translateY(-10px) scale(1.03) !important;
  box-shadow: 0 20px 40px rgba(255, 122, 144, 0.16) !important;
  border-color: rgba(255, 122, 144, 0.25) !important;
}

/* Cute Cat Wobble / Heartbeat Keyframes */
@keyframes cat-wobble {
  0% { transform: rotate(0deg) scale(1); }
  15% { transform: rotate(-4deg) scale(1.05); }
  30% { transform: rotate(3deg) scale(1.05); }
  45% { transform: rotate(-3deg) scale(1.05); }
  60% { transform: rotate(2deg) scale(1.05); }
  100% { transform: rotate(0deg) scale(1.05); }
}

@keyframes cat-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* Cute rounded pill-buttons and animations */
.primary-cta, .secondary-cta, .btn {
  border-radius: 50px !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.primary-cta {
  animation: cat-pulse 3s infinite ease-in-out;
}

.primary-cta:hover {
  animation: cat-wobble 0.6s ease-in-out !important;
  box-shadow: 0 10px 25px rgba(255, 122, 144, 0.35) !important;
}

.secondary-cta:hover, .btn:hover {
  transform: translateY(-3px) scale(1.04) !important;
}

/* Subtle cat ears details above Section Titles */
.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 45px;
}

.section-title::after {
  content: '🐱';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.6rem;
  opacity: 0.9;
}

