:root {
  --primary-red: #C41E3A;
  --dark: #0A0A0A;
  --dark-blue: #2C3E50;
  --light: #F8F9FA;
  --white: #FFFFFF;
  --grey: #6C757D;
  --light-grey: #E9ECEF;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* .offcanvas-backdrop.show + body {
  padding-right: 0 !important;
  overflow: visible !important;
} */


ul {
  padding-left: 0px;
  list-style-type: none;
  margin-bottom: 0px;
}

li {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Dm Sans", serif;
  font-weight: 400;
  color: #000;
}

a {
  list-style-type: none;
  color: #777777;
  text-decoration: none;
}

.fs8 {
  font-size: 8px;
}

.fs11 {
  font-size: 11px;
}

.fs12 {
  font-size: 12px !important;
}

.fs13 {
  font-size: 13px !important;
}

.fs14 {
  font-size: 14px;
}

.fs15 {
  font-size: 15px;
}

.fs16 {
  font-size: 16px;
}

.fs18 {
  font-size: 18px;
}

.fs20 {
  font-size: 20px;
}

.fs22 {
  font-size: 22px;
}

.fs23 {
  font-size: 23px;
}

.fs25 {
  font-size: 25px;
}

.fs30 {
  font-size: 30px;
}

.fs32 {
  font-size: 32px;
}

.fs35 {
  font-size: 35px;
}

.fs40 {
  font-size: 40px !important;
}

.fs50 {
  font-size: 50px !important;
}

.fs60 {
  font-size: 60px;
}

.fs70 {
  font-size: 70px;
}

.fs80 {
  font-size: 80px;
}

.fs90 {
  font-size: 90px;
}

.fw-light {
  font-weight: 300;
}

.fw-regular {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.color-white {
  color: #fff !important;
}

.color-black {
  color: #000 !important;
}

.color-red {
  color: #CF8128 !important;
}

.color-grey {
  color: #515151 !important;
}

.color-lgrey {
  color: #9B9B9B !important;
}

.color-brown {
  color: #CF8128
}

.color-pink {
  color: #F8D9D2 !important;
}

.bg-white {
  background: #fff;
}

.bg-black {
  background: #1e1e1e;
}

.bg-red {
  background: #CF8128;
}

.bg-green {
  background: #A9C46C;
}

/* ************************** Main Header Css **************************** */
/* ================= DESKTOP (UNCHANGED) ================= */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1.5rem 5%;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 55px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

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

/* Active Navigation Link */
.nav-links li a.active {
  color: var(--primary-red) !important;
  font-weight: 600;
}

.nav-links li a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-red);
}

.lang-switcher {
  display: flex;
  gap: .5rem;
}

/* Language Switcher Active */
.lang-switcher a.active,
.lang-switcher-mobile a.active {
  color: var(--primary-red) !important;
  font-weight: 700;
}

.nav-cta {
  background: #0a0a0a;
  color: #fff !important;
  padding: 0.7rem 1.8rem;
  border-radius: 6px;
}

/* ================= MOBILE ADDITIONS ================= */

.header-actions-mobile,
.mobile-toggle {
  display: none;
}

@media (max-width: 991px) {

  nav {
    padding: 1rem 5%;
  }

  /* Show mobile actions */
  .header-actions-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }

  /* LANG */
  .lang-switcher-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    white-space: nowrap;
  }

  .lang-switcher-mobile a {
    text-decoration: none;
    color: var(--grey);
  }

  .lang-switcher-mobile a.active {
    color: var(--dark);
    font-weight: 600;
  }

  /* TOGGLE */
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 6px;
  }

  .mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    display: block;
  }

  /* BUTTON RIGHT MOST */
  .nav-cta-mobile {
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  /* Dropdown menu */
  .nav-links {
    display: none;
    position: absolute;
    right: 5%;
    top: calc(100% + 12px);
    width: min(320px, 90vw);
    flex-direction: column;
    background: #fff;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    z-index: 2000;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .lang-switcher,
  .nav-links .nav-cta {
    display: none !important;
  }
}

/* ************************** Main Header Css End **************************** */

/* ************************** Homepage Start Css Start **************************** */
/* Hero Section */
.hero {
  margin-top: 90px;
  background: var(--dark);
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.3) 30%, rgb(10 10 10 / 59%) 50%, rgb(10 10 10 / 94%) 80%, rgb(10 10 10) 90%, rgb(10 10 10) 100%);
  z-index: 2;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5% 10rem 5%;
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-content .subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

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

.hero-btn {
  display: inline-block;
  background: #c41e3a;
  color: var(--white);
  padding: 1.1rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s;
  font-size: 1rem;
}

.hero-btn:hover {
  background: #c41e3a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px #c41e3a3a;
}

.hero-btn.secondary {
  background: transparent;
  border: 2px solid var(--white);
}

