/* ===================================
   PIONEER SMILES — DENTAL LANDING PAGE
   style.css — Premium Conversion Design
   =================================== */

/* === CSS CUSTOM PROPERTIES === */
:root {
  --blue-primary: #1d4ed8;
  --blue-light: #2563eb;
  --blue-dark: #1e3a8a;
  --orange-accent: #ea580c;
  --orange-light: #f97316;
  --gold: #f59e0b;
  --white: #ffffff;
  --off-white: #f8faff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --text-primary: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-blue: 0 8px 32px rgba(29,78,216,0.3);

  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.4s cubic-bezier(0.4,0,0.2,1);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 96px 0;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-lg {
  font-size: 1rem;
  padding: 14px 28px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(29,78,216,0.4);
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue-primary);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* === SECTION HEADERS === */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(37,99,235,0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.section-cta-note {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* === LANGUAGE SWITCHER === */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 1rem;
}

.lang-switcher a {
  color: var(--text-muted);
  opacity: 0.6;
  padding: 4px;
}

.lang-switcher a.active {
  color: var(--blue-primary);
  opacity: 1;
}

.lang-switcher a:hover {
  opacity: 1;
  color: var(--blue-primary);
}

.lang-switcher .divider {
  color: var(--gray-300);
  font-weight: 400;
}

.lang-switcher-mobile {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 0.5rem;
}

.lang-switcher-mobile a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.lang-switcher-mobile a.active {
  color: var(--blue-primary);
  border-bottom: 2px solid var(--blue-primary);
}

/* =============================
   HEADER
   ============================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
}

.site-header.scrolled {
  height: 72px;
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,1);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  flex-shrink: 0;
}

.logo {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav a:hover {
  color: var(--blue-primary);
  background: rgba(37,99,235,0.06);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-ctas .btn-ghost {
  background: transparent;
  color: var(--gray-800);
  border-color: var(--gray-200);
  font-size: 0.85rem;
}

.header-ctas .btn-ghost:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
  color: var(--text-primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--white);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition);
  padding: 0 20px; /* Padding zero no topo/base quando fechado */
}

.mobile-menu.open {
  max-height: 400px;
  padding: 1.5rem 20px;
}

.mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.mobile-cta {
  margin-top: 0.5rem;
  justify-content: center;
}

/* =============================
   HERO
   ============================= */
/* =============================
   HERO
   ============================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #0f172a;
  background-image: 
    radial-gradient(at 0% 0%, hsla(222,47%,11%,1) 0, transparent 50%), 
    radial-gradient(at 50% 0%, hsla(225,39%,30%,1) 0, transparent 50%), 
    radial-gradient(at 100% 0%, hsla(221,45%,45%,1) 0, transparent 50%), 
    radial-gradient(at 0% 100%, hsla(222,47%,11%,1) 0, transparent 50%), 
    radial-gradient(at 50% 100%, hsla(225,39%,30%,1) 0, transparent 50%), 
    radial-gradient(at 100% 100%, hsla(221,45%,45%,1) 0, transparent 50%);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-shape-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-blob 20s ease-in-out infinite;
}

.hero-shape-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56,189,248,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-blob 25s ease-in-out infinite reverse;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 40px 0;
  animation: reveal-left 1s cubic-bezier(0.2, 0, 0, 1) both;
}

.hero-media {
  position: relative;
  animation: reveal-right 1s cubic-bezier(0.2, 0, 0, 1) 0.2s both;
}

@keyframes reveal-left {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes reveal-right {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-image-container {
  position: relative;
  border-radius: 30px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* Floating Cards in Hero */
.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 24px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
  animation: float-blob 6s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-card-1 {
  top: 10%;
  left: -30px;
  animation-delay: -2s;
}

.hero-card-2 {
  bottom: 10%;
  right: -40px;
  animation-delay: -4s;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-primary);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(29,78,216,0.4);
}

.card-info strong {
  display: block;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
}

.card-info span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
}

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 2rem;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.35rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 3rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.hero-note svg {
  color: #10b981;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 32px;
  height: 52px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  position: relative;
}

.scroll-dot::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #34d399;
  border-radius: var(--radius-full);
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}
@keyframes scroll-anim {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

/* =============================
   TRUST BAR
   ============================= */
.trust-bar {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 32px;
  animation: fadeUp 0.6s ease-out both;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(3) { animation-delay: 0.2s; }
.trust-item:nth-child(5) { animation-delay: 0.3s; }
.trust-item:nth-child(7) { animation-delay: 0.4s; }

.trust-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(37,99,235,0.03));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.trust-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* =============================
   SERVICES
   ============================= */
.services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c, var(--blue-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: color-mix(in srgb, var(--c, var(--blue-light)) 12%, transparent);
  color: var(--c, var(--blue-light));
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-light);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 8px;
  color: var(--blue-dark);
}

