/* ===== OPTIMIZED CSS VARIABLES ===== */
:root {
  /* Colors */
  --primary-green: #2f6d4f;
  --secondary-green: #234c38;
  --accent-gold: #d4af37;
  --text-primary: #e8f1e8;
  --text-secondary: #cfe3cf;
  --text-muted: #a9c3a9;
  --bg-primary: #0b1f16;
  --bg-glass: rgba(10, 20, 14, 0.4);
  --bg-card: rgba(18, 32, 24, 0.7);
  --bg-overlay: rgba(0, 0, 0, 0.2);
  --border-color: rgba(255, 255, 255, 0.15);
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.25);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 6px 20px rgba(212, 175, 55, 0.4);
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 70px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Animation */
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ===== MOBILE-FIRST RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* FIXED: Mobile viewport height bug */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  height: 100%;
  min-height: 100vh;
}

/* ===== FIXED: PERFECT BACKGROUND SCALING FÜR MOBILE ===== */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  
  /* FIXED: Mobile-optimized background */
  background-color: var(--bg-primary);
  background-image: url('green-and-good-hintergrund-website.jpg');
  background-size: cover;
  background-position: center top; /* CRITICAL: zeigt mehr vom Bild */
  background-repeat: no-repeat;
  background-attachment: scroll; /* Mobile safe */
  
  min-height: 100vh;
  height: 100%;
  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Desktop background enhancement */
@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  body {
    background-attachment: fixed;
    background-position: center center;
  }
}

/* FIXED: iOS/Safari optimization */
@supports (-webkit-touch-callout: none) {
  html, body {
    min-height: -webkit-fill-available;
    height: -webkit-fill-available;
  }
  
  body {
    background-attachment: scroll !important;
    background-position: center top !important;
  }
}

/* FIXED: Mobile background optimization */
html.mobile body {
  background-attachment: scroll !important;
  background-position: center top !important;
  background-size: cover !important;
  min-height: 100vh !important;
  height: 100% !important;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* ===== OPTIMIZED HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

/* ===== FIXED: LOGO GRÖßER SKALIERT ===== */
.logo-wrap {
  justify-self: center;
  display: flex;
  align-items: center;
  padding: 0.25rem;
  border-radius: var(--border-radius);
  transition: transform var(--transition-base);
}

.site-logo {
  /* FIXED: Logo deutlich größer - Mobile first */
  width: min(280px, 70vw);  /* Viel größer als vorher */
  height: auto;
  max-height: 48px;         /* Mehr Höhe */
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: all var(--transition-base);
}

/* Progressive logo scaling - größer */
@media (min-width: 480px) {
  .site-logo {
    width: min(360px, 65vw);
    max-height: 56px;
  }
}

@media (min-width: 640px) {
  .site-logo {
    width: min(420px, 60vw);
    max-height: 64px;
  }
}

@media (min-width: 768px) {
  .site-logo {
    width: min(500px, 50vw);
    max-height: 72px;
  }
  
  .header-inner {
    height: 80px;
  }
  
  :root {
    --header-height: 80px;
  }
}

@media (min-width: 1024px) {
  .site-logo {
    width: min(600px, 40vw);  /* Deutlich größer */
    max-height: 88px;
  }
}

@media (min-width: 1440px) {
  .site-logo {
    width: min(720px, 35vw);  /* Noch größer für große Displays */
    max-height: 100px;
  }
}

/* Logo hover effect */
@media (hover: hover) and (pointer: fine) {
  .logo-wrap:hover {
    transform: scale(1.02);
  }
  
  .logo-wrap:hover .site-logo {
    filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.3));
  }
}

/* ===== LANGUAGE SWITCH ===== */
.lang-switch {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.lang-btn {
  appearance: none;
  border: 1px solid var(--border-color);
  background: var(--bg-glass);
  color: var(--text-secondary);
  padding: 0.5rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-btn[aria-pressed="true"],
.lang-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #0a1b13;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

@media (min-width: 768px) {
  .lang-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 0.75rem;
    font-size: 0.875rem;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
  position: relative;
  overflow: hidden;
}

.btn .ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border-color: var(--border-color);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
}

/* WhatsApp responsive text */
.wa-text {
  letter-spacing: 0.02em;
}

@media (max-width: 480px) {
  .wa-text {
    display: none;
  }
  
  .btn-wa {
    padding: 0.75rem;
    aspect-ratio: 1;
  }
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    min-height: 48px;
  }
  
  .btn .ico {
    width: 20px;
    height: 20px;
  }
}