.hero-btn.secondary:hover {
  background: var(--white);
  color: var(--dark);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Stats Box Section */
.stats-box-section {
  background: var(--white);
  padding: 5rem 0;
  position: relative;
  z-index: 10;
}

.stats-box-container {
  max-width: 1300px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem 4rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.stats-box-item {
  text-align: center;
}

.stats-box-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stats-box-label {
  font-size: 1rem;
  color: var(--grey);
  font-weight: 500;
}

/* Banner Section */
.banner-section {
  padding: 5rem 5%;
  background: var(--white);
}

.banner-container {
  max-width: 1600px;
  margin: 0 auto;
}

.premium-banner {
  background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
  border-radius: 40px;
  padding: 5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.banner-content {
  color: var(--white);
  z-index: 2;
}

.banner-subtitle {
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.banner-content h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.banner-content h2 .italic {
  font-style: italic;
  font-weight: 500;
}

.banner-image-container {
  position: relative;
  z-index: 2;
}

.banner-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* Dream Section */
.dream-section {
  padding: 4rem 5%;
  background: var(--light);
  position: relative;
}

.dream-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.diamond {
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: 2rem;
}

.dream-title {
  font-size: 4rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--dark);
}

.dream-title .italic {
  font-style: italic;
  font-weight: 500;
}

.dream-description {
  font-size: 1.15rem;
  color: var(--grey);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.dream-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.dream-btn:hover {
  background: var(--primary-red);
  transform: translateY(-3px);
}

.floating-image {
  position: absolute;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.floating-image-left {
  left: -5%;
  top: 15%;
  width: 320px;
  height: 420px;
  transform: rotate(-8deg);
}

.floating-image-right {
  right: -6%;
  bottom: 10%;
  width: 350px;
  height: 450px;
  transform: rotate(8deg);
}

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

/* Dark Showcase */
.dark-showcase {
  padding: 6rem 5%;
  background: var(--light);
}

.showcase-container {
  max-width: 1600px;
  margin: 0 auto;
}

.showcase-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 40px;
  padding: 0;
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.showcase-content {
  color: var(--white);
  padding: 5rem;
  max-width: 550px;
  z-index: 2;
}

.showcase-content h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.showcase-content h2 .italic {
  font-style: italic;
  color: var(--primary-red);
}

.showcase-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.showcase-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

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

.showcase-image {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 85%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

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

/* Services Grid */
.services {
  padding: 8rem 5%;
  background: var(--white);
}

.services-container {
  max-width: 1600px;
  margin: 0 auto;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.section-intro h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.section-intro p {
  font-size: 1.15rem;
  color: var(--grey);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: var(--light);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li::before {
  content: '✓';
  color: var(--primary-red);
  font-weight: 700;
}

/* Contact Section */
.contact {
  padding: 8rem 5%;
  background: var(--white);
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--primary-red);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.15rem;
  color: var(--grey);
  line-height: 1.8;
}

.contact-content {
  display: grid;
  gap: 4rem;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.contact-card {
  background: var(--light);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-card a:hover {
  color: var(--dark);
}

.contact-card-label {
  font-size: 0.9rem;
  color: var(--grey);
  opacity: 0.8;
}

.contact-form-wrapper {
  background: var(--light);
  padding: 4rem;
  border-radius: 25px;
}

.contact-form-wrapper h3 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.form-group label {
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.2rem;
  border: 2px solid var(--light-grey);
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  padding: 1.2rem 3rem;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: var(--primary-red);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark);
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3.8rem;
  }

  .contact-info-cards {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .floating-image-left,
  .floating-image-right {
    width: 280px;
    height: 360px;
  }
}

@media (max-width: 968px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    min-height: 600px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 300px;
  }

  .stats-box-section {
    padding: 0 5% 3rem;
    margin-top: -60px;
  }

  .stats-box-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 2.5rem 2rem;
  }

  .premium-banner,
  .showcase-card {
    padding: 3rem 2rem;
  }

  .banner-content h2,
  .dream-title,
  .showcase-content h2 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .floating-image-left,
  .floating-image-right {
    display: none;
  }

  .showcase-image {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 2rem;
    right: 0;
    transform: none;
  }

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

@media (max-width: 640px) {
  .hero {
    min-height: 550px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

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

  .hero-content .subtitle {
    font-size: 0.95rem;
  }

  .stats-box-number {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }
}

/* ======================== Feature Cards Section (Before Hero) ======================== */
.feature-cards-section {
  padding: 3rem 5% 5rem;
  background: var(--white);
  margin-top: 0px;
}

.feature-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(196, 30, 58, 0.2);
}

.feature-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.1);
}

.feature-card-content {
  padding: 2rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-card-link {
  display: inline-block;
  color: var(--primary-red);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.feature-card-link:hover {
  color: var(--dark);
  transform: translateX(5px);
}

/* ======================== Partner Boxes Section ======================== */
.partner-boxes-section {
  padding: 0rem 5% 6rem;
  background: transparent;
  margin-top: -110px;
  position: relative;
  z-index: 10;
}

.partner-box {
  background: var(--white);
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.partner-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.2);
}

.partner-icon {
  font-size: 40px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
}

.partner-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--dark);
  line-height: 1.4;
}

.partner-box p {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
}

/* ======================== Blog Section ======================== */
.blog-section {
  padding: 8rem 5%;
  background: var(--light);
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.blog-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-red);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  color: var(--grey);
}

.blog-date,
.blog-read-time {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.4;
  transition: color 0.3s;
}

.blog-card:hover .blog-title {
  color: var(--primary-red);
}

.blog-excerpt {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-link {
  display: inline-block;
  color: var(--primary-red);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.blog-link:hover {
  color: var(--dark);
  transform: translateX(5px);
}

/* ======================== Responsive Updates ======================== */
@media (max-width: 1200px) {

  .feature-card h3,
  .partner-box h3,
  .blog-title {
    font-size: 1.3rem;
  }

  .feature-image {
    height: 220px;
  }
}

@media (max-width: 968px) {

  .feature-cards-section,
  .partner-boxes-section,
  .blog-section {
    padding: 3rem 5%;
  }

  .feature-cards-section {
    margin-top: 90px;
  }

  .partner-boxes-section {
    margin-top: -100px;
  }

  .feature-image,
  .blog-image {
    height: 200px;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {

  .feature-cards-section,
  .partner-boxes-section,
  .blog-section {
    padding: 2rem 5%;
  }

  .partner-boxes-section {
    margin-top: -80px;
  }

  .feature-card-content,
  .partner-box {
    padding: 1.5rem;
  }

  .partner-icon {
    width: 60px;
    height: 60px;
  }

  .partner-icon svg {
    width: 60px;
    height: 60px;
  }

  .feature-image,
  .blog-image {
    height: 180px;
  }

  .feature-card h3,
  .partner-box h3,
  .blog-title {
    font-size: 1.2rem;
  }

  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* ======================== About Section ======================== */
.about-section {
  padding: 8rem 5%;
  background: var(--light);
}

.about-image-wrapper {
  position: relative;
}

.about-main-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--primary-red);
  color: var(--white);
  padding: 2rem 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
}

.badge-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.badge-text {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.95;
}

.about-content {
  padding-left: 2rem;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.about-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s;
}

.about-btn:hover {
  background: var(--primary-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

/* ======================== Rundum Service Section ======================== */
.rundum-service-section {
  padding: 6rem 5%;
  background: var(--light);
}

/* ======================== Service Detail Sections ======================== */
.service-detail-section {
  padding: 8rem 5%;
  background: var(--light);
}

.service-detail-section.bg-light {
  background: var(--light);
}

.service-detail-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-detail-content {
  padding-left: 2rem;
}

.service-icon-large {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.service-detail-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.service-detail-content h2 {
  margin-bottom: 2rem;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 0.7rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.1rem;
  color: var(--grey);
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1.3rem;
}

.disclaimer-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  border-radius: 8px;
}

.disclaimer-box h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.disclaimer-box p {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

/* ======================== Regional Section ======================== */
.regional-section {
  padding: 6rem 5%;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.regional-content .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.regional-content .section-title {
  color: var(--white);
}

.regional-content .lead {
  font-size: 1.3rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 2rem auto 0;
  opacity: 0.9;
}

/* ======================== Engagement Section ======================== */
.engagement-section {
  padding: 8rem 5%;
  background: var(--light);
}

.engagement-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.engagement-content {
  padding-left: 2rem;
}

.engagement-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

/* ======================== Google Reviews Section ======================== */
.reviews-section {
  padding: 8rem 5%;
  background: var(--light);
}

.google-reviews-widget {
  padding: 4rem 2rem;
}

.google-rating-box {
  background: var(--white);
  padding: 4rem 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.google-stars {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.google-rating {
  font-size: 4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.google-text {
  font-size: 1.1rem;
  color: var(--grey);
  margin-bottom: 2rem;
}

/* ======================== Responsive for New Sections ======================== */
@media (max-width: 968px) {

  .about-section,
  .service-detail-section,
  .engagement-section {
    padding: 5rem 5%;
  }

  .about-main-image,
  .service-detail-image img,
  .engagement-image img {
    height: 400px;
  }

  .about-badge {
    bottom: 20px;
    right: 20px;
    padding: 1.5rem 2rem;
  }

  .badge-number {
    font-size: 2.5rem;
  }

  .about-content,
  .service-detail-content,
  .engagement-content {
    padding-left: 0;
    margin-top: 2rem;
  }

  .service-detail-section .order-lg-2 {
    order: 1 !important;
  }

  .service-detail-section .order-lg-1 {
    order: 2 !important;
  }

  .google-rating-box {
    padding: 3rem 2rem;
  }

  .google-rating {
    font-size: 3rem;
  }
}

@media (max-width: 640px) {

  .about-main-image,
  .service-detail-image img,
  .engagement-image img {
    height: 300px;
  }

  .about-text,
  .service-detail-content p,
  .engagement-content p {
    font-size: 1rem;
  }

  .service-icon-large {
    font-size: 3rem;
  }

  .regional-content .lead {
    font-size: 1.1rem;
  }

  .disclaimer-box {
    padding: 1rem;
  }
}

/* ======================== Rundum Service Modern Section ======================== */
.rundum-service-modern {
  padding: 8rem 5%;
  background: var(--white);
}

.rundum-content {
  padding-right: 2rem;
}

.rundum-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.rundum-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rundum-feature-box {
  background: var(--light);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--primary-red);
  transition: all 0.3s;
}

.rundum-feature-box:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red);
  opacity: 0.3;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.rundum-feature-box h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.rundum-feature-box p {
  font-size: 1rem;
  color: var(--grey);
  margin: 0;
}

/* ======================== Internationale Immobilien Modern Section ======================== */
.international-modern-section {
  padding: 8rem 5%;
  background: var(--white);
}

.international-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 30px;
  padding: 4rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.international-header {
  margin-bottom: 3rem;
}

.international-content {
  padding-right: 2rem;
}

.international-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.international-highlight {
  background: rgba(196, 30, 58, 0.1);
  border-left: 4px solid var(--primary-red);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.international-highlight p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
}

.international-highlight p:last-child {
  margin-bottom: 0;
}

.international-locations {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.locations-title {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 600;
}

.location-cards {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.location-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-card:hover {
  background: rgba(196, 30, 58, 0.15);
  border-color: var(--primary-red);
  transform: translateX(5px);
}

.location-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.location-card h5 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.location-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.international-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary-red);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  width: 100%;
  text-align: center;
}

.international-btn:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ======================== Responsive ======================== */
@media (max-width: 968px) {

  .rundum-service-modern,
  .international-modern-section {
    padding: 5rem 5%;
  }

  .rundum-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .international-box {
    padding: 2.5rem 2rem;
  }

  .international-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .rundum-feature-box {
    padding: 1.5rem;
  }

  .feature-number {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .international-box {
    padding: 2rem 1.5rem;
  }

  .international-locations {
    padding: 1.5rem;
  }

  .rundum-feature-box h4 {
    font-size: 1.3rem;
  }

  .locations-title {
    font-size: 1.1rem;
  }

  .location-card {
    padding: 1.2rem;
  }

  .location-icon {
    font-size: 1.5rem;
  }

  .location-card h5 {
    font-size: 1.1rem;
  }
}

/* ************************** Homepage Start Css End **************************** */

/* ************************** About Us Start Css Start **************************** */
.about-hero {
  margin-top: 90px;
  background: var(--dark);
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 5%;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.5) 30%, rgb(10 10 10 / 70%) 50%, rgb(10 10 10 / 94%) 80%, rgb(10 10 10) 100%);
  z-index: 2;
}

.about-hero .container {
  position: relative;
  z-index: 3;
}

.about-hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.3;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.about-hero-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* ======================== Philosophy Section ======================== */
.philosophy-section {
  padding: 8rem 5%;
  background: var(--white);
}

.philosophy-content {
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-intro {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--white);
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-highlight {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 5rem 4rem;
  border-radius: 30px;
  text-align: center;
  margin-bottom: 4rem;
  box-shadow: 0 20px 60px rgba(187, 29, 40, 0.3);
}

.philosophy-icon {
  font-size: 3rem;
  color: rgb(255, 255, 255);
  margin-bottom: 1rem;
}

.philosophy-main {
  font-size: 2.5rem;
  line-height: 1.5;
  color: var(--white);
  font-weight: 600;
  margin: 0;
}

.text-red {
  color: #ff4757;
  font-weight: 700;
}

.philosophy-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.philosophy-box {
  background: var(--light);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.philosophy-box:hover {
  border-color: var(--primary-red);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.15);
}

.box-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.philosophy-box h4 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.philosophy-box p {
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
}

.philosophy-footer {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--grey);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* ======================== Timeline ======================== */
.timeline-section {
  padding: 8rem 5%;
  background: var(--light);
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-red);
}

.timeline-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-marker {
  flex-shrink: 0;
  width: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.timeline-number {
  background: var(--primary-red);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(196, 30, 58, 0.3);
}

.timeline-icon {
  background: var(--white);
  border: 3px solid var(--primary-red);
  font-size: 2rem;
  padding: 1rem;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-content {
  flex: 1;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.timeline-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 1rem;
}

/* ======================== Warum Mia ======================== */
.warum-mia-section {
  padding: 8rem 5%;
  background: var(--white);
}

.warum-mia-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.warum-mia-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.mia-meaning {
  background: var(--light);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.meaning-item {
  margin-bottom: 1.5rem;
}

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

.meaning-item h4 {
  font-size: 1.2rem;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.meaning-item p {
  font-size: 1.1rem;
  color: var(--dark);
  margin: 0;
}

.mia-examples {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.example-box {
  background: var(--light);
  padding: 1.2rem;
  border-left: 4px solid var(--primary-red);
  border-radius: 8px;
  font-size: 1.05rem;
  color: var(--grey);
}

.mia-personal {
  background: rgba(196, 30, 58, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
}

/* ======================== Struktur ======================== */
.struktur-section {
  padding: 8rem 5%;
  background: var(--light);
}

.struktur-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 5rem;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.struktur-intro {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1rem;
}

.struktur-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.struktur-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.struktur-card:hover {
  background: rgba(196, 30, 58, 0.15);
  transform: translateY(-10px);
}

.struktur-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.struktur-card h4 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.struktur-card p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.struktur-footer {
  text-align: center;
  margin-top: 4rem;
  font-size: 1.3rem;
  color: var(--white);
}

/* ======================== Erfahrung ======================== */
.erfahrung-section {
  padding: 8rem 5%;
  background: var(--white);
}

.erfahrung-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.erfahrung-card {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
}

.erfahrung-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.erfahrung-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.erfahrung-card h4 {
  font-size: 1.2rem;
  color: var(--dark);
  line-height: 1.5;
}

.erfahrung-quote {
  background: var(--light);
  padding: 3rem;
  border-left: 5px solid var(--primary-red);
  border-radius: 15px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.erfahrung-quote p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--dark);
  font-weight: 500;
  margin: 0;
}

/* ======================== International Role ======================== */
.international-role-section {
  padding: 8rem 5%;
  background: var(--light);
}

.international-role-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.role-box {
  background: rgba(196, 30, 58, 0.05);
  border-left: 4px solid var(--primary-red);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.role-box h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.role-box p {
  font-size: 1.15rem;
  color: var(--dark);
  margin: 0;
}

.international-role-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ======================== Ganzheitlich ======================== */
.ganzheitlich-section {
  padding: 8rem 5%;
  background: var(--white);
}

.ganzheitlich-box {
  max-width: 1200px;
  margin: 0 auto;
}

.problem-box,
.solution-box {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 15px;
  height: 100%;
}

.problem-box h4,
.solution-box h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.problem-list,
.solution-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.problem-list li,
.solution-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  color: var(--grey);
  display: block;
}

.problem-list li::before,
.solution-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1.2rem;
}

.problem-box p,
.solution-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--grey);
  margin: 0;
}

.strength-highlight {
  background: var(--primary-red);
  color: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  margin-top: 3rem;
}

.strength-highlight p {
  font-size: 1.5rem;
  margin: 0;
}

/* ======================== Haltung ======================== */
.haltung-section {
  padding: 8rem 5%;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  text-align: center;
}

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

.haltung-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1.3;
}

.haltung-text {
  max-width: 800px;
  margin: 0 auto;
}

.haltung-text p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ======================== Standort ======================== */
.standort-section {
  padding: 8rem 5%;
  background: var(--white);
}

.standort-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.standort-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  background: var(--light);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--grey);
}

.standort-map img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ======================== Einladung ======================== */
.einladung-section {
  padding: 8rem 5%;
  background: var(--light);
}

.einladung-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 5rem;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.einladung-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1.3;
}

.einladung-content {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.einladung-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.einladung-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.einladung-list li {
  font-size: 1.4rem;
  color: var(--white);
  padding: 1rem 0;
  display: block;
}

.einladung-cta {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 2rem;
}

.einladung-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--primary-red);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.einladung-btn:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ======================== Responsive ======================== */
@media (max-width: 968px) {
  .about-hero {
    min-height: 600px;
    padding: 4rem 5%;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-text {
    font-size: 1.15rem;
  }

  .philosophy-highlight {
    padding: 3rem 2rem;
  }

  .philosophy-main {
    font-size: 2rem;
  }

  .philosophy-boxes {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .philosophy-text.large {
    font-size: 1.3rem;
  }

  .timeline::before {
    left: 35px;
  }

  .timeline-marker {
    width: 70px;
  }

  .warum-mia-image img,
  .international-role-image img,
  .standort-map img {
    height: 400px;
    margin-bottom: 2rem;
  }

  .struktur-box,
  .einladung-box {
    padding: 3rem 2rem;
  }

  .haltung-title,
  .einladung-title {
    font-size: 2.5rem;
  }

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

  .standort-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-hero {
    min-height: 550px;
  }

  .about-hero-title {
    font-size: 1.8rem;
  }

  .about-hero-text {
    font-size: 1rem;
  }

  .philosophy-main {
    font-size: 1.5rem;
  }

  .philosophy-box {
    padding: 2rem 1.5rem;
  }

  .philosophy-text {
    font-size: 1.1rem;
  }

  .philosophy-text.large {
    font-size: 1.2rem;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .timeline-content h3 {
    font-size: 1.5rem;
  }

  .haltung-title {
    font-size: 2rem;
  }

  .einladung-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* ************************** About Us Start Css End **************************** */

/* ************************** Imbolilien Makler Css Start **************************** */
/* ======================== Page Hero (400px height) ======================== */
.page-hero {
  margin-top: 90px;
  background: var(--dark);
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.6) 50%, rgb(10 10 10 / 90%) 100%);
  z-index: 2;
}

.page-hero .container {
  position: relative;
  z-index: 3;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* ======================== Intro Section ======================== */
.intro-section {
  padding: 6rem 5%;
  background: var(--white);
}

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

.intro-text {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--grey);
  margin-bottom: 2rem;
}

/* ======================== Credentials ======================== */
.credentials-section {
  padding: 6rem 5%;
  background: var(--light);
}

.credential-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.credential-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.2);
}

.credential-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.credential-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.credential-card p {
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
}

/* ======================== First Step ======================== */
.first-step-section {
  padding: 8rem 5%;
  background: var(--white);
}

.step-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.question-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.question-list li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.1rem;
  color: var(--grey);
  display: block;
  border-left: 3px solid var(--primary-red);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.highlight-box {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.highlight-box p {
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 500;
  margin: 0;
}

.step-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ======================== Preparation ======================== */
.preparation-section {
  padding: 8rem 5%;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-item {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-item h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.service-item p {
  font-size: 1rem;
  color: var(--grey);
  margin: 0;
}

.preparation-note {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.preparation-note p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.preparation-note p:last-child {
  margin-bottom: 0;
}

/* ======================== Presentation ======================== */
.presentation-section {
  padding: 8rem 5%;
  background: var(--white);
}

.presentation-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 5rem 4rem;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.presentation-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.presentation-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.feature-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.marketing-channels {
  background: rgba(255, 255, 255, 0.08);
  padding: 3rem;
  border-radius: 20px;
}

.channels-title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 600;
}

.channel-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.channel-item {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* ======================== Besichtigung ======================== */
.besichtigung-section {
  padding: 6rem 5%;
  background: var(--light);
}

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

.besichtigung-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 2rem;
}

.besichtigung-quote {
  background: var(--white);
  padding: 3rem;
  border-left: 5px solid var(--primary-red);
  border-radius: 15px;
  margin-top: 2rem;
}

.besichtigung-quote p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--dark);
  font-weight: 500;
  margin: 0;
}

/* ======================== Kapital ======================== */
.kapital-section {
  padding: 8rem 5%;
  background: var(--white);
}

.kapital-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.kapital-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.kapital-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.kapital-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  color: var(--grey);
  display: block;
}

.kapital-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1.2rem;
}

.solution-box {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.solution-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 1rem;
}

.solution-box p:last-child {
  margin-bottom: 0;
}

/* ======================== Matching ======================== */
.matching-section {
  padding: 6rem 5%;
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
}

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

.matching-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.matching-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ======================== Prozess ======================== */
.prozess-section {
  padding: 8rem 5%;
  background: var(--white);
}

.prozess-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.step-box {
  background: var(--light);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
}

.step-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 1rem;
  opacity: 0.3;
}

.step-box h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-box p {
  font-size: 1rem;
  color: var(--grey);
  margin: 0;
}

.prozess-note {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 3rem;
  border-radius: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.prozess-note p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--white);
  margin: 0;
}

/* ======================== Fix & Flip ======================== */
.fixflip-section {
  padding: 6rem 5%;
  background: var(--light);
}

.fixflip-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 4rem;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.fixflip-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
}

.fixflip-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 15px;
}

.point-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.point-item h4 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.point-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ======================== Verwaltung ======================== */
.verwaltung-section {
  padding: 6rem 5%;
  background: var(--white);
}

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

.verwaltung-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 2rem;
}

.verwaltung-focus {
  background: var(--light);
  padding: 3rem;
  border-radius: 20px;
  margin-top: 3rem;
}

.verwaltung-focus h4 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 2rem;
}

.focus-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.focus-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.15rem;
  color: var(--grey);
}

