@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@400;600&display=swap");
:root {
  --blue-dark: #0B3B66; /* Text */
  --blue-mid: #1F6FB2; /* Buttons / Akzente */
  --blue-hover: #093456; /* Hover dunkler Blau */
  --beige: #F5EBDC; /* Seitenhintergrund */
  --gray-light: #F5F5F7; /* neutrale Flächen */
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--blue-dark);
  background: var(--beige);
  margin: 0;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  color: var(--blue-dark);
  margin: 0 0 12px;
}

/* Pointer cursor on text hover */
p:hover,
span:hover,
li:hover,
h1:hover,
h2:hover,
h3:hover,
h4:hover,
h5:hover,
h6:hover {
  cursor: default;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #eee;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.logo img {
  height: 100px;
  width: auto;
  max-width: 220px;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav__list a {
  color: var(--blue-dark);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  background: var(--blue-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.nav__list a:hover, .nav__list a.active {
  background: rgba(31, 111, 178, 0.15);
  color: var(--blue-hover);
}

.nav__list a:hover::after, .nav__list a.active::after {
  transform: scaleX(1);
  background: var(--blue-hover);
}

/* Contact button in navbar */
.nav__list a.contact-btn {
  background: var(--blue-mid);
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 10px;
}

.nav__list a.contact-btn:hover {
  background: var(--blue-hover);
  color: #fff;
}

.nav__list a.contact-btn::after {
  display: none;
}

.burger {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 28px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger span:nth-child(1) {
  top: 3px;
}

.burger span:nth-child(2) {
  top: 12px;
}

.burger span:nth-child(3) {
  top: 21px;
}

/* Cross icon styles */
.cross-icon {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  z-index: 9999;
  pointer-events: auto;
  cursor: pointer;
  opacity: 0;
  animation: crossFadeIn 0.3s ease-out forwards;
  transition: transform 0.2s ease;
}

.cross-icon:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.cross-line {
  position: absolute;
  width: 32px;
  height: 4px;
  background: #FFFFFF;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.cross-line-1 {
  transform: translate(-50%, -50%) rotate(45deg);
  animation: crossLine1 0.4s ease-out 0.1s both;
}

.cross-line-2 {
  transform: translate(-50%, -50%) rotate(-45deg);
  animation: crossLine2 0.4s ease-out 0.2s both;
}

.cross-icon:hover .cross-line {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  background: #F5EBDC;
}

@keyframes crossFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes crossLine1 {
  from {
    transform: translate(-50%, -50%) rotate(0deg) scale(0);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
    opacity: 1;
  }
}
@keyframes crossLine2 {
  from {
    transform: translate(-50%, -50%) rotate(0deg) scale(0);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) rotate(-45deg) scale(1);
    opacity: 1;
  }
}

/* Mobile adjustments for cross icon below 400px */
@media (max-width: 400px) {
  .cross-icon {
    top: 60% !important;
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .cross-icon:hover {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@media (max-width: 992px) {
  .nav {
    position: fixed;
    inset: 0;
    background: var(--blue-dark);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    padding: 80px 40px;
    z-index: 999;
    overflow-y: auto;
  }
  .nav.open {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .nav__list a {
    color: var(--white);
    font-size: 24px;
    padding: 16px 0;
  }
  .nav__list a::after {
    display: none;
  }
  .nav__list a:hover, .nav__list a.active {
    background: transparent;
    color: var(--beige);
  }
  .nav__list a.contact-btn {
    background: var(--blue-mid);
    color: var(--white);
    padding: 14px 28px;
    font-size: 24px;
    border-radius: 12px;
  }
  .nav__list a.contact-btn:hover {
    background: var(--blue-hover);
  }
  .burger {
    display: inline-block !important;
    z-index: 1001 !important;
  }
  body._overflow, html._overflow {
    overflow: hidden;
  }
}
/* Hero */
.hero {
  position: relative;
  background: transparent;
  color: var(--white);
  padding: 0;
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 59, 102, 0.9) 0%, rgba(11, 59, 102, 0.75) 60%, rgba(245, 235, 220, 0.55) 100%);
  z-index: 1;
}

.hero__video, .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  gap: 12px;
}

.hero h1 {
  color: var(--white);
  font-size: 40px;
}

.hero p {
  color: var(--white);
  opacity: 0.95;
}

.cta .btn {
  display: inline-block;
  margin-top: 12px;
  background: var(--blue-mid);
  color: #FFFFFF;
  padding: 16px 26px;
  font-size: 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

.cta .btn:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    height: 100dvh;
    padding-top: 80px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 14px;
  }
  .cta .btn {
    padding: 12px 20px;
    font-size: 16px;
  }
  .hero .container {
    gap: 8px;
    padding-top: 20px;
  }
}
@media (max-width: 375px) {
  .hero {
    padding-top: 100px;
  }
  .hero .container {
    padding-top: 30px;
  }
}
/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 800px;
  width: 100%;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  font-family: "Playfair Display", serif;
  margin-bottom: 8px;
}

.stat-number::after {
  content: "+";
}

.stat-item:nth-child(3) .stat-number::after {
  content: "%";
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }
  .stat-number {
    font-size: 32px;
    margin-bottom: 4px;
  }
  .stat-label {
    font-size: 14px;
  }
}
/* Sections */
.section {
  padding: 56px 0;
}

.section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 32px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
.card {
  position: relative;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(11, 59, 102, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card__icon {
  font-size: 40px;
  display: inline-block;
}

.card.hover-rise:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(11, 59, 102, 0.18);
}

.card.hover-rise:hover::before {
  transform: scaleX(1);
}

/* Disable hover effects on mobile/touch devices */
@media (hover: none) and (pointer: coarse) {
  .card.hover-rise:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(11, 59, 102, 0.1);
  }
  
  .card.hover-rise:hover::before {
    transform: scaleX(0);
  }
}

@media (max-width: 768px) {
  .card.hover-rise:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(11, 59, 102, 0.1);
  }
  
  .card.hover-rise:hover::before {
    transform: scaleX(0);
  }
}

