@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --brand-orange: #f36d1e;
  --brand-orange-dark: #cc5411;
  --brand-yellow: #f1b93f;
  --brand-brown: #a65c29;
  --brand-brown-dark: #8c4a1e;
  --text-dark: #333333;
  --text-muted: #505050;
  --bg-light: #f4f5f7;
  --bg-white: #ffffff;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
}

/* Glassmorphism Floating Pill Navbar matching screenshot */
.navbar-pill-glass {
  background: rgba(245, 243, 238, 0.95);
  /* Creamy off-white as requested */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  /* Soft drop shadow */
  padding: 0.2rem 1rem;
  /* Slightly tighter top/bottom padding for the pill look */
  transition: all 0.3s ease;
}

.navbar-pill-glass .nav-link {
  color: #3b3b3b !important;
  /* Darker grey text */
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0.8rem;
  /* Increased horizontal spacing */
  position: relative;
  transition: color 0.3s ease;
}

.navbar-pill-glass .nav-link:hover {
  color: var(--brand-orange) !important;
}

.btn-kontakt-orange {
  background: var(--brand-orange);
  color: white;
  border-radius: 50px;
  padding: 10px 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 4px 15px rgba(243, 109, 30, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-kontakt-orange:hover {
  background: var(--brand-orange-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 109, 30, 0.6);
}


.navbar-brand-logo {
  height: 45px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-brand-logo {
  transform: rotate(-5deg) scale(1.1);
}

/* Hero Section */
.hero-ultra {
  position: relative;
  padding: 220px 0 160px;
  /* Premium modern forest aesthetic */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1) 60%, var(--bg-light)), url('https://images.unsplash.com/photo-1511497584788-876760111969?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-title-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.hero-title-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 150px;
  background-color: var(--brand-yellow);
  border-radius: 3px;
}

.hero-title-massive {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 900;
  color: white;
  letter-spacing: 0.05em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
  line-height: 1;
}

.hero-fox {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  height: 300px;
  z-index: 5;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-fox:hover {
  transform: translateX(-50%) translateY(-15px) scale(1.05);
}

/* Wavy Divider */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 10;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 40px;
}

.wave-divider .shape-fill {
  fill: var(--bg-light);
}

/* Tariffs Boxes Component */
.tariff-showcase {
  background: var(--bg-light);
  padding: 40px 0 80px;
}

.tariff-intro {
  text-align: center;
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.tariff-box {
  background: #bb6d28;
  border-radius: 8px;
  padding: 35px 20px 25px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tariff-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  background: #a85f1f;
}

.tariff-number {
  font-size: 1.8rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.tariff-icon-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  margin-bottom: 15px;
}

.tariff-icon {
  height: 110px;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.tariff-box:hover .tariff-icon {
  transform: scale(1.15) rotate(3deg);
}

.tariff-desc {
  font-size: 1.3rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.tariff-btn {
  background: #f4c241;
  color: #8c4a1e;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  border: none;
  padding: 14px 10px;
  border-radius: 4px;
  width: 100%;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tariff-btn:hover {
  background: #f9d268;
  color: #8c4a1e;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Sections */
.section-orange-header {
  background: var(--brand-orange);
  color: white;
  padding: 30px 0;
  text-align: center;
}

.section-orange-header h2 {
  color: white;
  margin: 0;
  font-weight: 600;
  font-size: 2rem;
}

.bg-white-panel {
  background: var(--bg-white);
  padding: 80px 0;
  color: var(--text-dark);
}

/* Steps */
.step-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.step-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 35px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(243, 109, 30, 0.15);
}

.step-icon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.step-content h4 {
  color: #c16e25;
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.step-content p {
  color: var(--text-dark);
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.6;
}

/* Centered content block */
.content-centered {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.content-centered p {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.money-fox {
  height: 250px;
  margin: 40px 0;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

/* Buttons */
.btn-pill-yellow {
  background: var(--brand-yellow);
  color: white;
  text-transform: uppercase;
  font-weight: 800;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  letter-spacing: 1px;
  border: none;
  box-shadow: 0 10px 25px rgba(241, 185, 63, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-pill-yellow:hover {
  background: white;
  color: var(--brand-yellow);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(241, 185, 63, 0.3);
}

.btn-pill-teal {
  background: #4abddb;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: 0 10px 25px rgba(74, 189, 219, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-pill-teal:hover {
  background: white;
  color: #4abddb;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(74, 189, 219, 0.4);
}

/* 11850 Section */
.info-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.info-logo-container {
  display: flex;
  justify-content: center;
}

.info-logo {
  border: 10px solid var(--brand-yellow);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.info-logo::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 20px;
  background: white;
}

.info-logo-title {
  color: #4abddb;
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}

.info-logo-subtitle {
  color: var(--brand-yellow);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-top: 5px;
}

.info-text h3 {
  color: var(--brand-orange);
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.info-text p {
  color: var(--text-dark);
  font-size: 1.05rem;
}

/* Footer Section Overhaul */
.orange-footer {
  background: var(--brand-orange);
  color: white;
  padding: 80px 0 30px;
  font-family: 'Outfit', sans-serif;
}

.footer-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.footer-link {
  display: block;
  color: white;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.7;
  color: white;
}

.footer-contact li {
  margin-bottom: 15px;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-top: 4px;
  width: 25px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-search {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 5px 15px;
  color: white;
  outline: none;
}

.footer-search::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Fix Tables for Tarife view */
.tariffs-section {
  padding: 40px 0 80px;
}

.table-custom {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.table-custom thead th {
  background: var(--brand-brown);
  color: white;
  border: none;
  padding: 15px 20px;
}

.table-custom tbody tr {
  background: white;
  box-shadow: var(--shadow-sm);
}

.table-custom tbody td {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* 11850-style Subpage Utilities */
.hero-subpage {
  background: linear-gradient(135deg, #a65c29 0%, #f36d1e 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-subpage-title {
  color: white;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 0;
  line-height: 1.2;
}

.hero-subpage-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 6px;
  background-color: var(--brand-yellow);
}

.doc-pill {
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  padding: 30px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  margin-bottom: 20px;
}

.doc-pill:hover {
  background: white;
  box-shadow: var(--shadow-md);
  color: inherit;
}

.doc-pill-icon {
  width: 65px;
  height: 65px;
  background-color: #e2e8f0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: #4a5568;
  margin-right: 25px;
  flex-shrink: 0;
}

.doc-pill-content h4 {
  margin: 0 0 5px 0;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.doc-pill-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  border-top: 4px solid var(--brand-orange);
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(241, 185, 63, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--brand-orange-dark);
  font-size: 1.1rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-item-text h5 {
  margin: 0 0 5px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-item-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.doc-helper-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 900px;
  margin: 40px auto 0;
  line-height: 1.6;
}

.contact-hero {
  position: relative;
  height: 400px;
  background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-hero-title {
  color: white;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  letter-spacing: 2px;
}

.contact-fox {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  height: 250px;
  z-index: 5;
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.3));
}

.contact-section {
  padding: 100px 0;
  background-color: white;
}

.contact-form-title {
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control-custom {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 12px 15px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.form-control-custom:focus {
  border-color: var(--brand-orange);
  box-shadow: none;
}

.form-label-custom {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.btn-submit-orange {
  background: var(--brand-yellow);
  color: white;
  border: none;
  padding: 12px 40px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-submit-orange:hover {
  background: var(--brand-orange);
  color: white;
}

.contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details-list li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
}

.contact-details-list i {
  margin-top: 4px;
  width: 25px;
  color: var(--text-dark);
}

.dispute-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 50px;
  text-align: center;
}