.focus-icon {
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1.3rem;
}

.focus-note {
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 500;
  margin: 0;
}

/* ======================== Haltung Final ======================== */
.haltung-final-section {
  padding: 8rem 5%;
  background: var(--light);
}

.haltung-final-box {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 5rem 4rem;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(187, 29, 40, 0.3);
}

.haltung-final-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.haltung-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.haltung-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.value-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-item h4 {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
}

.haltung-footer {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.haltung-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--white);
  color: var(--dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.haltung-btn:hover {
  background: var(--primary-red);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ======================== Responsive ======================== */
@media (max-width: 968px) {
  .page-hero {
    height: 350px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 1.1rem;
  }

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

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

  .haltung-values {
    grid-template-columns: 1fr;
  }

  .step-image img,
  .kapital-image img {
    height: 400px;
    margin-bottom: 2rem;
  }

  .presentation-box,
  .fixflip-box,
  .haltung-final-box {
    padding: 3rem 2rem;
  }

  .matching-title,
  .haltung-final-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .page-hero {
    height: 300px;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .services-grid,
  .prozess-steps {
    grid-template-columns: 1fr;
  }

  .step-image img,
  .kapital-image img {
    height: 300px;
  }

  .matching-title,
  .haltung-final-title {
    font-size: 2rem;
  }

  .credential-card {
    padding: 2rem 1.5rem;
  }
}

/* ************************** Imbolilien Makler Css End **************************** */

/* ************************** Finanzierung Css Start **************************** */
/* ======================== FINANZ Hero (400px) ======================== */
.finanz-hero {
  margin-top: 90px;
  background: var(--dark);
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.finanz-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.finanz-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.finanz-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.6) 50%, rgb(10 10 10 / 90%) 100%);
  z-index: 2;
}

.finanz-hero .container {
  position: relative;
  z-index: 3;
}

.finanz-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.finanz-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.finanz-hero-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* ======================== FINANZ Intro ======================== */
.finanz-intro {
  padding: 6rem 5%;
  background: var(--white);
}

.finanz-intro-wrap {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.finanz-intro-large {
  font-size: 1.5rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.finanz-intro-text {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--grey);
  margin-bottom: 2rem;
}

/* ======================== FINANZ Independent ======================== */
.finanz-independent {
  padding: 8rem 5%;
  background: var(--light);
}

.finanz-ind-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.finanz-highlight {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.finanz-hl-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.finanz-hl-text h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.finanz-hl-text p {
  font-size: 1.05rem;
  color: var(--grey);
  margin: 0;
}

.finanz-stats-box {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 4rem 3rem;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(187, 29, 40, 0.3);
}

.finanz-stat-large {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.finanz-stat-num {
  font-size: 5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
}

.finanz-stat-label {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
}

.finanz-stat-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.finanz-feature {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* ======================== FINANZ Darlehen ======================== */
.finanz-darlehen {
  padding: 8rem 5%;
  background: var(--white);
}

.finanz-darlehen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.finanz-dar-card {
  background: var(--light);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.finanz-dar-card:hover {
  border-color: var(--primary-red);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.15);
}

.finanz-dar-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.finanz-dar-card h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
}

.finanz-dar-card p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
}

.finanz-dar-note {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 2.5rem;
  border-radius: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.finanz-dar-note p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--white);
  margin: 0;
}

/* ======================== FINANZ Zwischen ======================== */
.finanz-zwischen {
  padding: 8rem 5%;
  background: var(--light);
}

.finanz-zw-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 4rem;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.finanz-zw-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.finanz-zw-examples {
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: 20px;
}

.finanz-zw-examples h4 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 600;
}

.finanz-zw-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 1rem;
}

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