/* Button ripple effect */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--header-height) 0 2rem;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(47, 109, 79, 0.15) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0 0 1.5rem;
  color: var(--text-primary);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  margin: 0 auto 2rem;
  max-width: 600px;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

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

/* ===== ANIMATIONS ===== */
/* Entrance animations */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s var(--ease-out-back) forwards;
}

.animate-in.delay-1 {
  animation-delay: 0.2s;
}

.animate-in.delay-2 {
  animation-delay: 0.4s;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-quart);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--bg-overlay) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  margin: 0 0 3rem;
  color: var(--text-primary);
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

/* ===== ABOUT SECTION ===== */
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  margin-bottom: 2rem;
  line-height: 1.7;
  text-align: center;
}

.feature-list {
  list-style: none;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}

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

.feature-list li {
  position: relative;
  padding: 1rem 0 1rem 3rem;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  background: var(--bg-glass);
  border-radius: var(--border-radius);
  backdrop-filter: blur(8px);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold);
  color: #0a1b13;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

@media (min-width: 1024px) {
  .services-grid {
    gap: 2rem;
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.3);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent-gold), #b8941f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a1b13;
  box-shadow: var(--shadow-gold);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: clamp(1.125rem, 1.3vw, 1.375rem);
}

.service-card p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

/* ===== PRICING SECTION ===== */
.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-bottom: 3rem;
  line-height: 1.5;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.3);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.pricing-card h3 {
  color: var(--accent-gold);
  margin: 0;
  font-size: clamp(1.125rem, 1.2vw, 1.25rem);
}

.price-list {
  list-style: none;
  margin: 0;
}

.price-list li {
  padding: 0.75rem 0;
  font-size: clamp(0.875rem, 0.95vw, 0.9rem);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  line-height: 1.5;
}

.price-list li:last-child {
  border-bottom: none;
}

/* ===== MODERN CALCULATOR ===== */
.calc-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.calc-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.calc-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-gold), var(--primary-green));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

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

/* Calculator Header */
.calc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.currency-toggle {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.currency-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  padding: 0.75rem 1.25rem;
  border-radius: calc(var(--border-radius) - 0.25rem);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  min-width: 70px;
  min-height: 44px;
}

.currency-btn.active,
.currency-btn:hover {
  background: var(--accent-gold);
  color: #0a1b13;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.currency-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  pointer-events: none;
}

.exchange-rate {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.rate-icon {
  font-size: 1rem;
}

/* Form Inputs */
.calc-inputs {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
  grid-template-columns: 1fr;
}

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

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

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.input-group label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.input-wrapper,
.select-wrapper {
  position: relative;
}

.calc-form input,
.calc-form select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-base);
  min-height: 48px;
}

.calc-form input:focus,
.calc-form select:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.input-focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.calc-form input:focus + .input-focus-line {
  transform: scaleX(1);
}

.select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  pointer-events: none;
  transition: all var(--transition-base);
}

.calc-form select:focus + .select-arrow {
  color: var(--accent-gold);
  transform: translateY(-50%) rotate(180deg);
}

.input-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Calculator Extras */
.calc-extras {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 2px dashed var(--border-color);
  border-radius: var(--border-radius);
}

.extras-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  text-align: center;
}

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

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

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

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-base);
  min-height: 48px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
}

.checkbox-wrapper:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-color);
}

.checkbox-wrapper input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  background: transparent;
  position: relative;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.checkbox-checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #0a1b13;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition-base);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom .checkbox-checkmark {
  transform: translate(-50%, -50%) scale(1);
}

.checkbox-wrapper span {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  line-height: 1.4;
  color: var(--text-secondary);
}

