/* ===========================
   Blumen Gauweiler - Stylesheet
   Professional, clean & SEO-optimized
   =========================== */

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #222;
  background-color: #fafafa;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: #3a7d34;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2a5c24;
}

ul {
  list-style: none;
}

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #3a7d34;
  --color-primary-light: #eef4ed;
  --color-primary-dark: #2a5c24;
  --color-primary-muted: #5a9a54;
  --color-text: #222;
  --color-text-light: #555;
  --color-text-muted: #888;
  --color-bg: #fafafa;
  --color-white: #fff;
  --color-border: #e0e0e0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --radius: 10px;
  --radius-sm: 6px;
  --max-width: 1140px;
  --section-padding: 6rem 1.5rem;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 580px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-title {
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--color-primary);
  margin: 0.75rem auto 0;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
}

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

.logo img {
  height: 64px;
  width: auto;
}

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

.logo-text .logo-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text);
}

.logo-text .logo-tagline {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

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

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text-light);
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-toggle svg {
  transition: transform 0.2s ease;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 0.5rem 0;
  z-index: 100;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--color-white);
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
  color: var(--color-text-light);
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  fill: var(--color-primary);
}

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

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  z-index: 1002;
}

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

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

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

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

/* --- Category Banner (Under Hero) --- */
.category-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.category-item {
  position: relative;
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: default;
}

.category-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-item:hover img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  pointer-events: none;
}

.category-item--floristik .category-overlay {
  background: linear-gradient(to top, rgba(190, 24, 85, 0.85) 0%, rgba(190, 24, 85, 0.4) 50%, transparent 100%);
}

.category-item--deko .category-overlay {
  background: linear-gradient(to top, rgba(195, 150, 18, 0.85) 0%, rgba(195, 150, 18, 0.4) 50%, transparent 100%);
}

.category-item--friedhof .category-overlay {
  background: linear-gradient(to top, rgba(100, 40, 120, 0.85) 0%, rgba(100, 40, 120, 0.4) 50%, transparent 100%);
}

.category-label {
  position: relative;
  z-index: 1;
  padding: 1.5rem 2rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .category-banner {
    grid-template-columns: 1fr;
  }

  .category-item {
    height: 180px;
  }

  .category-label {
    font-size: 1.15rem;
    padding: 1.25rem 1.5rem;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}

.hero h1 {
  margin-bottom: 1.25rem;
  color: #fff;
}

.hero h1 .accent {
  color: #8ece85;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
  letter-spacing: 0.01em;
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(58, 125, 52, 0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  transform: translateY(-1px);
}

/* --- About Section --- */
.about {
  padding: var(--section-padding);
  background: var(--color-white);
}

.about-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  margin: 0;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-photo figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  background: var(--color-bg);
  text-align: center;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.highlight-box {
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--color-border);
}

.highlight-box .number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.highlight-box .label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.about-text h2 {
  text-align: left;
}

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

.about-text .lead {
  font-size: 1.05rem;
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary);
}

.about-feature p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.about-feature strong {
  color: var(--color-text);
}

/* --- Services Section --- */
.services {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.services-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
  position: relative;
}

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

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--color-primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s ease;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
  transition: fill 0.3s ease;
}

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

.service-card:hover .service-icon svg {
  fill: #fff;
}

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

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-list {
  text-align: left;
  padding: 0;
}

.service-list li {
  padding: 0.3rem 0;
  font-size: 0.88rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* --- Fleurop Section --- */
.fleurop {
  padding: 4rem 1.5rem;
  background: var(--color-primary-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.fleurop-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.fleurop-icon {
  min-width: 64px;
  width: 64px;
  height: 64px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.fleurop-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-primary);
}

.fleurop-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.fleurop-text p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

/* --- Hours & Contact Section --- */
.contact {
  padding: var(--section-padding);
  background: var(--color-white);
}

.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.hours-card,
.contact-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.card-header svg {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
}

.card-header h3 {
  font-size: 1.15rem;
  margin-bottom: 0;
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
}

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

.hours-row .day {
  font-weight: 500;
  color: var(--color-text);
}

.hours-row .time {
  color: var(--color-text-light);
}

.hours-row.closed .time {
  color: var(--color-text-muted);
  font-style: italic;
}

.hours-note {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--color-white);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary);
}