.finanz-zw-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.finanz-zw-item p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.finanz-zw-footer {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.finanz-zw-footer p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  text-align: center;
  margin: 0;
}

/* ======================== FINANZ Energie ======================== */
.finanz-energie {
  padding: 8rem 5%;
  background: var(--white);
}

.finanz-en-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.finanz-en-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 2rem;
}

.finanz-en-partners {
  background: var(--light);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.finanz-en-partners h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.finanz-en-logos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.finanz-en-logo {
  font-size: 1.1rem;
  color: var(--grey);
  padding: 1rem;
  background: var(--white);
  border-radius: 8px;
}

.finanz-en-planning {
  background: rgba(196, 30, 58, 0.05);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.finanz-en-planning h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.finanz-en-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.finanz-en-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  color: var(--grey);
  display: block;
}

.finanz-en-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1.2rem;
}

.finanz-en-note {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.finanz-en-note p {
  font-size: 1.1rem;
  color: var(--white);
  margin: 0;
}

/* ======================== FINANZ Trust ======================== */
.finanz-trust {
  padding: 6rem 5%;
  background: var(--light);
}

.finanz-trust-box {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.finanz-trust-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
}

.finanz-trust-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.finanz-trust-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 2rem;
}

.finanz-trust-quote {
  background: var(--white);
  padding: 2.5rem;
  border-left: 5px solid var(--primary-red);
  border-radius: 15px;
  margin: 3rem 0;
}

