/* Design System & Custom Properties */
:root {
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-primary: #006eff;
  --color-primary-hover: #0056cb;
  --color-accent: #a80000;
  --color-accent-light: rgba(168, 0, 0, 0.08);
  --color-accent-hover: #800000;
  --color-text: #0f172a;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --shadow-soft: 0 4px 20px rgba(0, 110, 255, 0.05);
  --shadow-medium: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-large: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --container: 1200px;
  --space-section: clamp(40px, 5vw, 50px);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

section[id] {
  scroll-margin-top: 0;
}

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

.section {
  padding: var(--space-section) 0;
}

.grid {
  display: grid;
  gap: 30px;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.flex {
  display: flex;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.desktop-only { display: none !important; }
.mobile-only { display: block !important; }
@media (min-width: 1024px) {
  .desktop-only { display: block !important; }
  .mobile-only { display: none !important; }
}

.accent-text { color: var(--color-accent); }
.muted-text { color: var(--color-muted); }
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
}

.card {
  background-color: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.05em; }
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.mb-0 { margin-bottom: 0px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-0 { margin-top: 0px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius);
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  outline: none;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-surface);
}
.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(168, 0, 0, 0.25);
}

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

.btn-dark {
  background-color: var(--color-primary);
  color: var(--color-surface);
}
.btn-dark:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 110, 255, 0.25);
}

.btn-white {
  background-color: var(--color-surface);
  color: var(--color-text);
}
.btn-white:hover {
  background-color: var(--color-bg);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 18px;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}
.btn-full {
  width: 100%;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--color-surface);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.nav-scrolled {
  background-color: var(--color-surface);
  box-shadow: var(--shadow-medium);
  height: 72px;
  border-bottom: 1px solid var(--color-border);
}

.nav-hidden {
  transform: translateY(-80px);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-primary);
}

.nav-logo-accent {
  color: var(--color-accent);
}

.nav-logo-icon {
  max-width: 48px;
  max-height: 48px;
  width: auto;
  height: auto;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
  object-fit: contain;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
  padding: 8px 0;
  position: relative;
}

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

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

.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-primary);
}

.nav-phone:hover {
  color: var(--color-primary-hover);
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cta {
  background-color: var(--color-accent);
  color: var(--color-surface);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(168, 0, 0, 0.15);
}

.nav-cta:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: var(--color-surface);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-mobile.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text);
}

.nav-mobile-cta {
  background-color: var(--color-accent);
  color: var(--color-surface);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-top: 16px;
  box-shadow: 0 4px 12px rgba(168, 0, 0, 0.15);
}

@media (max-width: 1023px) {
  .nav-links, .nav-right {
    display: none;
  }
  .nav-hamburger {
    display: block;
  }
  .nav {
    background-color: var(--color-surface);
    box-shadow: var(--shadow-soft);
    height: 72px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: clamp(80px, 10vh, 110px);
  padding-bottom: clamp(40px, 6vh, 80px);
  background: radial-gradient(circle at 10% 20%, rgba(0, 110, 255, 0.03) 0%, rgba(255, 255, 255, 0) 90%);
}

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

@media (max-width: 1023px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
}

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

@media (max-width: 1023px) {
  .hero-content {
    align-items: center;
  }
}

.hero-badge {
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-title .accent {
  color: var(--color-primary);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--color-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

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

.hero-stars {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-stars-text {
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  width: 100%;
}

.hero-image-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-large);
  border: 4px solid var(--color-surface);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

/* Floating Cards */
.hero-float-card {
  position: absolute;
  background-color: var(--color-surface);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--color-border);
  z-index: 10;
}

.hero-float-card--badge {
  top: -18px;
  left: 20px;
}

.hero-float-card--bottom {
  bottom: -16px;
  left: 20px;
}

.hero-phone-card {
  position: absolute;
  bottom: 16px;
  right: -20px;
  background-color: var(--color-accent);
  color: var(--color-surface);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  box-shadow: var(--shadow-large);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

@media (max-width: 1023px) {
  .hero-phone-card {
    right: 20px;
  }
}

.hero-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.hero-phone-card .hero-float-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-surface);
}

.hero-float-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}

.hero-float-subtext {
  font-size: 12px;
  color: var(--color-muted);
}

.hero-phone-card .hero-float-subtext {
  color: rgba(255, 255, 255, 0.8);
}

/* Stats Bar */
.stats-bar {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: 24px 0;
  box-shadow: var(--shadow-medium);
  border-radius: var(--radius);
  margin-top: -30px;
  position: relative;
  z-index: 20;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-surface);
}

.stats-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-top: 4px;
}

/* Section Headers */
.section-header {
  max-width: 680px;
  margin-bottom: 36px;
}

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

.section-label {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--color-text);
  margin-bottom: 12px;
  position: relative;
}

