/* ============================================================
   DENTAL BOVAN – Premium Landing Page
   Style: Modern Medical / Clean / Trust-Focused
   Author: Senior Frontend Developer
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --blue-primary:   #1A6FB5;
  --blue-dark:      #0D4C8A;
  --blue-light:     #EBF3FB;
  --blue-mid:       #2980C9;
  --accent:         #E85D04;
  --accent-light:   #FFF3EC;
  --accent-dark:    #C24D02;
  --green-success:  #16A34A;
  --white:          #FFFFFF;
  --bg-light:       #F8FAFB;
  --bg-section:     #F2F7FC;
  --text-dark:      #1A1A2E;
  --text-body:      #4A5568;
  --text-muted:     #718096;
  --text-light:     #A0AEC0;
  --border:         #E2EAF0;
  --shadow-sm:      0 2px 8px rgba(26, 111, 181, 0.08);
  --shadow-md:      0 8px 32px rgba(26, 111, 181, 0.12);
  --shadow-lg:      0 20px 60px rgba(26, 111, 181, 0.18);
  --shadow-accent:  0 8px 32px rgba(232, 93, 4, 0.25);
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul {
  list-style: none;
}

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

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }
p  { line-height: 1.75; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: var(--blue-light);
  border: 1px solid rgba(26,111,181,0.15);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── UTILITIES ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,111,181,0.35);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 30px rgba(26,111,181,0.45);
  transform: translateY(-2px);
}

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

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 12px 40px rgba(232,93,4,0.35);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue-primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 0.85rem;
  padding: 10px 20px;
}

/* ── SCROLL ANIMATIONS ──────────────────────────────────────── */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate.delay-1 { transition-delay: 0.1s; }
.animate.delay-2 { transition-delay: 0.2s; }
.animate.delay-3 { transition-delay: 0.3s; }
.animate.delay-4 { transition-delay: 0.4s; }
.animate.delay-5 { transition-delay: 0.5s; }
.animate.delay-6 { transition-delay: 0.6s; }
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HEADER / NAVIGATION ────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

.header.transparent {
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(26,111,181,0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  transition: var(--transition);
}

.header.transparent .nav-logo-name {
  color: var(--white);
}

.nav-logo-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.header.transparent .nav-logo-tagline {
  color: rgba(255,255,255,0.7);
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.header.transparent .nav-link {
  color: rgba(255,255,255,0.85);
}

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

.header.transparent .nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
}

.header.transparent .nav-phone {
  color: rgba(255,255,255,0.85);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: var(--white);
  transition: var(--transition);
}

.header.scrolled .hamburger span {
  background: var(--text-dark);
}

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 76, 138, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav .nav-link {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 12px 24px;
  letter-spacing: 0.02em;
}
.mobile-nav .nav-link:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

.mobile-nav-phone {
  margin-top: 24px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── HERO SECTION ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 76, 138, 0.88) 0%,
    rgba(26, 111, 181, 0.72) 50%,
    rgba(13, 76, 138, 0.60) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeDown 0.8s ease 0.2s both;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50% { opacity: 0.8; transform: scale(1.15); box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.9s ease 0.4s both;
}

.hero h1 span {
  background: linear-gradient(135deg, #60BDFF, #A5D8FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
  animation: fadeUp 0.9s ease 0.55s both;
}

.hero-weekend-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 36px;
  box-shadow: 0 6px 24px rgba(232,93,4,0.4);
  animation: fadeUp 0.9s ease 0.65s both;
}

.hero-weekend-badge svg {
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.75s both;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 1s both;
  padding-bottom: 60px;
}

.hero-stat-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  color: white;
  min-width: 120px;
}

.hero-stat-card .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.hero-stat-card .stat-label {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 500;
}

/* ── TRUST BAR ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--blue-dark);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-item svg {
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

/* ── O NAMA (ABOUT) ─────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--bg-section);
  position: relative;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
}

.about-badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.about-badge-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.about-content .section-sub {
  margin-bottom: 32px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.about-value:hover {
  border-color: var(--blue-primary);
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.about-value-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  flex-shrink: 0;
}

.about-value h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.about-value p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── SERVICES ────────────────────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--bg-section);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: default;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--blue-primary);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  flex-grow: 1;
}

.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-primary);
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 50px;
  margin-top: 4px;
  align-self: flex-start;
}

/* ── HITNE INTERVENCIJE (EMERGENCY) ─────────────────────────── */
.emergency {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.emergency::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-light) 0%, #FEE5D5 100%);
  border-radius: 48px 0 0 48px;
  z-index: 0;
}

.emergency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.emergency-content .section-label {
  background: rgba(232,93,4,0.1);
  border-color: rgba(232,93,4,0.2);
  color: var(--accent);
}

.emergency-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.emergency-title span {
  color: var(--accent);
}

.emergency-desc {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 36px;
  line-height: 1.75;
}

.emergency-hours {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(232,93,4,0.1);
}