.finanz-trust-quote p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--dark);
  font-weight: 500;
  margin: 0;
}

.finanz-rating {
  margin-top: 3rem;
}

.finanz-stars {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.finanz-rating-num {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.finanz-rating-count {
  font-size: 1.2rem;
  color: var(--grey);
}

/* ======================== FINANZ Confirmation ======================== */
.finanz-confirm {
  padding: 8rem 5%;
  background: var(--white);
}

.finanz-conf-box {
  max-width: 1200px;
  margin: 0 auto;
}

.finanz-conf-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-top: 1.5rem;
}

.finanz-conf-benefits {
  background: var(--light);
  padding: 3rem;
  border-radius: 20px;
}

.finanz-conf-benefits h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 2rem;
}

.finanz-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.finanz-benefit:last-child {
  margin-bottom: 0;
}

.finanz-ben-icon {
  font-size: 2rem;
  color: var(--primary-red);
  font-weight: 700;
  flex-shrink: 0;
}

.finanz-ben-text h5 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.finanz-ben-text p {
  font-size: 1rem;
  color: var(--grey);
  margin: 0;
}

.finanz-conf-advantage {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 2.5rem;
  border-radius: 15px;
  margin-top: 4rem;
}

.finanz-conf-advantage p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.finanz-conf-advantage p:last-child {
  margin-bottom: 0;
}

/* ======================== FINANZ Prozess ======================== */
.finanz-prozess {
  padding: 8rem 5%;
  background: var(--light);
}

.finanz-timeline {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.finanz-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  transition: all 0.3s;
}

.finanz-step:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.finanz-step-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-red);
  opacity: 0.3;
  flex-shrink: 0;
  width: 80px;
  text-align: center;
}

.finanz-step-content h4 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.finanz-step-content p {
  font-size: 1.05rem;
  color: var(--grey);
  margin: 0;
}

/* ======================== FINANZ Haltung ======================== */
.finanz-haltung {
  padding: 8rem 5%;
  background: var(--white);
}

.finanz-halt-box {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 5rem 4rem;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(187, 29, 40, 0.3);
}

.finanz-halt-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1.3;
}

.finanz-halt-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.finanz-value {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
}

.finanz-value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.finanz-value h4 {
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.finanz-value p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.finanz-halt-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--white);
  color: var(--dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.finanz-halt-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ======================== Responsive ======================== */
@media (max-width: 968px) {
  .finanz-hero {
    height: 350px;
  }

  .finanz-hero-title {
    font-size: 2.5rem;
  }

  .finanz-hero-text {
    font-size: 1.1rem;
  }

  .finanz-intro-large {
    font-size: 1.3rem;
  }

  .finanz-stats-box {
    padding: 3rem 2rem;
    margin-bottom: 2rem;
  }

  .finanz-stat-num {
    font-size: 4rem;
  }

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

  .finanz-zw-box {
    padding: 3rem 2rem;
  }

  .finanz-en-image img {
    height: 400px;
    margin-bottom: 2rem;
  }

  .finanz-trust-title {
    font-size: 2.5rem;
  }

  .finanz-halt-values {
    grid-template-columns: 1fr;
  }

  .finanz-step {
    flex-direction: column;
    text-align: center;
  }

  .finanz-step-num {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .finanz-hero {
    height: 300px;
  }

  .finanz-hero-title {
    font-size: 2rem;
  }

  .finanz-intro-large {
    font-size: 1.2rem;
  }

  .finanz-stat-num {
    font-size: 3rem;
  }

  .finanz-darlehen-grid {
    grid-template-columns: 1fr;
  }

  .finanz-trust-title,
  .finanz-halt-title {
    font-size: 2rem;
  }

  .finanz-rating-num {
    font-size: 3rem;
  }

  .finanz-en-image img {
    height: 300px;
  }
}

/* ************************** Finanzierung Css End **************************** */

/* ************************** Internationale Imobilien Css Start **************************** */
/* ======================== INTL Hero (400px) ======================== */
.intl-hero {
  margin-top: 90px;
  background: var(--dark);
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intl-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.intl-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intl-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.6) 50%, rgb(10 10 10 / 90%) 100%);
  z-index: 2;
}

.intl-hero .container {
  position: relative;
  z-index: 3;
}

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

.intl-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.intl-hero-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* ======================== INTL Intro ======================== */
.intl-intro {
  padding: 6rem 5%;
  background: var(--white);
}

.intl-intro-wrap {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.intl-intro-text {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--grey);
  margin-bottom: 2rem;
}

.intl-intro-highlight {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 2.5rem;
  border-radius: 15px;
  margin-top: 3rem;
}

