/* ============================================
   PETS CARE SUPER SPECIALITY HOSPITALS
   Creative Premium Design System
   ============================================ */

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

:root {
  --primary: #2a1b5e;
  --primary-light: #4a3a8e;
  --accent: #7c5cbf;
  --gradient-start: #1a1145;
  --gradient-mid: #3d2b7a;
  --gradient-end: #c4a8e8;
  --lavender: #e8daf5;
  --soft-pink: #f0e4f7;
  --white: #ffffff;
  --off-white: #faf8ff;
  --text-dark: #1a1a2e;
  --text-muted: #5a5a7a;
  --gold: #d4a843;
  --success: #28a745;
  --cta-orange: #ff6b35;
  --urgent-red: #dc3545;
  --shadow-sm: 0 2px 12px rgba(42, 27, 94, 0.08);
  --shadow-md: 0 6px 24px rgba(42, 27, 94, 0.12);
  --shadow-lg: 0 12px 48px rgba(42, 27, 94, 0.18);
  --shadow-glow: 0 0 40px rgba(124, 92, 191, 0.35);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 50px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--primary);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gradient-end));
  border-radius: 2px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}

.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--cta-orange), #ff8f5c);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 27, 94, 0.3);
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-call {
  background: linear-gradient(135deg, var(--success), #34c759);
  color: white;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(40, 167, 69, 0.7); }
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 20px rgba(42, 27, 94, 0.08);
  padding: 10px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  transition: var(--transition);
}

.navbar.scrolled .logo { color: var(--primary); }

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.logo span {
  font-size: 0.65rem;
  font-weight: 400;
  display: block;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.75;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.navbar.scrolled .nav-links a { color: var(--text-dark); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cta-orange));
  transition: width 0.3s;
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 10px 24px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: var(--radius-xl) !important;
  backdrop-filter: blur(10px);
}

.navbar.scrolled .nav-cta {
  background: linear-gradient(135deg, var(--cta-orange), #ff8f5c) !important;
  color: white !important;
  border-color: transparent !important;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.nav-cta:hover { background: rgba(255, 255, 255, 0.22) !important; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: white;
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .mobile-toggle span { background: var(--text-dark); }

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 40%, var(--gradient-end) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(124, 92, 191, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(196, 168, 232, 0.2) 0%, transparent 40%);
}

/* Floating decorative orbs */
.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  top: 10%;
  right: 20%;
  border-radius: 50%;
  animation: float-orb 8s ease-in-out infinite;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}

.hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 100vh;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  gap: 20px;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 520px;
  padding: 140px 0 80px;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: 10px 22px;
  margin-bottom: 28px;
  backdrop-filter: blur(16px);
  animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(124, 92, 191, 0); }
  50% { box-shadow: 0 0 20px rgba(124, 92, 191, 0.2); }
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 1.5s infinite;
  box-shadow: 0 0 8px rgba(40, 167, 69, 0.6);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-badge span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero h1 {
  color: white;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  line-height: 1.1;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #ffd700, #ffaa00, #ffd700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 4s ease-in-out infinite;
}

@keyframes gold-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.hero-stat .number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-stat .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.hero-image {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  flex: 1 1 60%;
  min-width: 0;
}

.hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.25));
}

/* === URGENCY BAR === */
.urgency-bar {
  background: linear-gradient(90deg, var(--urgent-red), #e74c5c, var(--urgent-red));
  background-size: 200% 100%;
  animation: urgency-slide 4s linear infinite;
  color: white;
  text-align: center;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@keyframes urgency-slide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.urgency-bar .highlight {
  color: #ffd700;
  font-weight: 700;
}

/* === TRUST STRIP === */
.trust-strip {
  background: white;
  padding: 20px 0;
  border-bottom: 1px solid rgba(232, 218, 245, 0.5);
  overflow: hidden;
}

.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

/* === SECTIONS === */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header p { margin-top: 16px; }

/* === FIRSTS / ACHIEVEMENTS === */
.firsts {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  color: white;
  position: relative;
  overflow: hidden;
}

.firsts::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 191, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.firsts h2 { color: white; }

.firsts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.first-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 36px;
  backdrop-filter: blur(16px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.first-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, var(--cta-orange), #ffd700);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.first-card:hover::before { transform: scaleX(1); }

.first-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.first-card .badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}

.first-card h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.first-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

/* === SPECIALITIES GRID === */
.specialities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.spec-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  padding: 36px 20px;
  position: relative;
  border: 1px solid rgba(232, 218, 245, 0.4);
}

.spec-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(124, 92, 191, 0.05), rgba(255, 107, 53, 0.05));
  opacity: 0;
  transition: opacity 0.4s;
}

.spec-card:hover::after { opacity: 1; }

.spec-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.spec-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 16px;
  transition: transform 0.5s;
  position: relative;
  z-index: 1;
}

.spec-card:hover img { transform: scale(1.1) rotate(2deg); }

.spec-card h4 {
  color: var(--primary);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.spec-card p {
  font-size: 0.88rem;
  position: relative;
  z-index: 1;
}

/* === SERVICES ICON GRID === */
.services-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(42,27,94,0.08);
}

.service-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 16px 8px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-icon-card:hover {
  background: var(--lavender);
  transform: translateY(-4px);
}

.service-icon-card:hover .icon-circle {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(42,27,94,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.icon-circle svg {
  width: 38px;
  height: 38px;
}

.service-icon-card h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .services-icon-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 32px 20px;
    gap: 20px 16px;
  }
  .icon-circle { width: 56px; height: 56px; }
  .icon-circle svg { width: 28px; height: 28px; }
  .service-icon-card h4 { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .services-icon-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 16px;
  }
}