.hours-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.hours-header h3 {
  font-size: 1rem;
  color: var(--text-dark);
}

.hours-badge-live {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(22,163,74,0.1);
  color: var(--green-success);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.hours-badge-live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-of-type {
  border-bottom: none;
}

.hours-days {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 500;
}

.hours-time {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hours-row.highlight .hours-days {
  color: var(--accent);
  font-weight: 700;
}

.hours-row.highlight .hours-time {
  color: var(--accent);
}

.hours-row.highlight .hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid rgba(232,93,4,0.2);
  padding: 3px 8px;
  border-radius: 50px;
  margin-left: 6px;
}

.emergency-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.emergency-cta-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  transition: var(--transition);
}

.emergency-cta-phone:hover {
  color: var(--accent-dark);
  transform: translateX(4px);
}

.emergency-cta-phone small {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

.emergency-cta-phone-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  animation: phone-ring 3s ease infinite;
  flex-shrink: 0;
}

@keyframes phone-ring {
  0%, 90%, 100% { transform: rotate(0deg); }
  92% { transform: rotate(-15deg); }
  94% { transform: rotate(15deg); }
  96% { transform: rotate(-10deg); }
  98% { transform: rotate(10deg); }
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--bg-section);
  overflow: hidden;
}

.google-rating-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  margin-bottom: 56px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  flex-wrap: wrap;
}

.google-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.google-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
}

.google-g { color: #4285F4; }
.google-o1 { color: #EA4335; }
.google-o2 { color: #FBBC05; }
.google-g2 { color: #4285F4; }
.google-l  { color: #34A853; }
.google-e  { color: #EA4335; }

.google-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.google-score {
  flex: 1;
}

.google-score-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.google-stars {
  display: flex;
  gap: 4px;
  margin: 4px 0;
}

.star {
  color: #FBBC05;
  font-size: 1.2rem;
}

.google-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.google-badge-wrap {
  margin-left: auto;
  text-align: right;
}

.google-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(52, 168, 83, 0.1);
  color: #34A853;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(26,111,181,0.2);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}
.testimonial-stars .star {
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  flex-grow: 1;
  font-style: italic;
}

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

.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: 700;
  color: white;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.author-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-info-value a {
  color: var(--blue-primary);
  transition: var(--transition);
}

.contact-info-value a:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

.contact-hours-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.contact-hours-row:last-child {
  border-bottom: none;
}

.contact-hours-row.weekend {
  background: var(--accent-light);
  font-weight: 700;
}

.contact-hours-row.weekend .hours-day { color: var(--accent); }
.contact-hours-row.weekend .hours-t { color: var(--accent); }

.hours-day { font-weight: 500; color: var(--text-body); }
.hours-t   { font-weight: 700; color: var(--text-dark); }

.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  height: 100%;
  min-height: 400px;
  background: var(--bg-section);
  position: relative;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 420px;
}

.map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  background: var(--bg-section);
}

.map-fallback svg {
  color: var(--blue-primary);
}

.map-fallback p {
  font-size: 0.85rem;
  text-align: center;
  max-width: 200px;
}

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 60%, var(--blue-mid) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

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

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--blue-primary);
  color: white;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: white;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--blue-primary);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.heart {
  color: #E85D04;
  animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.3); }
  30% { transform: scale(1); }
  45% { transform: scale(1.2); }
  60% { transform: scale(1); }
}

/* ── KEYFRAMES ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SCROLL TO TOP ───────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--blue-primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--blue-dark);
  transform: translateY(-4px);
}

/* ── FLOATING PHONE BUTTON ───────────────────────────────────── */
.float-phone {
  position: fixed;
  bottom: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-accent);
  z-index: 998;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
  animation: float-in 1s ease 1.5s both;
}

.float-phone:hover {
  background: var(--accent-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(232,93,4,0.45);
}

.float-phone-icon {
  animation: phone-ring 3s ease 2s infinite;
}

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

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid,
  .emergency-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .emergency::before {
    width: 100%;
    border-radius: 0;
    top: 50%;
    height: 50%;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }


  .hero-content {
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

  .trust-bar-inner {
    gap: 24px;
  }

  .trust-divider {
    display: none;
  }

  .google-rating-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .google-badge-wrap {
    margin-left: 0;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

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

  .about-image-badge {
    bottom: -12px;
    right: -8px;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stat-card {
    flex: 1;
    min-width: 100px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .emergency-hours {
    padding: 24px;
  }

  .float-phone span:not(.float-phone-icon) {
    display: none;
  }

  .float-phone {
    padding: 14px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .scroll-top {
    bottom: 32px;
    right: 20px;
  }

  .btn {
    padding: 12px 22px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-stats {
    flex-direction: column;
  }

  .hero-stat-card {
    width: 100%;
  }
}

/* ── ABOUT IMAGE PLACEHOLDER ─────────────────────────────────── */
.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--bg-section) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--blue-primary);
}