/* =============================
   ABOUT
   ============================= */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.about-img {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-lg);
}

.about-badge-float svg {
  color: var(--blue-light);
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-text {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

.about-highlights li svg {
  color: #10b981;
  flex-shrink: 0;
}

/* =============================
   WHY CHOOSE US
   ============================= */
.why-us {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.why-us .container { position: relative; z-index: 1; }

.why-us .section-label {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.why-us .section-title { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.why-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

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

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 0.75rem;
}

.stars {
  display: flex;
  gap: 3px;
}

.rating-summary span {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.testimonial-featured {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 2px rgba(37,99,235,0.15), var(--shadow-md);
}

.testimonial-featured::before {
  content: '★ Featured Review';
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--blue-light);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-800);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-text::before {
  content: '"';
  font-size: 2rem;
  color: var(--blue-light);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
  font-style: normal;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}

/* =============================
   CTA SECTION
   ============================= */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 50%, #9333ea 100%);
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

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

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

/* =============================
   CONTACT SECTION
   ============================= */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(37,99,235,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail-item a,
.contact-detail-item span {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.5;
}

.contact-detail-item a:hover { color: var(--blue-light); }

.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(16,185,129,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #10b981;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================
   MAP SECTION
   ============================= */
.map-section {
  background: var(--off-white);
}

.map-header {
  padding: 60px 0 40px;
  text-align: center;
}

.map-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.map-sub {
  color: var(--text-muted);
  font-size: 1rem;
}

.map-embed {
  position: relative;
  overflow: hidden;
  line-height: 0;
  box-shadow: var(--shadow-md);
}

.map-embed iframe {
  display: block;
}

.map-cta-strip {
  background: var(--blue-dark);
  padding: 1.25rem 0;
}

/* =============================
   FOOTER
   ============================= */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(10);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
  max-width: 280px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.social-link:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-hours {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-hours strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-hours p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.footer-bottom {
  padding: 1.5rem 0;
}

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

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

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

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* =============================
   FLOATING CALL BUTTON
   ============================= */
.float-call-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  color: var(--white);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(29,78,216,0.4), 0 2px 8px rgba(0,0,0,0.2);
  align-items: center;
  gap: 8px;
  animation: pulse-btn 2.5s ease-in-out infinite;
  transition: transform var(--transition), box-shadow var(--transition);
}

.float-call-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(29,78,216,0.5), 0 4px 12px rgba(0,0,0,0.2);
  animation: none;
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 4px 20px rgba(29,78,216,0.4), 0 2px 8px rgba(0,0,0,0.2); }
  50% { box-shadow: 0 4px 32px rgba(29,78,216,0.7), 0 2px 8px rgba(0,0,0,0.2); }
}

/* ===================================
   RESPONSIVE — TABLET (max 1024px)
   =================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .trust-item {
    padding: 10px 20px;
  }
}

/* ===================================
   RESPONSIVE — MOBILE (max 768px)
   =================================== */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .section-pad { padding: 64px 0; }

  /* Header */
  .main-nav, .header-ctas { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  /* Hero */
  .hero { align-items: flex-start; padding-top: calc(var(--header-h) + 3rem); min-height: 100vh; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-content { padding: 0; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3.8rem); line-height: 1.1; margin-bottom: 1.5rem; }
  .hero-sub { font-size: 1.2rem; margin-bottom: 2.5rem; margin-left: auto; margin-right: auto; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 1rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-note { justify-content: center; text-align: center; gap: 8px; font-size: 0.85rem; }
  .hero-media { margin-top: 2rem; width: 100%; }
  .hero-card { display: none; }
  .hero-image-container { border-radius: 24px; padding: 12px; background: rgba(255,255,255,0.05); }
  .hero-scroll-indicator { display: none; }

  /* Trust Bar */
  .trust-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .trust-item { padding: 16px 0; }
  .trust-divider { width: 100%; height: 1px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-badge-float { display: none; }

  /* Why us */
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.75rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  /* CTA section */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }

  /* Float button */
  .float-call-btn { display: flex; }

  /* Allow buttons to wrap and adjust size */
  .btn { 
    white-space: normal; 
    text-align: center;
    line-height: 1.2;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* ===================================
   RESPONSIVE — SMALL MOBILE (max 380px)
   =================================== */
@media (max-width: 380px) {
  .hero-headline { font-size: 1.7rem; }
  .hero-badge { font-size: 0.72rem; }
  .btn { font-size: 0.85rem; padding: 10px 16px; }
  .contact-form-wrap { padding: 1.25rem; }
}

/* =============================
   SCROLL ANIMATIONS
   ============================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