.intl-intro-highlight p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.intl-intro-highlight p:last-child {
  margin-bottom: 0;
}

/* ======================== INTL Begleitung ======================== */
.intl-begleitung {
  padding: 8rem 5%;
  background: var(--light);
}

.intl-beg-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.intl-promise {
  background: var(--white);
  padding: 2rem;
  border-left: 4px solid var(--primary-red);
  border-radius: 10px;
  margin-top: 2rem;
}

.intl-promise p {
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 500;
  margin: 0;
}

.intl-beg-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ======================== INTL Rolle ======================== */
.intl-rolle {
  padding: 8rem 5%;
  background: var(--white);
}

.intl-rolle-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 5rem 4rem;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.intl-rolle-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.3;
  text-align: center;
}

.intl-rolle-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 3rem;
}

.intl-deutschland {
  background: rgba(255, 255, 255, 0.08);
  padding: 3rem;
  border-radius: 20px;
}

.intl-deutschland h4 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 600;
}

.intl-de-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intl-de-item {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.intl-vor-ort {
  background: rgba(255, 255, 255, 0.08);
  padding: 3rem;
  border-radius: 20px;
}

.intl-vor-ort h4 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.intl-vor-ort p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.intl-ort-highlight {
  background: rgba(196, 30, 58, 0.15);
  padding: 1.5rem;
  border-radius: 10px;
}

.intl-ort-highlight p {
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 500;
  margin: 0;
}

/* ======================== INTL Länder ======================== */
.intl-laender {
  padding: 8rem 5%;
  background: var(--light);
}

.intl-countries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.intl-country-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.intl-country-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.2);
}

.intl-country-flag {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.intl-country-card h3 {
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.intl-country-card p {
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
}

.intl-laender-note {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 3rem;
  border-radius: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.intl-laender-note p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--white);
  margin: 0;
}

/* ======================== INTL Visa ======================== */
.intl-visa {
  padding: 8rem 5%;
  background: var(--white);
}

.intl-visa-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intl-visa-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 2rem;
}

.intl-visa-partners {
  background: var(--light);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.intl-visa-partners h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.intl-visa-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.intl-visa-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  color: var(--grey);
  display: block;
}

.intl-visa-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1.2rem;
}

.intl-visa-result {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.intl-visa-result p {
  font-size: 1.15rem;
  color: var(--white);
  margin: 0;
}

/* ======================== INTL Nutzung ======================== */
.intl-nutzung {
  padding: 8rem 5%;
  background: var(--light);
}

.intl-nutz-box {
  max-width: 1400px;
  margin: 0 auto;
}

.intl-nutz-intro {
  font-size: 1.2rem;
  color: var(--grey);
  text-align: center;
  margin-top: 1rem;
}

.intl-nutz-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}

.intl-nutz-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.intl-nutz-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.intl-nutz-card h4 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.intl-nutz-card p {
  font-size: 1.05rem;
  color: var(--grey);
  margin: 0;
}

.intl-nutz-klarung {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  margin-bottom: 3rem;
}

.intl-nutz-klarung h4 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 2rem;
  text-align: center;
}

.intl-klar-item {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 500;
}

.intl-nutz-footer {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
}

.intl-nutz-footer p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--white);
  font-weight: 500;
  margin: 0;
}

/* ======================== INTL Finanz ======================== */
.intl-finanz {
  padding: 8rem 5%;
  background: var(--white);
}

.intl-fin-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 5rem 4rem;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.intl-fin-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.intl-fin-topics {
  background: rgba(255, 255, 255, 0.08);
  padding: 3rem;
  border-radius: 20px;
}

.intl-fin-topics h4 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 600;
}

.intl-fin-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 1rem;
}

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

.intl-fin-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.intl-fin-item p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.intl-fin-dba {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.intl-fin-dba p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  text-align: center;
  margin: 0;
}

.intl-fin-disclaimer {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 3rem;
}

.intl-fin-disclaimer h5 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.intl-fin-disclaimer p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

/* ======================== INTL Umsetzung ======================== */
.intl-umsetzung {
  padding: 8rem 5%;
  background: var(--light);
}

.intl-ums-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.intl-ums-intro {
  font-size: 1.2rem;
  color: var(--grey);
  margin-bottom: 4rem;
}

.intl-ums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.intl-ums-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  transition: all 0.3s;
}

.intl-ums-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.intl-ums-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.intl-ums-card h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.intl-ums-card p {
  font-size: 1rem;
  color: var(--grey);
  margin: 0;
}

.intl-ums-quote {
  background: var(--white);
  padding: 3rem;
  border-left: 5px solid var(--primary-red);
  border-radius: 15px;
}

.intl-ums-quote p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--dark);
  font-weight: 500;
  margin: 0;
}

/* ======================== INTL Haltung ======================== */
.intl-haltung {
  padding: 8rem 5%;
  background: var(--white);
}

.intl-halt-box {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 5rem 4rem;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(187, 29, 40, 0.3);
}

.intl-halt-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.intl-halt-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
}

.intl-halt-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.intl-value {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
}

.intl-value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.intl-value h4 {
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.intl-value p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.intl-halt-footer {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.intl-halt-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--white);
  color: var(--dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.intl-halt-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ======================== Responsive ======================== */
@media (max-width: 968px) {
  .intl-hero {
    height: 350px;
  }

  .intl-hero-title {
    font-size: 2.2rem;
  }

  .intl-beg-image img,
  .intl-visa-image img {
    height: 400px;
    margin-bottom: 2rem;
  }

  .intl-rolle-box,
  .intl-fin-box,
  .intl-halt-box {
    padding: 3rem 2rem;
  }

  .intl-rolle-title,
  .intl-halt-title {
    font-size: 2.2rem;
  }

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

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

@media (max-width: 640px) {
  .intl-hero {
    height: 300px;
  }

  .intl-hero-title {
    font-size: 1.8rem;
  }

  .intl-beg-image img,
  .intl-visa-image img {
    height: 300px;
  }

  .intl-rolle-title,
  .intl-halt-title {
    font-size: 1.8rem;
  }

  .intl-countries {
    grid-template-columns: 1fr;
  }

  .intl-ums-grid,
  .intl-halt-values {
    grid-template-columns: 1fr;
  }
}

/* ************************** Internationale Imobilien Css End **************************** */

/* ======================== STRUKTUR & FAMILY OFFICE Css Start ======================== */
/* ======================== STRUKTUR & FAMILY OFFICE PAGE STYLES ======================== */
/* All classes are prefixed with 'struktur-' to avoid conflicts with existing pages */

/* ======================== Hero Section ======================== */
.struktur-page-hero {
  margin-top: 90px;
  background: var(--dark);
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.struktur-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.struktur-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.struktur-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.6) 50%, rgb(10 10 10 / 90%) 100%);
  z-index: 2;
}

.struktur-page-hero .container {
  position: relative;
  z-index: 3;
}

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

.struktur-hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.struktur-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.struktur-hero-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* ======================== Intro Section ======================== */
.struktur-intro-section {
  padding: 6rem 5%;
  background: var(--white);
}

.struktur-intro-wrap {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.struktur-intro-large {
  font-size: 1.5rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.struktur-intro-text {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--grey);
}

/* ======================== Problem vs Solution Section ======================== */
.struktur-problem-solution {
  padding: 8rem 5%;
  background: var(--light);
}

.struktur-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.struktur-section-subtitle {
  font-size: 0.95rem;
  color: var(--primary-red);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.struktur-section-title {
  font-size: 2.5rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.struktur-section-description {
  font-size: 1.15rem;
  color: var(--grey);
  line-height: 1.8;
}

.struktur-problem-box,
.struktur-solution-box {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.struktur-problem-box:hover,
.struktur-solution-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.struktur-box-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.struktur-problem-box h3,
.struktur-solution-box h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 2rem;
  font-weight: 600;
  text-align: center;
}

.struktur-problem-list,
.struktur-solution-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.struktur-problem-item,
.struktur-solution-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--light);
  border-radius: 10px;
}

.struktur-problem-marker {
  color: #dc3545;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.struktur-solution-marker {
  color: var(--primary-red);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.struktur-problem-item p,
.struktur-solution-item p {
  font-size: 1.05rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.6;
}

.struktur-solution-intro {
  font-size: 1.05rem;
  color: var(--grey);
  margin-bottom: 2rem;
  text-align: center;
}

.struktur-approach-note {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.struktur-approach-note p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--white);
  font-weight: 500;
  margin: 0;
}

/* ======================== Family Office Section ======================== */
.struktur-family-office {
  padding: 8rem 5%;
  background: var(--white);
}

.struktur-fo-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.struktur-fo-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 2rem;
}

.struktur-fo-areas {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.struktur-fo-areas h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 2rem;
  text-align: center;
}

.struktur-fo-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.struktur-fo-area-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
}

