/* =========================================
   AMBULATORIO VETERINARIO — style.css
   Premium Modern Design System
   ========================================= */

/* ── FONTS & ROOT ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #38bdf8;
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-200: #bae6fd;

  --accent-gold: #f59e0b;
  --accent-gold-light: #fef3c7;
  --accent-coral: #f97316;

  --text-dark: #0f1c14;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  --bg-white: #ffffff;
  --bg-offwhite: #f9fafb;
  --bg-blue-tint: #f0f9ff;
  --bg-hero: #0c1b2c;

  --border: #e5e7eb;
  --border-light: #f3f4f6;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-blue: 0 8px 32px rgba(14, 165, 233, 0.25);

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 76px;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

input,
textarea,
select {
  font-family: inherit;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3 {
  line-height: 1.15;
  font-weight: 700;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--primary-light);
  font-weight: 400;
}

/* ── SECTIONS ── */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-title {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.text-left {
  text-align: left;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.35);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff !important;
  color: var(--primary) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.btn-white:hover {
  background: var(--bg-blue-tint) !important;
}

.btn-white svg {
  stroke: var(--primary) !important;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.25);
}

.btn-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.inline-btn {
  margin-top: 32px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--nav-height);
  transition: all var(--transition);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: all var(--transition);
  pointer-events: none;
}

.navbar.scrolled::before {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), 0 10px 30px rgba(0, 0, 0, 0.04);
}

.navbar:not(.scrolled)::before {
  background: transparent;
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.logo-icon:has(.logo-img) {
  background: transparent;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav-logo:hover .logo-icon {
  transform: scale(1.08);
}

.logo-icon svg {
  width: 28px;
  height: 28px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  transition: color var(--transition);
}

.navbar:not(.scrolled) .logo-name {
  color: #fff;
}

.logo-tagline {
  font-size: 0.67rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.navbar:not(.scrolled) .logo-tagline {
  color: rgba(255, 255, 255, 0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition);
}

.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.navbar:not(.scrolled) .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
  background: var(--bg-blue-tint);
  color: var(--primary);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  gap: 5px;
  z-index: 1100;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}

.hamburger:hover {
  background: rgba(255,255,255,0.1);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}

.navbar:not(.scrolled) .hamburger span {
  background: #fff;
}

/* X animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── NAV SOCIAL ── */
.nav-social {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
}

.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--transition);
}

.navbar.scrolled .nav-social-link {
  color: var(--text-muted);
}

.nav-social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.navbar.scrolled .nav-social-link:hover {
  background: var(--primary-50);
  color: var(--primary);
}

.nav-social-link svg {
  width: 18px;
  height: 18px;
}

/* ── HERO ── */
.hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: var(--nav-height) 0 40px;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
  max-width: 100vw;
}

.hero>* {
  padding: 0;
}

.hero-content {
  padding-left: max(24px, calc((100vw - 1180px)/2 + 24px));
  z-index: 2;
}

.hero-visual {
  z-index: 2;
  padding-right: max(24px, calc((100vw - 1180px)/2 + 24px));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(14, 165, 233, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse at 20% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 60%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-gold);
  bottom: -80px;
  left: 20%;
  animation-delay: 3s;
  opacity: 0.08;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--primary-light);
  top: 40%;
  left: -50px;
  animation-delay: 5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.05);
  }
}





@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  color: #fff;
  margin-bottom: 24px;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Visual Side */
.hero-visual {
  position: relative;
}

.hero-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.12);
}

.img-badge {
  position: absolute;
  bottom: 20px;
  left: auto;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.img-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  animation: float-card 5s ease-in-out infinite;
}

.card-1 {
  top: -20px;
  right: clamp(8px, 1.5vw, 20px);
  animation-delay: 1s;
  max-width: 200px;
}