/* === TEAM SECTION === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

.team-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(232, 218, 245, 0.3);
  display: flex;
  flex-direction: column;
}

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

.team-card .photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lavender), var(--soft-pink));
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.team-card .photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(transparent, white);
}

.team-card .photo img {
  height: 260px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .photo img { transform: scale(1.08); }

.team-card .info { padding: 18px 16px 24px; }

.team-card .info h4 {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.team-card .info p {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
}

/* === FOUNDER FEATURE === */
.founder-section {
  background: linear-gradient(135deg, var(--off-white), var(--lavender));
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 191, 0.06) 0%, transparent 70%);
  bottom: -200px;
  left: -200px;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.founder-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.founder-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
}

.founder-image img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  transition: transform 0.8s;
}

.founder-image:hover img { transform: scale(1.03); }

.founder-content .name {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.founder-content .title {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.founder-content .achievements { margin-top: 24px; }

.founder-content .achievements li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-muted);
}

.founder-content .achievements li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--success), #34c759);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 3px 8px rgba(40, 167, 69, 0.3);
}

/* === TESTIMONIALS === */
.testimonials { background: var(--off-white); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(232, 218, 245, 0.3);
}

.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--lavender);
  position: absolute;
  top: 10px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
}

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

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary);
}

.testimonial-card .author span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === SCROLLING MARQUEE === */
.marquee-section {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  padding: 36px 0;
  overflow: hidden;
  position: relative;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--gradient-start), transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, var(--gradient-mid), transparent);
}

.marquee {
  display: flex;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 36px;
  flex-shrink: 0;
}

.marquee-item span {
  color: rgba(255, 255, 255, 0.15);
  margin: 0 16px;
}

/* === 24/7 BANNER === */
.always-open {
  background: linear-gradient(135deg, var(--success), #34c759, #28a745);
  color: white;
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.always-open::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -80px;
  right: 10%;
  animation: float-orb 6s ease-in-out infinite;
}

.always-open h2 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 12px;
  position: relative;
}

.always-open p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 28px;
  position: relative;
}

/* === CONTACT FORM === */
.contact-form-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(232, 218, 245, 0.3);
}

.contact-form .form-group { margin-bottom: 24px; }

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e4f0;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--off-white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(124, 92, 191, 0.1);
  background: white;
}

.contact-form textarea { min-height: 120px; resize: vertical; }

/* === ANIMALS STRIP === */
.animals-strip {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.animals-strip img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  opacity: 0.7;
  transition: var(--transition);
  filter: grayscale(30%);
}

.animals-strip img:hover {
  opacity: 1;
  transform: scale(1.2) rotate(5deg);
  filter: grayscale(0%);
}

/* === FOOTER === */
.footer {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  color: white;
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 191, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.65);
  margin: 16px 0;
  font-size: 0.95rem;
}

.footer h4 {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cta-orange));
  border-radius: 2px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  font-size: 0.9rem;
}

.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(124, 92, 191, 0.4);
}

/* === FLOATING CTA === */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.floating-cta a {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.floating-cta a:hover { transform: scale(1.15) rotate(5deg); }

.floating-call {
  background: linear-gradient(135deg, var(--success), #34c759);
  color: white;
  animation: pulse-green 2s infinite;
}

.floating-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

/* === COUNTER ANIMATION === */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.counter-item {
  padding: 28px;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 218, 245, 0.3);
  transition: var(--transition);
}

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

.counter-item .count {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-item .count-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* === GUARANTEE BADGE === */
.guarantee {
  background: white;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  max-width: 600px;
  margin: 60px auto 0;
  position: relative;
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.15);
}

.guarantee::before {
  content: '🛡️';
  font-size: 3.5rem;
  display: block;
  margin-bottom: 16px;
}

.guarantee h3 {
  color: var(--gold);
  margin-bottom: 12px;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 60%, var(--gradient-end) 100%);
  padding: 170px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(124, 92, 191, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(196, 168, 232, 0.15) 0%, transparent 40%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--off-white));
  z-index: 1;
}

.page-hero h1 { color: white; position: relative; z-index: 1; }
.page-hero p { color: rgba(255, 255, 255, 0.8); position: relative; font-size: 1.2rem; margin-top: 16px; z-index: 1; }

/* === CONTACT INFO CARDS === */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.contact-info-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(232, 218, 245, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--cta-orange));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.contact-info-card:hover::before { transform: scaleX(1); }

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

.contact-info-card .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--lavender), var(--soft-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  transition: var(--transition);
}

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

/* === SERVICES CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(232, 218, 245, 0.3);
}

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

.service-card .card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card .card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, white);
}

.service-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .card-img img { transform: scale(1.1); }

.service-card .card-body { padding: 28px; }
.service-card h4 { margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; }

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-card .learn-more:hover {
  gap: 12px;
  color: var(--cta-orange);
}

/* === MAP === */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero-image {
    max-width: 600px;
    margin: 0 auto;
    flex: none;
    width: 100%;
  }

  .hero-content { padding: 140px 0 20px; max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .founder-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    box-shadow: var(--shadow-md);
    gap: 16px;
  }

  .nav-links.active a { color: var(--text-dark); }
  .hero h1 { font-size: 2.4rem; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .trust-strip .container { gap: 16px; }
  .contact-form-wrapper { padding: 24px; }
  .hero-stat .number { font-size: 1.6rem; }
}