.contact-item-text strong {
  display: block;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

.contact-item-text span,
.contact-item-text a {
  font-size: 0.95rem;
  color: var(--color-text);
}

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

/* --- Footer --- */
.footer {
  background: #1c1c1c;
  color: rgba(255,255,255,0.7);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo img {
  filter: brightness(10);
}

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

.footer-brand .logo-name {
  color: #fff;
}

.footer-brand .logo-tagline {
  color: rgba(255,255,255,0.4);
}

.footer-brand > p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  max-width: 300px;
}

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

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* --- Subpage Hero --- */
.page-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem 3.5rem;
  overflow: hidden;
  background: #1a1a1a;
}

.page-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
}

.page-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* --- Subpage Content --- */
.page-content {
  padding: 3.5rem 1.5rem 5rem;
  background: var(--color-white);
}

.page-content-inner {
  max-width: 860px;
  margin: 0 auto;
}

.page-content-inner .lead {
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 2rem;
}

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

.page-content-inner h2:first-of-type {
  margin-top: 0;
}

.content-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-image figcaption {
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  background: var(--color-bg);
}

.content-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
  align-items: start;
}

.content-columns--reverse {
  direction: rtl;
}

.content-columns--reverse > * {
  direction: ltr;
}

.content-box {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
}

.content-box h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.content-box ul {
  padding-left: 0;
}

.content-box li {
  padding: 0.3rem 0;
  font-size: 0.92rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-box li::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--color-primary);
  border-radius: 50%;
}

.cta-block {
  background: var(--color-primary-light);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0 0;
}

.cta-block h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.cta-block p {
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

@media (max-width: 768px) {
  .page-hero {
    height: 300px;
    padding-bottom: 2.5rem;
  }

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

  .content-columns--reverse {
    direction: ltr;
  }
}

/* --- Legal Pages (Impressum, Datenschutz) --- */
.legal-page {
  padding: 8rem 1.5rem 4rem;
  min-height: 100vh;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.legal-content h1 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-content h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

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

.legal-content p,
.legal-content li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 0.3rem;
}

.legal-content a {
  word-break: break-all;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-primary);
}

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

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 1.25rem;
  }

  /* Mobile Navigation */
  .nav-right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 1001;
  }

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

  .nav-links {
    flex-direction: column;
    gap: 1.25rem;
  }

  .nav-links a {
    font-size: 1.05rem;
  }

  /* Mobile dropdown: show items inline */
  .nav-dropdown {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .nav-dropdown-toggle svg {
    display: none;
  }

  .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
    position: static;
    transform: none;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-width: 0;
    padding: 0.5rem 0 0 1rem;
    gap: 0.75rem;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu a {
    padding: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
  }

  .nav-dropdown-menu a:hover {
    background: none;
    color: var(--color-primary);
  }

  .nav-phone {
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 999;
  }

  .mobile-overlay.open {
    display: block;
  }

  /* Logo */
  .logo img {
    height: 48px;
  }

  /* Hero */
  .hero {
    min-height: 85vh;
    padding: 7rem 1.25rem 4rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-text h2 {
    text-align: center;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  /* Fleurop */
  .fleurop-container {
    flex-direction: column;
    text-align: center;
  }

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

  /* Footer */
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand > p {
    max-width: 100%;
  }

  /* Legal */
  .legal-content {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 260px;
  }

  .highlight-box {
    padding: 1.15rem 0.75rem;
  }

  .highlight-box .number {
    font-size: 1.6rem;
  }
}

/* --- Animations --- */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

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

  .fade-in-delay-1 { transition-delay: 0.1s; }
  .fade-in-delay-2 { transition-delay: 0.2s; }
  .fade-in-delay-3 { transition-delay: 0.3s; }
}

/* --- Print Styles --- */
@media print {
  .header, .hamburger, .mobile-overlay, .footer {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 2rem 1rem;
    background: #fff;
  }

  .hero-bg, .hero-overlay {
    display: none;
  }

  .hero h1, .hero p {
    color: #000;
  }

  body {
    color: #000;
    background: #fff;
  }

  .service-card, .hours-card, .contact-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