.card-1 strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.card-1 span {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.fc-icon {
  font-size: 1.5rem;
}

.card-2 {
  bottom: -20px;
  left: -20px;
  flex-direction: column;
  align-items: flex-start;
  min-width: 160px;
  animation-delay: 2.5s;
}

.fc-stars {
  color: #f59e0b;
  font-size: 0.9rem;
}

.card-2 p {
  font-size: 0.82rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.4;
}

.fc-author {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}





@keyframes scroll-line {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  background: var(--primary);
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.marquee-track .sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── SERVICES ── */
.services-section {
  background: var(--bg-offwhite);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.service-img-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-card-content {
  padding: 32px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  background: #fff;
}

.service-card.featured .service-card-content {
  background: transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-50), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}

.service-card:not(.featured):hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-100);
  background: #fff;
}

.service-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}

.service-card.featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(14, 165, 233, 0.35);
}

.service-card.featured h3,
.service-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.service-card.featured h3 {
  color: #fff;
}

.service-badge-top {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  z-index: 10;
  box-shadow: var(--shadow-md);
}


/* ── ABOUT ── */
.about-section {
  background: var(--bg-white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
}

.aig-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.about-img-side {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

.aig-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats-badge {
  background: var(--primary);
  color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.stats-badge .abf-icon {
  font-size: 2rem;
}

.stats-badge strong {
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
}

.stats-badge span {
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-badge-float strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.about-badge-float span {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.about-text {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 8px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-offwhite);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.value-item:hover {
  background: var(--primary-50);
  border-color: var(--primary-100);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.1);
}

.value-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.value-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 48px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.ti-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.trust-item span {
  font-size: 0.82rem;
  opacity: 0.7;
}

/* ── REVIEWS ── */
.reviews-section {
  background: var(--bg-offwhite);
}

.reviews-rating-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 56px;
  padding: 36px;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--primary);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -8px;
  margin-bottom: 56px;
  box-shadow: var(--shadow-sm);
}

/* .rrh-score defined below in POLISH section */

.rrh-stars {
  font-size: 1.6rem;
  color: #f59e0b;
  margin-bottom: 4px;
}

.rrh-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.rrh-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}



.rc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.rc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.rc-header strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.rc-stars {
  font-size: 0.8rem;
  color: #f59e0b;
}

.review-card p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.65;
}

.review-card p strong {
  color: var(--primary-dark);
}



.reviews-cta {
  text-align: center;
}

.reviews-cta p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #0c1b2c 0%, #0f2430 50%, #162e3d 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  opacity: 0.12;
  top: -100px;
  left: 10%;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-gold);
  opacity: 0.06;
  bottom: -80px;
  right: 15%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-paw {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.cta-content h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--bg-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ci-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-offwhite);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.ci-card:hover {
  background: var(--primary-50);
  border-color: var(--primary-100);
  transform: translateX(4px);
}

.ci-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ci-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 4px;
}

.ci-card p,
.ci-card a {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.ci-card a:hover {
  color: var(--primary);
}

/* FORM */
.contact-form {
  background: var(--bg-offwhite);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: #fff;
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  font-size: 0.76rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
  background: linear-gradient(180deg, #0c1b2c 0%, #060d16 100%);
  color: rgba(255, 255, 255, 0.6);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 80px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo .logo-name {
  color: #fff;
}

.footer-logo .logo-tagline {
  color: rgba(255, 255, 255, 0.4);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

/* Footer social icons */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
  display: inline-block;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

a.footer-contact-item:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  letter-spacing: 0.02em;
}

.footer-bottom>* {
  flex: 1;
}

.footer-bottom>p:first-child {
  text-align: left;
}

.footer-credit {
  text-align: center;
}

.footer-bottom>p:last-child {
  text-align: right;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-bottom a:hover {
  color: var(--primary-light);
  border-bottom-color: var(--primary-light);
}

@media (max-width: 991px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-bottom>* {
    text-align: center !important;
  }
}

/* ── WHATSAPP ── */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 997;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  overflow: hidden;
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  padding-right: 24px;
}

/* ── BACK TO TOP ── */
.back-top {
  position: fixed;
  bottom: 84px;
  right: 24px;
  z-index: 996;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all var(--transition);
}

.back-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.back-top svg {
  width: 20px;
  height: 20px;
}

/* ── FORM SUCCESS STATE ── */
.form-success {
  text-align: center;
  padding: 48px 32px;
  animation: fade-in 0.4s ease;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-muted);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    padding: calc(var(--nav-height) + 40px) 24px 60px;
    text-align: center;
  }

  .hero-content {
    padding: 0;
    order: 1;
    align-items: center;
  }

  .hero-visual {
    order: 2;
    padding: 0;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-badge,
  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-desc {
    margin: 0 auto 36px;
  }

  

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    order: 2;
    max-width: 480px;
    margin: 0 auto;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 72px 0;
  }
}

/* ════════════════════════════════
   MOBILE NAV — rebuilt from scratch
   ════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Hide desktop social icons */
  .nav-social {
    display: none;
  }

  /* ── Mobile menu panel (full screen overlay) ── */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;

    /* full viewport — independent of any scroll position */
    position: fixed;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    height: 100dvh !important;
    z-index: 10000;
    padding: 40px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    /* style */
    background: #ffffff !important;

    /* hidden by default via visibility + opacity + scale */
    opacity: 0;
    visibility: hidden;
    transform: scale(1.08);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
    pointer-events: none;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
  }

  /* ── Close button (X) inside overlay ── */
  .nav-links::after {
    content: '×';
    display: block;
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--text-dark);
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .nav-links:active::after {
    transform: scale(0.9);
  }

  /* ── Nav links inside panel ── */
  .nav-link {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark) !important;
    padding: 16px 24px;
    border-radius: 16px;
    text-align: center;
    width: 100%;
    max-width: 280px;
    transition: all 0.2s ease;
  }

  .nav-link:hover,
  .nav-link:focus {
    background: var(--primary-50);
    color: var(--primary) !important;
    transform: translateY(-2px);
  }

  /* ── CTA Button inside panel ── */
  .btn-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.15rem;
    padding: 18px 24px;
    margin-top: 24px;
    width: 100%;
    max-width: 280px;
    border-radius: 16px;
  }

  /* ── Stagger animation for each child ── */
  .nav-links > * {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.3s ease;
  }

  .nav-links.open > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.07s; }
  .nav-links.open > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
  .nav-links.open > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.17s; }
  .nav-links.open > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.22s; }
  .nav-links.open > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.27s; }

  /* Hamburger always dark in mobile (navbar is scrolled on inner pages) */
  .hamburger span {
    background: var(--text-dark) !important;
  }

  /* Inner pages: ensure hamburger visible */
  .inner-page .hamburger span {
    background: var(--text-dark) !important;
  }

  .hero {
    padding: calc(var(--nav-height) + 32px) 20px 52px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
  }

  .card-1,
  .card-2 {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions>* {
    text-align: center;
    justify-content: center;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 44px;
  }

  .reviews-rating-hero {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-btn span {
    display: none;
  }

  .whatsapp-btn {
    padding: 14px;
    border-radius: 50%;
  }
}

/* Hero buttons stack vertically on phones up to 640px wide (covers iPhone 14/15 Pro at 390px) */
@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions>* {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .about-img-grid {
    grid-template-columns: 1fr;
  }

  /* Nascondi solo l'immagine laterale, mantieni il badge "+15 Anni" */
  .aig-side .side-img {
    display: none;
  }

  .main-ph {
    aspect-ratio: 4/3;
    min-height: 220px;
  }
}

/* ========================================
   POLISH — Extra & New Components
   ======================================== */

/* ── Toelettatura service card components ── */
.service-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-offwhite);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.service-rating .stars {
  color: #f59e0b;
  font-size: 0.9rem;
  font-weight: 700;
}

.service-rating .rating-text {
  font-size: 0.8rem;
  color: var(--text-dark);
  font-weight: 700;
}

.service-contacts-special {
  margin-top: auto;
}