/* Akademie */
.section-akademie {
  position: relative;
  background: linear-gradient(135deg, rgba(31, 111, 178, 0.05) 0%, rgba(245, 235, 220, 0.3) 100%);
  overflow: hidden;
  --parallax-y: 0px;
}

.section-akademie::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/people1.png");
  background-size: cover;
  background-position: center calc(30% + var(--parallax-y));
  opacity: 0.4;
  z-index: 0;
  will-change: transform;
}

.section-akademie .container {
  position: relative;
  z-index: 1;
}

.akademie-content {
  position: relative;
}

.akademie-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.akademie-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.akademie-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.akademie-feature {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(11, 59, 102, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.akademie-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(11, 59, 102, 0.15);
}

/* Disable hover on mobile for akademie features */
@media (hover: none) and (pointer: coarse), (max-width: 768px) {
  .akademie-feature:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(11, 59, 102, 0.08);
  }
}

.feature-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
}

.akademie-feature h4 {
  font-size: 18px;
  color: var(--blue-dark);
  margin: 0;
}

@media (max-width: 992px) {
  .akademie-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .akademie-features {
    grid-template-columns: 1fr;
  }
}
/* Process Timeline */
.section-process {
  background: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
  z-index: 0;
}

.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(11, 59, 102, 0.2);
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--blue-dark);
}

.process-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .process-timeline::before {
    display: none;
  }
}
@media (max-width: 576px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }
}
/* References */
.section-references {
  background: linear-gradient(135deg, rgba(245, 235, 220, 0.4) 0%, rgba(31, 111, 178, 0.05) 100%);
}

.references-intro {
  text-align: center;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.partner-badge {
  background: var(--white);
  padding: 20px 12px;
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue-dark);
  box-shadow: 0 4px 12px rgba(11, 59, 102, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.partner-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(11, 59, 102, 0.15);
}

/* Disable hover on mobile for partner badges */
@media (hover: none) and (pointer: coarse), (max-width: 768px) {
  .partner-badge:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(11, 59, 102, 0.08);
  }
}

