/* Main Site Styles for Reno-Vlero */
:root {
  --brand-blue: #0a2c63;
  --paint-coral: #ff6b6b;
  --paint-teal: #1abc9c;
  --paint-gold: #f5b041;
  --paint-mint: #e8f8f5;
  --paint-cream: #f9f7f2; /* Warmer, sophisticated beige/cream */
  --text-dark: #1a252f;
  --text-light: #444b54;
  --white: #ffffff;
  --bg-gradient: linear-gradient(135deg, #eef3fc 0%, #b3c6e8 100%);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
  --shadow-rich: 0 20px 40px rgba(10,44,99,0.1);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: #ffffff;
}

/* Typography Enhancements */
h1, h2, h3 {
  font-family: 'Cinzel', serif;
  color: var(--brand-blue);
  margin-top: 0;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  display: block;
  width: 100%;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 100px;
  height: 4px;
  background: var(--paint-coral);
  border-radius: 2px;
  transform: translateX(-50%);
}

/* Layout Utilities */
.section {
  padding: 80px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Intro Section (vervangt hero) */
.intro-section {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 40px 32px;
  background: #fff;
}

.intro-photo {
  flex: 0 0 300px;
}

.intro-photo img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(10, 44, 99, 0.18);
  display: block;
  object-fit: cover;
}

.intro-text h1 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.3;
  margin-bottom: 16px;
}

.intro-text h2 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-top: 24px;
  margin-bottom: 8px;
}

.intro-text h2::after {
  display: none;
}

.intro-text p {
  margin: 0 0 14px;
  color: var(--text-light);
}

.intro-list {
  margin: 8px 0 16px 0;
  padding-left: 24px;
  color: var(--text-light);
}

.intro-list li {
  margin-bottom: 6px;
}

.intro-list li::marker {
  color: var(--brand-blue);
}

@media (max-width: 768px) {
  .intro-section {
    flex-direction: column;
    padding: 24px 16px;
    gap: 28px;
  }
  .intro-photo { flex: none; width: 100%; max-width: 320px; margin: 0 auto; }
}

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-content {
  text-align: center;
  color: var(--white);
  padding: 40px;
  background: rgba(10, 44, 99, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-rich);
  max-width: 800px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 1rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(10, 44, 99, 0.12);
  border: 1px solid rgba(10, 44, 99, 0.22);
  box-shadow: 0 18px 40px rgba(10, 44, 99, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-card {
  background: rgba(10, 44, 99, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 32px rgba(10, 44, 99, 0.35);
  transition: var(--transition);
  border-bottom: 6px solid transparent;
  text-align: center;
  color: #ffffff;
}

.service-link {
  display: block;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
}

.service-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: 4px;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(10, 44, 99, 0.88);
  box-shadow: 0 16px 40px rgba(10, 44, 99, 0.45);
}

.service-card:nth-child(1) { border-bottom-color: var(--paint-coral);  box-shadow: 0 8px 32px rgba(255,107,107,0.2); }
.service-card:nth-child(2) { border-bottom-color: var(--paint-teal);   box-shadow: 0 8px 32px rgba(26,188,156,0.2); }
.service-card:nth-child(3) { border-bottom-color: var(--paint-gold);   box-shadow: 0 8px 32px rgba(245,176,65,0.2); }
.service-card:nth-child(4) { border-bottom-color: #a78bfa;             box-shadow: 0 8px 32px rgba(167,139,250,0.2); }

.service-card:nth-child(1):hover { box-shadow: 0 16px 40px rgba(255,107,107,0.35); }
.service-card:nth-child(2):hover { box-shadow: 0 16px 40px rgba(26,188,156,0.35); }
.service-card:nth-child(3):hover { box-shadow: 0 16px 40px rgba(245,176,65,0.35); }
.service-card:nth-child(4):hover { box-shadow: 0 16px 40px rgba(167,139,250,0.35); }

.service-card i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  font-style: normal;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

/* Glassy Intro Panel */
.accent-box {
  background: rgba(10, 44, 99, 0.12);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(10, 44, 99, 0.22);
  box-shadow: 0 18px 40px rgba(10, 44, 99, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 40px 0;
}

.accent-box h3,
.accent-box p,
.accent-box li {
  color: var(--brand-blue);
}

/* Buttons */
.cta-btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--paint-coral);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(232, 98, 82, 0.3);
}

.cta-btn:hover {
  background: var(--brand-blue);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(10, 44, 99, 0.3);
}

/* Lists */
.bullet-list {
  list-style: none;
  padding: 0;
}

.bullet-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-weight: 500;
}

.bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--paint-teal);
  font-weight: 900;
  background: var(--paint-mint);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate {
  animation: fadeInUp 0.8s ease forwards;
}

