/* --- Design System & CSS Variables --- */
:root {
  /* Harmonious Healthy Color Palette */
  --primary-hue: 155; /* Healthy green/mint basis */
  --primary: hsl(var(--primary-hue), 65%, 42%);
  --primary-hover: hsl(var(--primary-hue), 70%, 35%);
  --primary-light: hsl(var(--primary-hue), 60%, 94%);
  --primary-dark: hsl(var(--primary-hue), 75%, 20%);
  
  --secondary: hsl(38, 92%, 52%); /* Gold/Orange accent */
  --secondary-hover: hsl(38, 95%, 45%);
  
  --text-dark: hsl(210, 30%, 15%);
  --text-muted: hsl(210, 15%, 45%);
  --bg-light: hsl(var(--primary-hue), 30%, 98%);
  --bg-gradient: linear-gradient(135deg, hsl(155, 35%, 97%) 0%, hsl(180, 30%, 95%) 100%);
  
  --white: #ffffff;
  --black: #000000;
  
  /* Glassmorphism Variables */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(17, 153, 142, 0.08);
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  --card-shadow-hover: 0 20px 40px rgba(17, 153, 142, 0.12);
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* --- Base Styles & Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-gradient);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

/* --- Utility Components --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-badge {
  background-color: var(--primary-light);
  color: var(--primary);
  margin-bottom: 20px;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(17, 153, 142, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(17, 153, 142, 0.4);
}

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

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-whatsapp-cta {
  background-color: #25d366;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-cta:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.25rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
  margin: 0 auto 16px auto;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* --- Navigation Bar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.logo-icon {
  color: var(--primary);
  font-size: 1.6rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

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

.btn-nav {
  padding: 8px 18px;
  font-size: 0.9rem;
  background-color: #25d366;
  color: var(--white);
  border-radius: var(--radius-sm);
}

.btn-nav:hover {
  background-color: #128c7e;
  transform: scale(1.03);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  padding: calc(var(--header-height) + 60px) 0 80px 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.35;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background-color: var(--primary);
  top: -100px;
  right: -50px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background-color: var(--secondary);
  bottom: -50px;
  left: -50px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

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

.hero-features {
  display: flex;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.feature-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-bg-card {
  position: absolute;
  width: 80%;
  height: 80%;
  background: var(--white);
  border-radius: var(--radius-lg);
  transform: rotate(-6deg);
  z-index: 1;
  box-shadow: 0 15px 40px rgba(17, 153, 142, 0.1);
}

.hero-image {
  position: relative;
  z-index: 2;
  width: 90%;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
}

.hero-image:hover {
  transform: translateY(-8px) scale(1.02);
}

/* --- About Section --- */
.about-section {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.4);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.about-info-card {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-quote {
  position: relative;
}

.about-quote i {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: -20px;
  left: -20px;
}

.about-quote p {
  font-size: 1.15rem;
  color: var(--text-dark);
  font-style: italic;
  position: relative;
  z-index: 1;
  text-indent: 10px;
}

.stats-row {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 30px;
}

.stat-box {
  flex: 1;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.about-services {
  padding-left: 20px;
}

.services-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(17, 153, 142, 0.06);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.service-details h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.service-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 100px 0;
}

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

.testimonial-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow);
  background: var(--white);
  transition: var(--transition-smooth);
}

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

.card-top {
  margin-bottom: 20px;
}

.rating-stars {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.loss-badge {
  background-color: #e8f8f5;
  color: #1abc9c;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.card-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.client-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

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

.loading-spinner {
  text-align: center;
  font-size: 1.2rem;
  color: var(--primary);
  grid-column: 1 / -1;
  padding: 60px 0;
}

/* --- Contact Section --- */
.contact-section {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.4);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info .contact-card {
  padding: 40px;
  height: 100%;
}

.contact-card h3 {
  font-size: 1.6rem;
  margin-bottom: 30px;
  color: var(--primary-dark);
}

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

.contact-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-list .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-list .text-wrap {
  display: flex;
  flex-direction: column;
}

.contact-list .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-list span:not(.label), .contact-list a {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-list a:hover {
  color: var(--primary);
}

/* Contact CTA Panel */
.contact-cta-panel {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cta-header {
  text-align: center;
  margin-bottom: 24px;
}

.cta-logo {
  font-size: 3.5rem;
  color: #25d366;
  margin-bottom: 16px;
}

.cta-header h3 {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.cta-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.cta-message-preview {
  background-color: rgba(0, 0, 0, 0.03);
  border-left: 4px solid #25d366;
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 30px;
}

.preview-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.message-quote {
  font-style: italic;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- Footer --- */
.footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand .logo-icon {
  color: var(--primary);
}

.copyright {
  font-size: 0.95rem;
}

.footer-links .admin-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links .admin-link:hover {
  color: var(--secondary);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    order: -1;
    margin-bottom: 20px;
  }
  
  .hero-image {
    width: 60%;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-services {
    padding-left: 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: auto;
    padding: 15px 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    gap: 20px;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .btn-nav {
    width: 100%;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-image {
    width: 80%;
  }
  
  .about-info-card {
    padding: 30px;
  }
  
  .stats-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Public Testimonial Form & Badge Styles --- */
.public-testimonial-wrapper {
  margin-top: 60px;
  padding: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.public-testimonial-wrapper .form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.public-testimonial-wrapper h3 {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group-public {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  text-align: left;
}

.form-group-public label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-group-public input[type="text"],
.form-group-public textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group-public input:focus,
.form-group-public textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(17, 153, 142, 0.1);
}

/* Custom Interactive Star Selector */
.rating-stars-select {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
}

.rating-stars-select input[type="radio"] {
  display: none;
}

.rating-stars-select .star-label {
  cursor: pointer;
  font-size: 1.8rem;
  color: #e2e8f0;
  transition: color 0.15s ease-in-out, transform 0.1s ease;
  padding: 2px;
}

.rating-stars-select .star-label:hover,
.rating-stars-select .star-label:hover ~ .star-label,
.rating-stars-select input[type="radio"]:checked ~ .star-label {
  color: var(--secondary);
}

.rating-stars-select .star-label:active {
  transform: scale(0.85);
}

.btn-submit-public {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  margin-top: 10px;
}

/* User's own testimonial card styling */
.testimonial-card.user-own-card {
  border: 1.5px dashed var(--primary);
  background: linear-gradient(135deg, rgba(17, 153, 142, 0.01) 0%, rgba(56, 239, 125, 0.02) 100%);
  position: relative;
  overflow: hidden;
}

.user-own-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(17, 153, 142, 0.15);
}

/* Feedback message box */
.feedback-box {
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  animation: fadeIn 0.3s ease-in-out;
}

.feedback-box.success {
  background-color: #e8f8f5;
  color: #11998e;
  border: 1.5px solid rgba(17, 153, 142, 0.2);
}

.feedback-box.error {
  background-color: #fde8e8;
  color: #e74c3c;
  border: 1.5px solid rgba(231, 76, 60, 0.2);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .public-testimonial-wrapper {
    padding: 24px;
  }
  
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* --- Yorum Resmi Yükleme ve Profil Fotoğrafı Stilleri --- */
.custom-file-upload-public {
  display: block;
  margin-top: 5px;
}

.file-input-hidden {
  display: none !important;
}

.file-upload-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px dashed rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition-smooth);
  width: 100%;
  font-size: 0.95rem;
}

.file-upload-trigger:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.card-header-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.reviewer-avatar {
  width: 72px; /* Bigger! */
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
}

.reviewer-avatar:hover {
  transform: scale(1.05);
}

.reviewer-avatar-placeholder {
  width: 72px; /* Bigger! */
  height: 72px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  border: 3px solid var(--primary-light);
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.reviewer-header-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.reviewer-header-info .client-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.reviewer-header-info .rating-stars {
  margin-bottom: 0;
  margin-top: 4px;
  font-size: 0.85rem;
}