.section-header p {
  color: var(--color-muted);
  font-size: 15px;
}

.section-underline {
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-primary);
  margin: 12px auto 0 auto;
  border-radius: var(--radius-full);
}

.section-header:not(.text-center) .section-underline {
  margin-left: 0;
}

/* Services */
.services-grid {
  display: grid;
  gap: 30px;
}

.service-card {
  background-color: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

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

.service-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--color-muted);
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card-link:hover {
  color: var(--color-primary-hover);
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

/* Trust Section */
.trust {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-grid {
  display: grid;
  gap: 30px;
}

.trust-card {
  padding: 30px;
  text-align: center;
}

.trust-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.trust-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.trust-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 14px;
  color: var(--color-muted);
}

/* About */
.about {
  background-color: var(--color-surface);
}

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

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 4px solid var(--color-bg);
}

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

.about-image-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: var(--shadow-medium);
}

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

.about-features {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.about-feature p {
  font-size: 15px;
  font-weight: 600;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 110, 255, 0.2) 0%, rgba(15, 23, 42, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: var(--color-surface);
}

.gallery-caption h4 {
  color: var(--color-surface);
  font-size: 18px;
  margin-bottom: 4px;
}

.gallery-caption p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.faq-answer-always {
  font-size: 15px;
  color: var(--color-muted);
}

/* Contact Section */
.contact {
  scroll-margin-top: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  background-color: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.contact-info {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.contact-info h3 {
  color: var(--color-surface);
  font-size: 26px;
  margin-bottom: 16px;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

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

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--color-surface);
  stroke-width: 2.5;
}

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

.contact-detail-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-detail-value {
  font-size: 15px;
  font-weight: 600;
  margin-top: 2px;
}

.contact-map-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-surface);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 4px;
  align-self: flex-start;
}

.contact-map-link:hover {
  border-color: var(--color-surface);
}

.contact-form-wrapper {
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background-color: var(--color-surface);
  box-shadow: 0 0 0 3px rgba(0, 110, 255, 0.1);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 5px;
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent);
}

.form-checkbox label {
  font-size: 13px;
  color: var(--color-muted);
}

.form-checkbox label a {
  color: var(--color-primary);
  font-weight: 600;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
  animation: scaleUp 0.4s ease;
}

.form-success.active {
  display: flex;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #22c55e15;
  color: #22c55e;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--color-muted);
  font-size: 15px;
}

@media (max-width: 767px) {
  .contact-info, .contact-form-wrapper {
    padding: 24px;
  }
}

@keyframes scaleUp {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* CTA Banner */
.cta-banner {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: 60px 24px;
  text-align: center;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.cta-banner h2 {
  color: var(--color-surface);
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background-color: #0c1220;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 30px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-surface);
}

.footer-logo-accent {
  color: var(--color-accent);
}

.footer-logo-icon {
  max-width: 76px;
  max-height: 76px;
  width: auto;
  height: auto;
}

.footer-heading {
  color: var(--color-surface);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
}

.footer-link:hover {
  color: var(--color-surface);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2.5;
  flex-shrink: 0;
}

.footer-cta {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 110, 255, 0.15);
}

.footer-cta:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

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

.footer-legal a:hover {
  color: var(--color-surface);
}

/* Page Hero for Unterseiten */
.page-hero {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: clamp(110px, 14vh, 140px) 0 clamp(40px, 5vh, 50px) 0;
  text-align: center;
  position: relative;
}

.page-hero h1 {
  color: var(--color-surface);
  font-size: clamp(32px, 5vw, 48px);
  margin: 12px 0 8px 0;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: var(--color-surface);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-current {
  color: var(--color-surface);
  font-weight: 600;
}

/* Legal Pages */
.legal-page {
  padding: 60px 0;
}

.legal-content {
  background-color: var(--color-surface);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--color-muted);
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
  color: var(--color-muted);
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-updated {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 24px;
  font-style: italic;
}

.legal-placeholder {
  color: var(--color-accent);
  font-weight: 700;
  background-color: var(--color-accent-light);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

/* Detail Services */
.detail-services-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.detail-service-card {
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  align-items: center;
}

@media (min-width: 1024px) {
  .detail-service-card {
    grid-template-columns: 1fr 1fr;
  }
}

.detail-service-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.detail-service-content {
  padding: 40px;
}

.detail-service-content h2 {
  font-size: clamp(24px, 3.5vw, 30px);
  margin-bottom: 16px;
}

.detail-service-content p {
  color: var(--color-muted);
  margin-bottom: 24px;
}

.detail-service-features {
  list-style: none;
  display: grid;
  gap: 12px;
}

.detail-service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
}

.detail-service-feature svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 3;
  flex-shrink: 0;
}

/* Scroll-Reveal Animationen */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }
