/* ============================================
   DETEKTIVBERLIN.DE - Main Stylesheet
   ============================================ */

/* --- Variables --- */
:root {
  --color-dark: #0f172a;
  --color-anthracite: #1e293b;
  --color-gold: #c9a45c;
  --color-gold-light: #d4b46c;
  --color-gold-dark: #b8913e;
  --color-white: #ffffff;
  --color-light: #f8f7f4;
  --color-gray: #94a3b8;
  --color-gray-light: #e2e8f0;
  --color-gray-dark: #475569;
  --color-dark-soft: #1a2332;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.15);
  --shadow-gold: 0 4px 20px rgba(201, 164, 92, 0.25);
  --max-width: 1200px;
  --radius: 12px;
  --radius-sm: 6px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--color-gray-dark); }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray-dark);
  max-width: 640px;
  line-height: 1.7;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-dark);
}

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

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

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

.btn-outline {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}

.btn-outline:hover {
  background: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-gold-outline:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-2px);
}

/* --- Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 0.25rem 0;
}

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

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-white);
}

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

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
  }
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1023px) {
  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    background: var(--color-dark);
    padding: 2rem;
    transition: var(--transition);
    gap: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }

  .main-nav.open { right: 0; }

  .main-nav a { font-size: 1.1rem; }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-dark);
  color: var(--color-white);
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-kenburns 12s ease-in-out infinite alternate;
}

.hero-slide.active img {
  opacity: 0.35;
}

@keyframes hero-kenburns {
  0% {
    transform: scale(1) translateX(0);
  }
  100% {
    transform: scale(1.12) translateX(-2%);
  }
}

.hero-slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero-slider-dots .dot.active {
  background: var(--color-gold);
  width: 28px;
  border-radius: 5px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.7) 50%,
    rgba(15, 23, 42, 0.5) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 720px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201, 164, 92, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-trust li::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: 700;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .section-title { font-size: 1.75rem; }
  .hero h1 { font-size: 2.25rem; }
  .hero p { font-size: 1rem; }
  .hero-content { max-width: 100%; }
  .hero-trust { gap: 0.5rem 1rem; }
  .hero-trust li { font-size: 0.8rem; }
}

/* --- Sections Common --- */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section-dark .section-title,
.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section-light {
  background: var(--color-light);
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-gray-light);
  transition: var(--transition);
}

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

.section-dark .service-card {
  background: var(--color-anthracite);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-dark .service-card:hover {
  border-color: var(--color-gold);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 164, 92, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.section-dark .service-icon {
  background: rgba(201, 164, 92, 0.15);
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.925rem;
  margin-bottom: 1.5rem;
}

.service-card .service-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card .service-cta:hover {
  gap: 0.75rem;
}

/* --- Sub-service lists --- */
.sub-services {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-gray-light);
}

.section-dark .sub-services {
  border-color: rgba(255, 255, 255, 0.08);
}

.sub-services li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 0.35rem 0;
  color: var(--color-gray-dark);
}

.section-dark .sub-services li {
  color: rgba(255, 255, 255, 0.65);
}

.sub-services li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--color-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Why Us Section --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-item {
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-gray-light);
  transition: var(--transition);
}

.why-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 164, 92, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.why-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.why-item p {
  font-size: 0.925rem;
  margin-bottom: 0;
}

/* --- Process Section --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: var(--color-gold);
  opacity: 0.3;
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.process-step p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--color-gray-dark);
}

.section-dark .process-step p {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .process-step::after { display: none; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* --- Areas Section --- */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
}

.area-tag {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
  background: var(--color-light);
  border-radius: 100px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.area-tag:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.section-dark .area-tag {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

.section-dark .area-tag:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}

/* --- FAQ Section --- */
.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-gray-light);
  padding: 0;
}

.section-dark .faq-item {
  border-color: rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  transition: var(--transition);
}

.section-dark .faq-question {
  color: var(--color-white);
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 2px;
  height: 16px;
}

.faq-icon::after {
  width: 16px;
  height: 2px;
}

.faq-item.active .faq-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 0 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-gray-dark);
  margin-bottom: 0;
}

.section-dark .faq-answer p {
  color: rgba(255, 255, 255, 0.65);
}

/* --- Contact / CTA Section --- */
.cta-section {
  padding: 5rem 0;
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  max-width: 600px;
  margin: 0 auto 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta-section .btn-primary {
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
}

/* --- Contact Form --- */
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 164, 92, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-form {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-gray-light);
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  background: var(--color-light);
  transition: var(--transition);
  color: var(--color-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.15);
}

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

.form-hint {
  font-size: 0.8rem;
  color: var(--color-gray);
  margin-top: 0.35rem;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-gray-dark);
}

.privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}

/* --- Floating Buttons --- */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  font-size: 1.25rem;
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn-phone {
  background: var(--color-gold);
  color: var(--color-dark);
}

.floating-btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
}

.floating-btn .tooltip {
  position: absolute;
  right: 64px;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.floating-btn:hover .tooltip {
  opacity: 1;
}

@media (max-width: 768px) {
  .floating-buttons { bottom: 16px; right: 16px; }
  .floating-btn { width: 48px; height: 48px; font-size: 1.1rem; }
}

/* --- Footer --- */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

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

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

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

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

.footer-bottom-links a:hover {
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 1rem 0;
  background: var(--color-light);
  font-size: 0.85rem;
}

.breadcrumbs ul {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumbs li {
  color: var(--color-gray-dark);
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--color-gray-light);
}

.breadcrumbs a {
  color: var(--color-gray-dark);
}

.breadcrumbs a:hover {
  color: var(--color-gold);
}

.breadcrumbs li:last-child {
  color: var(--color-dark);
  font-weight: 600;
}

/* --- Page Header --- */
.page-header {
  padding: 120px 0 4rem;
  background: var(--color-dark);
  color: var(--color-white);
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  font-size: 1.1rem;
}

/* --- About Page --- */
.about-intro {
  padding: 5rem 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-gray-dark);
}

.about-content .highlight-text {
  font-size: 1.15rem;
  color: var(--color-dark);
  font-weight: 500;
  border-left: 3px solid var(--color-gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-gray-light);
}

.value-item .value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-item h4 {
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- Service Detail Pages --- */
.service-detail {
  padding: 5rem 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.service-detail-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.service-detail-content h2:first-child {
  margin-top: 0;
}

.service-detail-content ul {
  margin-bottom: 1.5rem;
}

.service-detail-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-gray-dark);
}

.service-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
}

.service-sidebar {
  position: sticky;
  top: 100px;
}

.service-sidebar-card {
  background: var(--color-light);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-gray-light);
  margin-bottom: 1.5rem;
}

.service-sidebar-card h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.service-sidebar-card ul li {
  margin-bottom: 0.5rem;
}

.service-sidebar-card ul li a {
  font-size: 0.9rem;
  color: var(--color-gray-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-sidebar-card ul li a::before {
  content: '→';
  color: var(--color-gold);
}

.service-sidebar-card ul li a:hover {
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 0;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Sticky Phone (mobile) --- */
.sticky-phone-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--color-dark);
  padding: 0.75rem 1rem;
  text-align: center;
}

.sticky-phone-mobile a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .sticky-phone-mobile { display: block; }
  .floating-buttons { bottom: 72px; }
}

/* --- Print --- */
@media print {
  .site-header { position: relative; }
  .floating-buttons, .sticky-phone-mobile, .menu-toggle { display: none !important; }
  .hero { min-height: auto; padding: 4rem 0; }
}

/* --- Schema Markup (hidden) --- */
.schema-hidden {
  display: none;
}