.grooming-actions {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.grooming-btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.88rem;
  justify-content: center;
  background: #8b5cf6;
  border-color: #8b5cf6;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.grooming-btn:hover {
  background: #7c3aed;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.grooming-socials {
  display: flex;
  gap: 8px;
}

.grooming-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  border: 1px solid var(--border-light);
  background: var(--bg-offwhite);
}

.grooming-social-btn.ig {
  color: #e1306c;
}

.grooming-social-btn.fb {
  color: #1877f2;
}

.grooming-social-btn:hover {
  transform: translateY(-3px);
  border-color: var(--primary-100);
  background: white;
  box-shadow: var(--shadow-md);
}

.grooming-social-btn svg {
  width: 20px;
  height: 20px;
}

/* ── reviews rating hero (stars variant) ── */
.rrh-score {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: #f59e0b;
  letter-spacing: -1px;
  line-height: 1;
}

.rrh-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.rrh-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 260px;
}

/* ── SELECT field ── */
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236b7280'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 14px center/14px;
  appearance: none;
  -webkit-appearance: none;
  transition: all var(--transition);
  outline: none;
  cursor: pointer;
}

.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.08);
}

.form-group select option:first-child {
  color: var(--text-light);
}

/* ── FAQ SECTION ── */
.faq-section {
  background: var(--bg-white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  align-items: start;
}

.faq-header {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  background: transparent;
  transition: color var(--transition);
  cursor: pointer;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question[aria-expanded="true"] {
  color: var(--primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--primary-100);
}

.faq-question[aria-expanded="true"] .faq-icon svg {
  transform: rotate(180deg);
  stroke: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s ease,
    opacity 0.3s ease;
  opacity: 0;
}

.faq-answer.open {
  max-height: 200px;
  padding-bottom: 20px;
  opacity: 1;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
  padding: 0 4px;
}

/* ── Improved service card hover line ── */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.service-card:not(.featured):hover::after {
  transform: scaleX(1);
}

/* ── Scrolled nav logo color fix ── */
.navbar.scrolled .logo-name {
  color: var(--text-dark);
}

.navbar.scrolled .logo-tagline {
  color: var(--text-muted);
}

.navbar.scrolled .nav-link {
  color: var(--text-dark);
}

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

/* ── FAQ Responsive ── */
@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-header {
    position: static;
  }
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 0.92rem;
    padding: 18px 2px;
  }
}

/* ── SERVICE PAGES STYLES ── */
.inner-page .navbar::before {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), 0 10px 30px rgba(0, 0, 0, 0.04);
}

.inner-page .nav-link, 
.inner-page .logo-name {
  color: var(--text-dark) !important;
}

.inner-page .logo-tagline {
  color: var(--text-muted) !important;
}

.service-hero {
  background: var(--bg-hero);
  padding: calc(var(--nav-height) + 80px) 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.service-hero .hero-title {
  margin-bottom: 16px;
  color: #fff;
}

.service-hero .section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.detail-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.detail-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.detail-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  color: var(--primary-dark);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-body);
}

.detail-list li span {
  color: var(--primary);
  font-weight: 800;
}

.detail-cta-box {
  margin-top: 32px;
}

/* Responsive Service Pages */
@media (max-width: 991px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: calc(var(--nav-height) + 40px) 0 40px;
  }
  
  .service-hero .hero-title {
    font-size: 2.2rem;
  }
}

.service-btn-more {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
  padding: 10px 16px;
}
/* ── LEGAL PAGES & FOOTER LINKS ── */
.footer-legal-links {
  margin-top: 16px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: var(--primary);
}

/* ── SCROLL ANIMATIONS (AOS) ── */
[data-aos] {
  opacity: 0;
  transition-duration: 0.8s;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos="up"] {
  transform: translateY(40px);
}

[data-aos="down"] {
  transform: translateY(-40px);
}

[data-aos="left"] {
  transform: translateX(40px);
}

[data-aos="right"] {
  transform: translateX(-40px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}