/* Price Bands */
.price-bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 480px) {
  .price-bands {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.price-band {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-base);
  backdrop-filter: blur(8px);
}

.price-band:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.3);
}

.price-band .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.price-band .value {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.3vw, 1.375rem);
  color: var(--accent-gold);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Calculator Actions */
.calc-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}

.btn-calc {
  flex: 1;
  min-width: 150px;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1.25rem 2rem;
}

@media (max-width: 640px) {
  .calc-actions {
    flex-direction: column;
  }
  
  .btn-calc {
    flex: none;
  }
}

/* Calculator Results */
.calc-results {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-slow);
  backdrop-filter: blur(12px);
}

.calc-results.show {
  opacity: 1;
  transform: translateY(0);
}

.calc-results .result-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  border-bottom: 1px solid var(--border-color);
  gap: 1rem;
}

.calc-results .result-row:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.3vw, 1.375rem);
  color: var(--accent-gold);
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: 2px solid var(--border-color);
}

.calc-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin: 1.5rem 0 0;
  line-height: 1.4;
  font-style: italic;
}

/* ===== CONTACT SECTION (No Form) ===== */
.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.contact-methods {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  text-decoration: none;
  transition: all var(--transition-base);
  min-height: 80px;
  position: relative;
  overflow: hidden;
}

.contact-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.contact-link:hover::before {
  left: 100%;
}

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

.contact-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.contact-phone .contact-icon-wrapper {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.contact-email .contact-icon-wrapper {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.contact-whatsapp .contact-icon-wrapper {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-icon {
  width: 28px;
  height: 28px;
  color: white;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  flex: 1;
}

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

.contact-value {
  font-size: 1.125rem;
  color: var(--text-primary);
  font-weight: 600;
}

.contact-link:hover .contact-icon-wrapper {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

/* Social Media */
.social-media {
  text-align: center;
}

.social-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-base);
  min-height: 48px;
}

.social-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.social-instagram:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(131, 58, 180, 0.4);
}

.social-facebook:hover {
  background: #1877f2;
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 0 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
  border-top: 1px solid var(--border-color);
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  text-align: center;
  grid-template-areas:
    "brand"
    "social"
    "contact";
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "brand social contact";
    align-items: center;
    text-align: left;
  }
  
  .footer-social {
    justify-self: center;
  }
  
  .footer-contact {
    justify-self: end;
    text-align: right;
  }
}

.footer-brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-brand {
    justify-content: flex-start;
  }
}

.footer-logo {
  width: clamp(60px, 8vw, 80px);
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.copyright {
  font-size: clamp(0.8rem, 0.9vw, 0.875rem);
  color: var(--text-muted);
  margin: 0;
}

.footer-social {
  grid-area: social;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  background: var(--accent-gold);
  color: #0a1b13;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold);
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.social-ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}

.social-fb {
  background: #1877f2;
  color: #fff;
}

.social-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

.footer-contact {
  grid-area: contact;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-contact a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: clamp(0.8rem, 0.9vw, 0.875rem);
  transition: color var(--transition-fast);
}

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

.separator {
  color: var(--text-muted);
  margin: 0 0.5rem;
}

/* ===== ACCESSIBILITY ===== */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 2px;
}

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

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --border-color: rgba(255, 255, 255, 0.4);
    --bg-card: rgba(0, 0, 0, 0.9);
  }
}

/* Dark mode media query */
@media (prefers-color-scheme: dark) {
  :root {
    --text-primary: #f0f7f0;
    --text-secondary: #d5e8d5;
  }
}

/* Print styles */
@media print {
  body {
    background: white !important;
    color: black !important;
  }
  
  .site-header,
  .hero,
  .calc,
  .contact,
  .site-footer {
    display: none !important;
  }
  
  .section {
    page-break-inside: avoid;
    background: white !important;
  }
  
  * {
    box-shadow: none !important;
    transform: none !important;
  }
}

/* Performance optimizations */
.site-logo,
.btn,
.service-card,
.pricing-card,
.contact-link {
  will-change: transform;
}

.hero,
.section {
  contain: layout style;
}

/* Loading states */
.loading {
  pointer-events: none;
  opacity: 0.6;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