.struktur-fo-area-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.struktur-fo-area-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.struktur-fo-area-item p {
  font-size: 1rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.5;
}

.struktur-fo-focus {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 2rem;
  border-left: 4px solid var(--primary-red);
  border-radius: 10px;
  margin-top: 2rem;
}

.struktur-fo-focus p {
  font-size: 1.15rem;
  color: var(--white);
  margin: 0;
}

/* ======================== Gesellschaftsgründungen Section ======================== */
.struktur-gesellschaft {
  padding: 8rem 5%;
  background: var(--light);
}

.struktur-gesell-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 5rem 4rem;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.struktur-gesell-intro {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.struktur-gesell-services {
  background: rgba(255, 255, 255, 0.08);
  padding: 3rem;
  border-radius: 20px;
}

.struktur-gesell-services h4 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 600;
}

.struktur-gesell-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.struktur-gesell-service-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.struktur-gesell-service-card:hover {
  background: rgba(196, 30, 58, 0.15);
  border-color: var(--primary-red);
  transform: translateY(-5px);
}

.struktur-gesell-service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.struktur-gesell-service-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.5;
}

.struktur-gesell-experience {
  background: rgba(196, 30, 58, 0.15);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.struktur-gesell-experience p {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
  margin: 0;
}

/* ======================== Steuerliche Themen Section ======================== */
.struktur-steuer {
  padding: 8rem 5%;
  background: var(--white);
}

.struktur-steuer-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 2rem;
}

.struktur-steuer-disclaimer {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.struktur-disclaimer-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.struktur-steuer-disclaimer p {
  font-size: 1.05rem;
  color: var(--dark);
  margin: 0;
}

.struktur-steuer-role {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.struktur-steuer-role h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.struktur-steuer-role-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.struktur-steuer-role-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  color: var(--grey);
  display: block;
}

.struktur-steuer-role-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1.2rem;
}

.struktur-steuer-result {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 2rem;
  border-left: 4px solid var(--primary-red);
  border-radius: 10px;
  margin-top: 2rem;
}

.struktur-steuer-result p {
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 500;
  margin: 0;
}

.struktur-steuer-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ======================== International Section ======================== */
.struktur-international {
  padding: 8rem 5%;
  background: var(--light);
}

.struktur-intl-box {
  max-width: 1400px;
  margin: 0 auto;
}

.struktur-intl-services {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.struktur-intl-services h3 {
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 2rem;
  font-weight: 600;
}

.struktur-intl-service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.struktur-intl-service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--light);
  border-radius: 12px;
  transition: all 0.3s;
}

.struktur-intl-service-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.struktur-intl-item-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.struktur-intl-service-item p {
  font-size: 1.05rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.6;
}

.struktur-intl-focus {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.struktur-intl-focus h3 {
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 2rem;
  font-weight: 600;
}

.struktur-intl-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.struktur-intl-focus-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
}

.struktur-intl-focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.struktur-focus-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.struktur-intl-focus-card h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

/* ======================== Unsere Rolle Section ======================== */
.struktur-rolle {
  padding: 8rem 5%;
  background: var(--white);
}

.struktur-rolle-box {
  max-width: 1400px;
  margin: 0 auto;
}

.struktur-rolle-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.struktur-rolle-intro {
  font-size: 1.2rem;
  color: var(--grey);
  line-height: 1.8;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.struktur-rolle-highlights {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.struktur-rolle-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--light);
  border-radius: 15px;
  transition: all 0.3s;
}

.struktur-rolle-highlight-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.struktur-rolle-hl-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.struktur-rolle-hl-text h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.struktur-rolle-hl-text p {
  font-size: 1rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.6;
}

.struktur-rolle-result {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 2rem;
  border-left: 4px solid var(--primary-red);
  border-radius: 10px;
  margin-top: 3rem;
}

.struktur-rolle-result p {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 500;
  margin: 0;
  line-height: 1.8;
}

/* ======================== Process Timeline ======================== */
.struktur-prozess {
  padding: 8rem 5%;
  background: var(--light);
}

.struktur-timeline {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.struktur-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.struktur-timeline-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.struktur-timeline-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-red);
  opacity: 0.3;
  flex-shrink: 0;
  width: 80px;
  text-align: center;
}

.struktur-timeline-content-wrap {
  flex: 1;
}