/* Witte tekst voor .animate elementen in de hero */
.hero .animate,
.hero .animate h1,
.hero .animate h2,
.hero .animate h3,
.hero .animate p {
  color: #ffffff;
}

.cta-panel {
  margin-top: 56px;
  padding: 40px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-btn {
  display: inline-block;
  padding: 22px 64px;
  background: var(--brand-blue);
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(10, 44, 99, 0.30);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.cta-btn:hover,
.cta-btn:focus {
  background: #0b3580;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(10, 44, 99, 0.40);
  outline: none;
}

/* Responsive Tweeks */
@media (max-width: 768px) {
  .section { padding: 40px 16px; }
  .hero { height: 50vh; }
  .hero-content { padding: 20px; margin: 0 16px; }
  .services-grid { padding: 18px; grid-template-columns: 1fr; }
  .cta-panel { margin-top: 42px; padding: 24px 16px; }
  .cta-btn { padding: 18px 40px; font-size: 1.2rem; }
}

/* ── Google Recensies ──────────────────────────────────────────── */
.google-reviews-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
  padding: 56px 0;
  background: linear-gradient(160deg, #f0f4ff 0%, #e7edf8 100%);
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}

.reviews-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Linker paneel */
.reviews-left {
  flex: 0 0 176px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-right: 24px;
  border-right: 2px solid rgba(10, 44, 99, 0.13);
}

.reviews-score-label {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--brand-blue);
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
}

.reviews-stars-left {
  font-size: 1.85rem;
  color: #F4B400;
  letter-spacing: 3px;
  line-height: 1;
  margin: 2px 0;
}

.reviews-total-text {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 2px 0;
  line-height: 1.5;
  text-align: center;
}

.reviews-total-text a {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.google-brand-text {
  font-family: 'Roboto', 'Inter', Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-top: 6px;
  line-height: 1;
  user-select: none;
}
.google-brand-text span:nth-child(1) { color: #4285F4; }
.google-brand-text span:nth-child(2) { color: #EA4335; }
.google-brand-text span:nth-child(3) { color: #FBBC05; }
.google-brand-text span:nth-child(4) { color: #4285F4; }
.google-brand-text span:nth-child(5) { color: #34A853; }
.google-brand-text span:nth-child(6) { color: #EA4335; }

/* Slider */
.reviews-slider-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.reviews-track-outer {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

/* Review-kaart */
.review-card {
  flex: 0 0 auto;
  min-width: 180px;
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 20px 18px;
  box-shadow: 0 4px 18px rgba(10, 44, 99, 0.09);
  border: 1px solid rgba(10, 44, 99, 0.07);
  box-sizing: border-box;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
  min-width: 0;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.91rem;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-date {
  font-size: 0.74rem;
  color: #888;
  margin-top: 1px;
}

.review-g-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 1px;
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1;
}

.review-verified {
  color: #4285F4;
  font-size: 0.76rem;
  margin-left: 4px;
}

.review-text {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-read-more {
  font-size: 0.8rem;
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 500;
}
.review-read-more:hover { text-decoration: underline; }

/* Navigatieknoppen */
.reviews-nav-btn {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 44, 99, 0.2);
  background: #fff;
  color: var(--brand-blue);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(10, 44, 99, 0.1);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  padding: 0 0 2px;
}
.reviews-nav-btn:hover,
.reviews-nav-btn:focus-visible {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(10, 44, 99, 0.22);
  outline: none;
}

/* Skeleton-laadkaarten */
.review-skeleton {
  pointer-events: none;
}

.skel-line {
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, #e8ecf3 25%, #d2d9e8 50%, #e8ecf3 75%);
  background-size: 200% 100%;
  animation: skelShimmer 1.4s infinite;
  margin-bottom: 12px;
}

.skel-line--title {
  height: 18px;
  width: 60%;
  margin-bottom: 16px;
}

.skel-line--short { width: 45%; }

@keyframes skelShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Responsief */
@media (max-width: 900px) {
  .reviews-left { display: none; }
  .reviews-inner { padding: 0 20px; }
}
@media (max-width: 580px) {
  .google-reviews-section { padding: 36px 0; }
  .reviews-inner { padding: 0 12px; gap: 8px; }
}