@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Footer */
.site-footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 48px 0 24px;
  margin-top: 60px;
}

.site-footer h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 16px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.85);
  margin: 8px 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid ul li {
  margin: 8px 0;
}

.socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
}

.socials a {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: background 0.3s;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.copy {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* Content Pages Styles */
.section-hero-page {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}

.section-hero-page h1 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
  font-weight: 500;
}

.meta-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.section-content {
  padding: 60px 0;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-block {
  background: var(--white);
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(11, 59, 102, 0.08);
}

.content-block h2 {
  color: var(--blue-dark);
  font-size: 28px;
  margin-bottom: 20px;
}

.content-block p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}

.content-block:last-child {
  margin-bottom: 0;
}

.highlight-block {
  background: linear-gradient(135deg, rgba(31, 111, 178, 0.05) 0%, rgba(245, 235, 220, 0.3) 100%);
  border-left: 4px solid var(--blue-mid);
}

.principles-list {
  list-style: disc;
  padding-left: 40px;
  margin: 20px 0 0;
  display: block;
}

.principles-list li {
  padding: 8px 0;
  color: var(--blue-dark);
  line-height: 1.6;
  margin-bottom: 8px;
}

@media (max-width: 576px) {
  .principles-list {
    padding-left: 24px;
  }
}
.process-list {
  margin-top: 24px;
}

.process-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.process-num {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(11, 59, 102, 0.15);
}

.process-content h3 {
  font-size: 20px;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.process-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Hotline Page */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.service-card {
  background: rgba(31, 111, 178, 0.05);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(11, 59, 102, 0.12);
}

/* Disable hover on mobile for service cards */
@media (hover: none) and (pointer: coarse), (max-width: 768px) {
  .service-card:hover {
    transform: none;
    box-shadow: none;
  }
}

.service-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 18px;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.contact-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.contact-method {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(11, 59, 102, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(11, 59, 102, 0.15);
}

/* Disable hover on mobile for contact methods */
@media (hover: none) and (pointer: coarse), (max-width: 768px) {
  .contact-method:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(11, 59, 102, 0.08);
  }
}

.contact-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.contact-method h4 {
  font-size: 16px;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.contact-method p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

@media (max-width: 992px) {
  .contact-methods {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }
}
.list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(11, 59, 102, 0.1);
  color: #333;
  line-height: 1.6;
}

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

/* Animations */
.fade-in, .slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

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

/* Contact Page */
.section-contact {
  padding: 60px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contact-info {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(11, 59, 102, 0.08);
}

.contact-info h2 {
  font-size: 28px;
  color: var(--blue-dark);
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 18px;
  color: var(--blue-dark);
  margin: 0 0 8px;
}

.info-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.info-item a {
  color: var(--blue-mid);
  text-decoration: none;
  transition: color 0.3s;
}

.info-item a:hover {
  color: var(--blue-hover);
  text-decoration: underline;
}

.contact-form-wrapper {
  background: linear-gradient(135deg, rgba(31, 111, 178, 0.05) 0%, rgba(245, 235, 220, 0.3) 100%);
  padding: 40px;
  border-radius: 16px;
  border-left: 4px solid var(--blue-mid);
}

.contact-form-wrapper h2 {
  font-size: 28px;
  color: var(--blue-dark);
  margin-bottom: 24px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(11, 59, 102, 0.2);
}

.form-success h3 {
  font-size: 28px;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.form-success p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

/* Forms */
.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(31, 111, 178, 0.1);
}

.btn-submit {
  background: var(--blue-mid);
  color: var(--white);
  padding: 16px 32px;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  font-weight: 600;
}

.btn-submit:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
}

.map-section {
  margin-top: 40px;
}

.map-section h2 {
  font-size: 28px;
  color: var(--blue-dark);
  margin-bottom: 24px;
  text-align: center;
}

.map-placeholder iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(11, 59, 102, 0.1);
}/*# sourceMappingURL=styles.css.map */