.struktur-timeline-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.struktur-timeline-content-wrap h3 {
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.struktur-timeline-content-wrap p {
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

/* ======================== Benefits Section ======================== */
.struktur-benefits {
  padding: 8rem 5%;
  background: var(--white);
}

.struktur-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.struktur-benefit-card {
  background: var(--light);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.struktur-benefit-card:hover {
  border-color: var(--primary-red);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.15);
}

.struktur-benefit-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.struktur-benefit-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.struktur-benefit-card p {
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
}

/* ======================== Haltung Final Section ======================== */
.struktur-haltung-final {
  padding: 8rem 5%;
  background: var(--light);
}

.struktur-haltung-box {
  background: linear-gradient(135deg, #bb1d28 0%, #000000 100%);
  padding: 5rem 4rem;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(187, 29, 40, 0.3);
  max-width: 1200px;
  margin: 0 auto;
}

.struktur-haltung-icon-large {
  font-size: 5rem;
  margin-bottom: 2rem;
}

.struktur-haltung-final-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.struktur-haltung-final-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.struktur-haltung-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.struktur-haltung-value-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  transition: all 0.3s;
}

.struktur-haltung-value-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.struktur-haltung-val-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.struktur-haltung-value-item h4 {
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.struktur-haltung-value-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.struktur-haltung-cta-wrap {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.struktur-haltung-cta-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.struktur-haltung-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--white);
  color: var(--dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.struktur-haltung-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

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

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

@media (max-width: 968px) {
  .struktur-page-hero {
    height: 400px;
  }

  .struktur-hero-title {
    font-size: 2.5rem;
  }

  .struktur-hero-subtitle {
    font-size: 1.1rem;
  }

  .struktur-intro-large {
    font-size: 1.3rem;
  }

  .struktur-fo-image img,
  .struktur-rolle-image img,
  .struktur-steuer-visual img {
    height: 400px;
    margin-bottom: 2rem;
  }

  .struktur-gesell-box,
  .struktur-haltung-box {
    padding: 3rem 2rem;
  }

  .struktur-haltung-final-title {
    font-size: 2.5rem;
  }

  .struktur-haltung-values-grid {
    grid-template-columns: 1fr;
  }

  .struktur-benefits-grid {
    grid-template-columns: 1fr;
  }

  .struktur-gesell-service-grid {
    grid-template-columns: 1fr;
  }

  .struktur-intl-focus-grid {
    grid-template-columns: 1fr;
  }

  .struktur-fo-area-grid {
    grid-template-columns: 1fr;
  }

  .struktur-timeline-item {
    flex-direction: column;
    text-align: center;
  }

  .struktur-timeline-number {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .struktur-page-hero {
    height: 350px;
  }

  .struktur-section-title {
    font-size: 1.5rem;
  }

  .struktur-gesell-services {
    padding: 1.5rem;
  }

  .struktur-hero-title {
    font-size: 2rem;
  }

  .struktur-hero-subtitle {
    font-size: 1rem;
  }

  .struktur-intro-large {
    font-size: 1.2rem;
  }

  .struktur-intro-text {
    font-size: 1.05rem;
  }

  .struktur-problem-box,
  .struktur-solution-box {
    padding: 2rem 1.5rem;
  }

  .struktur-fo-image img,
  .struktur-rolle-image img,
  .struktur-steuer-visual img {
    height: 300px;
  }

  .struktur-haltung-final-title {
    font-size: 2rem;
  }

  .struktur-timeline-icon {
    font-size: 2rem;
  }

  .struktur-timeline-content-wrap h3 {
    font-size: 1.3rem;
  }

  .struktur-benefit-card {
    padding: 2rem 1.5rem;
  }

  .struktur-timeline-item {
    padding: 2rem 1.5rem;
  }
}

/* ======================== STRUKTUR & FAMILY OFFICE Css End ======================== */

/* ======================== Kontakt Page Css Start ======================== */
/* Contact Page Styles */
.kontakt-page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.kontakt-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.kontakt-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kontakt-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.kontakt-hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 0 80px;
  text-align: center;
}

.kontakt-hero-label {
  display: inline-block;
  color: #ba181f;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.kontakt-hero-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.kontakt-hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Info Section */
.kontakt-info-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.kontakt-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.kontakt-info-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.kontakt-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.kontakt-info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ba181f 0%, #8a1118 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.kontakt-info-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.kontakt-info-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.kontakt-info-card p {
  color: #666;
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.kontakt-info-card a {
  color: #ba181f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.kontakt-info-card a:hover {
  color: #8a1118;
}

/* Contact Form Section */
.kontakt-form-section {
  padding: 80px 0;
  background: #fff;
}

.kontakt-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.kontakt-form-info {
  padding-right: 40px;
}

.kontakt-section-label {
  display: inline-block;
  color: #ba181f;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.kontakt-form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.kontakt-form-text {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.kontakt-hours-box {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #ba181f;
}

.kontakt-hours-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.kontakt-hours-title i {
  color: #ba181f;
}

.kontakt-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kontakt-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
  color: #666;
}

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

.kontakt-hours-list li span:last-child {
  font-weight: 600;
  color: #1a1a1a;
}

/* Form Styles */
.kontakt-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.kontakt-form-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 30px;
}

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

.kontakt-form-group {
  margin-bottom: 20px;
}

.kontakt-form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.kontakt-form-group input,
.kontakt-form-group select,
.kontakt-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  color: #1a1a1a;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.kontakt-form-group input:focus,
.kontakt-form-group select:focus,
.kontakt-form-group textarea:focus {
  outline: none;
  border-color: #ba181f;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(186, 24, 31, 0.1);
}

.kontakt-form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.kontakt-form-group input::placeholder,
.kontakt-form-group textarea::placeholder {
  color: #999;
}

.kontakt-submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ba181f 0%, #8a1118 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.kontakt-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(186, 24, 31, 0.3);
}

.kontakt-submit-btn i {
  transition: transform 0.3s ease;
}

.kontakt-submit-btn:hover i {
  transform: translateX(5px);
}

/* Map Section */
.kontakt-map-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.kontakt-map-header {
  text-align: center;
  margin-bottom: 50px;
}

.kontakt-map-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.kontakt-map-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.kontakt-map-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: stretch;
}

.kontakt-map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  min-height: 450px;
}

.kontakt-map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
}

.kontakt-map-info-box {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 16px;
  color: #fff;
}

.kontakt-map-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #fff;
}

.kontakt-map-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.kontakt-map-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.kontakt-map-info-icon {
  width: 50px;
  height: 50px;
  background: #ba181f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kontakt-map-info-icon i {
  font-size: 1.2rem;
  color: #fff;
}

.kontakt-map-info-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.kontakt-map-info-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.kontakt-map-info-content a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.kontakt-map-info-content a:hover {
  color: #ba181f;
}

/* CTA Section */
.kontakt-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ba181f 0%, #8a1118 100%);
  text-align: center;
}

.kontakt-cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.kontakt-cta-icon i {
  font-size: 2rem;
  color: #fff;
}

.kontakt-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.kontakt-cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

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

.kontakt-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.kontakt-cta-btn-primary {
  background: #fff;
  color: #ba181f;
}

.kontakt-cta-btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.kontakt-cta-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.kontakt-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .kontakt-info-grid {
    grid-template-columns: 1fr;
  }

  .kontakt-form-wrapper {
    grid-template-columns: 1fr;
  }

  .kontakt-form-info {
    padding-right: 0;
  }

  .kontakt-map-wrapper {
    grid-template-columns: 1fr;
  }

  .kontakt-hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .kontakt-form-row {
    grid-template-columns: 1fr;
  }

  .kontakt-hero-title {
    font-size: 2rem;
  }

  .kontakt-form-box {
    padding: 30px 20px;
  }

  .kontakt-map-info-box {
    padding: 30px 20px;
  }

  .kontakt-cta-title {
    font-size: 2rem;
  }
}

/* ======================== Kontakt Page Css End ======================== */

/* ======================== Footer Page Css Start ======================== */

footer {
  background: #1a1a1a;
  color: #fff;
  padding-top: 80px;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer About Section */
.footer-about {
  padding-right: 30px;
}

.footer-logo {
  max-width: 160px;
  height: auto;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #ba181f;
  transform: translateY(-3px);
}

/* Footer Sections */
.footer-section h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #ba181f;
  border-radius: 2px;
}

/* Footer Links - VERTICAL LIST FORMAT */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  display: block;
  margin-bottom: 14px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
  line-height: 1.5;
}

.footer-links a:hover {
  color: #ba181f;
  padding-left: 5px;
}

/* Footer Contact List - VERTICAL */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact-list li:last-child {
  margin-bottom: 0;
}

.footer-contact-list li i {
  color: #ba181f;
  font-size: 1rem;
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
  color: #ba181f;
}

/* Footer Bottom */
.footer-bottom {
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 991px) {
  footer {
      padding-top: 60px;
  }
  
  .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
  }
  
  .footer-about {
      grid-column: span 2;
      padding-right: 0;
      text-align: center;
  }
  
  .footer-logo {
      margin: 0 auto 20px;
  }
  
  .footer-social {
      justify-content: center;
  }
  
  .footer-section {
      text-align: left;
  }
}

@media (max-width: 575px) {
  footer {
      padding-top: 50px;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      gap: 35px;
  }
  
  .footer-about {
      grid-column: span 1;
  }
  
  .footer-section h4 {
      margin-bottom: 20px;
  }
  
  .footer-bottom {
      padding: 20px 0;
  }
  
  .footer-bottom p {
      font-size: 0.85rem;
  }
}
/* ======================== Footer Page Css End ======================== */