/* raleway-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('assets/fonts/raleway-v36-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  src: url('assets/fonts/raleway-v36-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  src: url('assets/fonts/raleway-v36-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  src: url('assets/fonts/raleway-v36-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* playfair-display-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('assets/fonts/playfair-display-v37-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  src: url('assets/fonts/playfair-display-v37-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  src: url('assets/fonts/playfair-display-v37-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('assets/fonts/playfair-display-v37-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* CSS Custom Properties (Variables) */
:root {
    /* Colors */
    --color-primary: #61aeb7;
    --color-secondary: #6ccdd8;
    --color-accent: #00abb5;
    --color-bg: #e5fdff;
    --color-dark: #071c35;
    --color-text: #000000;
    --color-text-light: #323232;
    --color-text-muted: #646464;
    --color-text-disabled: rgba(0, 0, 0, 0.7);
    --color-text-subtle: rgba(0, 0, 0, 0.6);
    --color-text-faded: rgba(0, 0, 0, 0.56);
    --color-white: #ffffff;
    --color-gray-light: #999999;
    --color-gray-medium: #c4c4c4;
    --color-gray-border: #e0e0e0;
    --color-gray-bg: #f5f5f5;
    --color-orange: #ea9459;
    --color-overlay: rgba(0, 0, 0, 0.2);
    --color-overlay-light: rgba(227, 253, 255, 0.5);
    --color-shadow: rgba(0, 0, 0, 0.25);
    --color-shadow-light: rgba(0, 0, 0, 0.05);
    --color-shadow-medium: rgba(0, 0, 0, 0.03);
    --color-shadow-testimonial: rgba(51, 51, 51, 0.05);
    --color-shadow-testimonial-hover: rgba(51, 51, 51, 0.1);
    --color-shadow-advantage: rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Raleway', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Font Sizes */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 30px;
    --font-size-4xl: 36px;
    --font-size-5xl: 45px;
    --font-size-6xl: 48px;
    
    /* Font Weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.75;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 20px;
    --spacing-xl: 24px;
    --spacing-2xl: 32px;
    --spacing-3xl: 40px;
    --spacing-4xl: 48px;
    
    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0px 4px 4px var(--color-shadow);
    --shadow-md: 0px 4px 70px var(--color-shadow-light);
    --shadow-lg: 0px 4px 70px var(--color-shadow-medium);
    --shadow-testimonial: 10px 32px 72px var(--color-shadow-testimonial);
    --shadow-testimonial-hover: 15px 40px 80px var(--color-shadow-testimonial-hover);
    --shadow-advantage-hover: 0px 8px 30px var(--color-shadow-advantage);
    
    /* Layout */
    --container-max-width: 1440px;
    --container-padding: 60px;
    --section-padding: 80px 0;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

p {
    margin-bottom: var(--spacing-md);
}

ul {
    padding: 10px 0 10px 20px;
}

ul li {
    padding-bottom: 10px
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    background-color: var(--color-white);
    margin-top: 80px; /* Account for fixed header */
}

.container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
}

/* Header Section */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

/* Header scrolled state with white background */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(224, 224, 224, 0.3);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Beautiful slide down animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header overlay removed for cleaner mobile design */
.header-overlay {
    display: none;
}

/* Logo responsive positioning */
.logo {
    width: 156px;
    height: 34px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Navigation menu - responsive design */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 38px;
    transition: all 0.3s ease;
}

.nav-item {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    line-height: 17px;
    color: var(--color-dark);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-item:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

.nav-item.active {
    color: var(--color-accent);
}

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

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

/* Header CTA Buttons */
.header-cta-buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

/* Mobile Menu Toggle Button - Hidden on desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.header.scrolled .hamburger-line {
    background-color: var(--color-dark);
}

/* Hamburger Animation to X */
.mobile-menu-active .hamburger-line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.mobile-menu-active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-active .hamburger-line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 40px 20px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-menu.mobile-active {
        transform: translateX(0);
    }

    .nav-item {
        font-size: var(--font-size-lg);
        font-weight: var(--font-weight-medium);
        padding: 16px 0;
        border-bottom: 1px solid rgba(224, 224, 224, 0.3);
        transition: all 0.3s ease;
    }

    .nav-item:hover {
        color: var(--color-accent);
        padding-left: 16px;
        transform: translateY(0);
    }

    .nav-item::after {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-top: -80px;
    width: 100%;
    min-height: 694px;
    display: flex;
    align-items: center;
    background-color: var(--color-bg);
    overflow: hidden;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    min-height: 694px;
    padding-top: 80px;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 543px;
    height: 100%;
    background: linear-gradient(var(--color-overlay), var(--color-overlay)), url('assets/images/img_marcschadeggrrvalyiz8gunsplash_1.png');
    background-size: cover;
    background-position: center;
    background-color: var(--color-overlay);
    z-index: 1;
    animation: fadeInRight 1s ease-out 0.3s both;
}

/* Ensure custom background images maintain proper quality and positioning */
.hero-overlay[style*="background"] {
    background-repeat: no-repeat;
    background-attachment: local;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: var(--font-size-6xl);
    font-family: var(--font-display);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--color-dark);
    margin: 0;
}

.hero-subtitle {
    font-size: var(--font-size-3xl);
    font-family: var(--font-display);
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    color: var(--color-text-light);
    margin: 0;
}

.hero-features {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
    list-style: none;
    /* list-style: "✓"; */
    /* padding-left: 20px; */
}

.hero-features li {
    margin-bottom: 12px;
    /* padding-left: 10px; */
}

.partner-logos {
    display: flex;
    gap: 37px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.partner-logo-1 {
    width: 158px;
    height: auto;
}

.partner-logo-2 {
    width: 243px;
    height: auto;
}

/* Booking Widget */
.booking-widget {
    grid-column: 2;
    align-self: end;
    width: 100%;
    max-width: 578px;
    background-color: var(--color-white);
    border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) var(--radius-xl);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    position: relative;
    animation: slideInFromRight 1s ease-out 0.6s both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateX(-200px);
}

.booking-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.15);
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.booking-tabs {
    display: flex;
    width: 100%;
}

.booking-tab {
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.booking-tab:first-child {
    border-radius: var(--radius-xl) 0px 0px 0px;
}

.booking-tab:last-child {
    border-radius: 0px var(--radius-xl) 0px 0px;
}

.booking-tab:not(.active) {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.booking-tab.active {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.booking-tab:hover:not(.active) {
    background-color: var(--color-gray-bg);
}

.booking-content {
    padding: 21px;
}

/* Tab Content Styles */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    line-height: 19px;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.booking-subtitle {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    line-height: 17px;
    color: var(--color-text-disabled);
    margin-bottom: var(--spacing-lg);
}

.booking-price {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    line-height: 53px;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

/* Slider Container */
.slider-container {
    margin-bottom: var(--spacing-lg);
}

.booking-slider {
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background: linear-gradient(to right, var(--color-gray-medium) 0%, var(--color-primary) 50%, var(--color-gray-medium) 100%);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 12px;
    cursor: pointer;
}

.booking-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-primary);
    /* border: 3px solid var(--color-white); */
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}

.booking-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
}

.booking-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid var(--color-white);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-top: 8px;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 113px;
    height: 40px;
    background-color: var(--color-primary);
    border-radius: var(--radius-sm);
    border: none;
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    cursor: pointer;
    margin-bottom: var(--spacing-lg);
    transition: all 0.3s ease;
}

.booking-btn:visited,
.booking-btn:active,
.booking-btn:focus {
    color: var(--color-white);
    text-decoration: none;
}

.booking-btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.booking-privacy {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    line-height: 16px;
    color: var(--color-text-disabled);
}

.booking-privacy a {
    text-decoration: underline;
    color: var(--color-text-disabled);
}

.header-cta-buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 139px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: none;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    line-height: 17px;
    color: var(--color-white);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn:visited,
.cta-btn:active,
.cta-btn:focus {
    color: var(--color-white);
    text-decoration: none;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn.chat {
    background-color: var(--color-secondary);
}

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

/* Advantages Section */
.advantages-section {
    position: relative;
    width: 100%;
    padding: var(--section-padding);
    background-color: var(--color-white);
}

.advantages-section .container {
    text-align: center;
}

.advantages-title {
    font-size: var(--font-size-3xl);
    font-family: var(--font-display);
    font-weight: var(--font-weight-bold);
    line-height: 40px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.advantages-subtitle {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 30px;
    color: var(--color-text);
    margin-bottom: 60px;
    max-width: 914px;
    margin-left: auto;
    margin-right: auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.advantage-card {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    padding: 20px;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid;
    border-image: linear-gradient(135deg, rgba(216, 216, 216, 0) 0%, #d8d8d8 100%) 1;
    transition: all 0.3s ease;
}

.advantage-icon {
    width: 64px;
    height: 64px;
    /* background-color: var(--color-primary);
    border-radius: var(--radius-md); */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.advantage-icon img {
    width: 100%;
    height: auto;
}

.advantage-title {
    flex: 10 1 80px;
    font-size: clamp(16px, 4vw, var(--font-size-xl));
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    text-align: center;
    color: var(--color-text);
    padding-top: 20px;
}

.advantage-description {
    flex: 0 1 80px;
}

/* Problem Solution Section */
/* Problem Solution Section */
.problem-section {
    position: relative;
    width: 100%;
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.problem-section .container {
    text-align: center;
    max-width: 1200px;
}

.problem-title {
    font-size: var(--font-size-4xl);
    font-family: var(--font-display);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 60px;
    text-align: center;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 100%;
}

.problem-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.problem-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.problem-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    opacity: 0.9;
}

.problem-card-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.problem-card-description {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Problem Section */
@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .problem-card {
        padding: 35px 25px;
    }
    
    .problem-title {
        font-size: var(--font-size-3xl);
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-card {
        padding: 30px 20px;
    }
    
    .problem-card-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .problem-card-title {
        font-size: var(--font-size-lg);
        margin-bottom: 12px;
    }
    
    .problem-card-description {
        font-size: var(--font-size-sm);
    }
    
    .problem-title {
        font-size: var(--font-size-2xl);
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .problem-section {
        padding: 40px 20px;
    }
    
    .problem-card {
        padding: 25px 15px;
    }
    
    .problem-card-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .problem-title {
        font-size: var(--font-size-xl);
        margin-bottom: 30px;
        line-height: 1.3;
    }
}

/* Family Types Section */
.family-types-section {
    position: relative;
    width: 100%;
    padding: var(--section-padding);
    background-color: var(--color-white);
}

.family-types-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.family-types-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
}

.family-type-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-testimonial);
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.family-type-card:nth-child(1) {
    transform: translateY(0);
}

.family-type-card:nth-child(2) {
    transform: translateY(20px);
}

.family-type-card:nth-child(3) {
    transform: translateY(40px);
}

.family-type-card:nth-child(4) {
    transform: translateY(60px);
}

.family-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-testimonial-hover);
}

.family-type-card:nth-child(2):hover {
    transform: translateY(15px);
}

.family-type-card:nth-child(3):hover {
    transform: translateY(35px);
}

.family-type-card:nth-child(4):hover {
    transform: translateY(55px);
}

.family-type-image {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg) var(--radius-lg) 0px 0px;
    object-fit: cover;
    flex-shrink: 0;
}

.family-type-content {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 80px;
}

.family-type-title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 8px;
}

.family-type-description {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
    line-height: 1.4;
    color: var(--color-text-muted);
}

.family-benefits-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}

.family-benefits {
    font-size: 29px;
    font-family: var(--font-display);
    font-weight: var(--font-weight-bold);
    line-height: 39px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.family-benefits-subtitle {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 22px;
    color: var(--color-text);
    margin-bottom: 24px;
}

.family-benefits-list {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    line-height: 28px;
    color: var(--color-text-faded);
    margin-bottom: 40px;
}

.family-benefits-buttons {
    display: flex;
    gap: var(--spacing-lg);
}

/* Steps Section */
.steps-section {
    position: relative;
    width: 100%;
    padding: var(--section-padding);
    background-color: var(--color-white);
}

.steps-section .container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.steps-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.steps-text-content {
    display: flex;
    flex-direction: column;
}

.steps-title {
    font-size: var(--font-size-3xl);
    font-family: var(--font-display);
    font-weight: var(--font-weight-bold);
    line-height: 40px;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.steps-content {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 32px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

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

.steps-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.steps-list-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    margin-right: 16px;
    flex-shrink: 0;
}

.step-text {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 24px;
    color: var(--color-text-muted);
}

.steps-image {
    width: 100%;
    height: auto;
}

.steps-buttons {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: 20px;
}

.steps-youtube-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.steps-youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.tips-section {
    position: relative;
    width: 100%;
    padding: var(--section-padding);
    background-color: var(--color-white);
}

.tips-content-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tips-title {
    font-size: var(--font-size-3xl);
    font-family: var(--font-display);
    font-weight: var(--font-weight-bold);
    line-height: 40px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.tips-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tips-list-item {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

.tip-title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.tip-description {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
    line-height: 22px;
    color: var(--color-text-muted);
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    width: 100%;
    padding: var(--section-padding);
    background-color: var(--color-white);
}

.testimonials-section .container {
    text-align: center;
}

.testimonials-title {
    font-size: var(--font-size-3xl);
    font-family: var(--font-display);
    font-weight: var(--font-weight-bold);
    line-height: 40px;
    color: #333333;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    position: relative;
    width: 100%;
    max-width: 384px;
    height: auto;
    background-color: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-testimonial);
    padding: var(--spacing-xl);
}

.testimonial-avatar {
    display: none;
    width: 40px;
    height: 40px;
    background-color: var(--color-gray-medium);
    border-radius: 20px;
    float: left;
    margin-right: var(--spacing-md);
}

.testimonial-name {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    line-height: 17px;
    color: #333333;
    margin-bottom: 4px;
}

.testimonial-source {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-normal);
    line-height: 15px;
    color: var(--color-gray-light);
    margin-bottom: var(--spacing-md);
}

.testimonial-rating {
    float: right;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.testimonial-star {
    width: 18px;
    height: 18px;
}

.testimonial-score {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
    line-height: 17px;
    color: var(--color-orange);
}

.testimonial-text {
    clear: both;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
    line-height: 24px;
    color: var(--color-gray-light);
    margin-top: var(--spacing-md);
}

/* About Section */
.about-section {
    position: relative;
    width: 100%;
    padding: var(--section-padding);
    background-image: url('assets/images/img_bg.png');
    background-size: cover;
    background-position: center;
}

.about-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text-content {
    display: flex;
    flex-direction: column;
}

.about-title {
    font-size: var(--font-size-4xl);
    font-family: var(--font-display);
    font-weight: var(--font-weight-bold);
    line-height: 48px;
    text-transform: capitalize;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.about-subtitle {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 22px;
    color: var(--color-text);
    margin-bottom: 24px;
}

.about-content {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 28px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.about-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    object-fit: cover;
    margin-bottom: 24px;
}

.about-expert {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 19px;
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.about-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
}

/* FAQ Section */
.faq-section {
    position: relative;
    width: 100%;
    padding: var(--section-padding);
    background-color: var(--color-white);
}

.faq-section .container {
    max-width: 1000px;
}

.faq-title {
    font-size: var(--font-size-4xl);
    font-family: var(--font-display);
    font-weight: var(--font-weight-bold);
    line-height: 48px;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-3xl);
}

.faq-item {
    margin-bottom: 16px;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: var(--spacing-sm);
    padding: 20px 24px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid rgba(224, 224, 224, 0.5);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f2f5;
    border-color: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    margin-left: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    transform: rotate(0deg);
}

.faq-arrow {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.faq-question:hover .faq-icon {
    background-color: var(--color-secondary);
    transform: scale(1.1);
}

.faq-question.active .faq-icon {
    background-color: var(--color-secondary);
}

.faq-question.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-question-text {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    line-height: 1.4;
    color: var(--color-text);
    flex: 1;
}

.faq-answer {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--color-text-muted);
    padding: 20px 24px;
    margin-top: 8px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(224, 224, 224, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: none;
    animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer.active {
    display: block;
}

/* Footer */
.footer {
    position: relative;
    width: 100%;
    background-color: var(--color-primary);
    padding: 20px 0;
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    width: 166px;
    height: 36px;
}

.footer-links {
    display: flex;
    gap: 45px;
}

.footer-link {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
    line-height: 17px;
    color: var(--color-white);
    text-decoration: none;
}

/* Hotels Section */
.hotels-section {
    position: relative;
    width: 100%;
    padding: var(--section-padding);
    background-color: #ffffff;
}

.hotels-title {
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 40px;
    color: #323232;
    margin-bottom: 16px;
    text-align: center;
}

.hotels-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #000000;
    margin-bottom: 60px;
    max-width: 914px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(277px, 1fr));
    gap: 50px 30px;
    justify-items: center;
}

.hotel-card {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0px 4px 70px rgba(0, 0, 0, 0.05);
}

.hotel-image {
    width: 100%;
    height: 215px;
    border-radius: 24px 24px 0px 0px;
    object-fit: cover;
}

.hotel-content {
    padding: 22px;
}

.hotel-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: #000000;
    margin-bottom: 8px;
}

.hotel-category {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #000000;
    margin-bottom: 16px;
}

.hotel-location {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.hotel-location-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.hotel-location-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #000000;
    opacity: .5;
}

.hotel-highlights {
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    color: #000000;
    margin-bottom: 8px;
}

.hotel-features {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000000;
    margin-bottom: 35px;
    padding-left: 20px;
}

.hotel-buttons {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    gap: 0;
}

.hotel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hotel-btn:visited,
.hotel-btn:active,
.hotel-btn:focus {
    color: #ffffff;
    text-decoration: none;
}

.hotel-btn.chat {
    width: 50%;
    background-color: #6ccdd8;
    border-radius: 20px 0px 20px 0px;
}

.hotel-btn.request {
    width: 50%;
    background-color: #00abb5;
    border-radius: 0px 20px 0px 20px;
}

/* Spain Info Section */
.spain-info-section {
    position: relative;
    width: 100%;
    padding: var(--section-padding);
    background-color: #ffffff;
}

.spain-info-section .container {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns: repeat(2, minmax(min-content, max-content));
    gap: 60px;
    align-items: center;
}

.spain-info-content-wrapper {
    display: flex;
    flex-direction: column;
}

.spain-info-title {
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 39px;
    color: #323232;
    margin-bottom: 24px;
}

.spain-info-content {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #646464;
    margin-bottom: 40px;
}

.spain-info-image {
    width: 100%;
    height: 476px;
    object-fit: cover;
    border-radius: 24px;
}

.spain-info-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

/* Team Section */
.team-section {
    position: relative;
    width: 100%;
    padding: var(--section-padding);
}

.team-title {
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 40px;
    color: #323232;
    margin-bottom: 16px;
    text-align: center;
}

.team-subtitle {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 30px;
    color: var(--color-text);
    margin-bottom: 60px;
    max-width: 914px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px 30px;
    justify-items: center;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 300px;
    transition: all var(--transition-fast);
    animation: fadeInUp 0.6s ease-out;
}

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:nth-child(4) { animation-delay: 0.4s; }

.team-member:hover {
    transform: translateY(-5px);
}

.team-member-photo {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-advantage-hover);
    transition: all var(--transition-fast);
    position: relative;
}

.team-member-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 1;
}

.team-member:hover .team-member-photo::before {
    opacity: 0.1;
}

.team-member:hover .team-member-photo {
    box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all var(--transition-fast);
}

.team-member-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.team-member-name {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--color-text-light);
    margin: 0;
}

.team-member-position {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 19px;
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* Why Choose Us Section */
.why-urlaub-section {
    position: relative;
    width: 100%;
    padding: var(--section-padding);
}

.why-title {
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 40px;
    color: #323232;
    margin-bottom: 16px;
    text-align: center;
}

.why-subtitle {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 30px;
    color: var(--color-text);
    margin-bottom: 60px;
    max-width: 914px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.why-urlaub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px 65px;
    justify-items: center;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.why-urlaub-item__description {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 24px;
    color: var(--color-text-muted);
    margin-block: 24px;
}

h3.why-urlaub-item__title {
    font-weight: 600;
}

.why-urlaub-item__icon img {
    width: 80px;
    height: auto;
}

/* KPI Section */
.kpi-section {
    position: relative;
    width: 100%;
    padding: var(--section-padding);
    background-color: var(--color-white);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.kpi-item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kpi-item-content {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    text-align: left;
}

.kpi-icon {
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.kpi-section--primary .kpi-icon {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.kpi-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.kpi-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kpi-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: var(--font-weight-semibold);
    line-height: 0.6;
    color: var(--color-primary);
    margin: 0;
}

.kpi-label {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    line-height: 1.3;
    color: var(--color-text-light);
    margin: 0;
}

.kpi-description {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    color: var(--color-text-muted);
    margin: 0;
}

/* KPI Section Hover Effects */
.kpi-item:hover .kpi-icon {
    transform: scale(1.05);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
}

.kpi-section--primary .kpi-item:hover .kpi-icon {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Partners Section */
.partners-section {
    position: relative;
    width: 100%;
    padding: var(--section-padding);
    background-color: var(--color-white);
}

.partners-section.partners-bg-light-gray {
    background-color: var(--color-light-gray, #f8f9fa);
}

.partners-header {
    text-align: center;
    margin-bottom: 40px;
}

.partners-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(8rem, 1fr));
    justify-content: space-around;
    align-items: flex-start;
    gap: 0px;
}

@media screen and (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
    }
}

.partner-box {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 150px;
    padding: 20px;
    background-color: #fff;
}

.partner-box img {
    width: 100%;
    height: 100%;
    display: flex;
    object-fit: contain;
    /* -webkit-filter: grayscale(100%);
    filter: grayscale(100%); */
}

a.partner-box {
    overflow: hidden;
}

a.partner-box img {
    display: flex;
    object-fit: contain;
    /* -webkit-filter: grayscale(100%);
    filter: grayscale(100%); */
    transition-behavior: normal;
    transition-duration: 500ms;
}

a.partner-box img:hover {
    filter: initial;
    transform: scale(1.05);
    transition-behavior: normal;
    transition-duration: 500ms;
}

/* Popular Routes Section */
.popular-routes-section {
    position: relative;
    width: 100%;
    padding: var(--section-padding);
    background-color: var(--color-white);
}

.popular-routes-section.routes-bg-light-gray {
    background-color: var(--color-light-gray, #f8f9fa);
}

.popular-routes-section.routes-bg-brand {
    background-color: var(--color-primary, #007acc);
}

.popular-routes-section.routes-bg-custom {
    background-color: #6DCED9;
}

.routes-header {
    text-align: left;
    margin-bottom: 60px;
    max-width: 800px;
}

.routes-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.routes-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary, #666);
    margin: 0;
    line-height: 1.5;
}

.popular-routes-section.routes-bg-brand .routes-title,
.popular-routes-section.routes-bg-brand .routes-subtitle {
    color: var(--color-white);
}

.routes-grid {
    display: grid;
    gap: 40px;
    align-items: start;
}

.routes-grid.routes-cols-1 {
    grid-template-columns: 1fr;
}

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

.routes-grid.routes-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.route-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.route-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.route-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.route-header {
    margin-bottom: 20px;
}

.route-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.route-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-primary, #007acc);
    margin: 0;
    line-height: 1.4;
}

.route-description {
    font-size: 1rem;
    color: var(--color-text-secondary, #666);
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.route-highlights {
    margin-bottom: 30px;
}

.route-highlights-title {
    padding-bottom: 10px;
    font-size: 0.95rem;
    color: var(--color-text-secondary, #666);
    line-height: 1.5;
}

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

.highlights-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--color-text-secondary, #666);
    line-height: 1.5;
}

.highlights-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary, #007acc);
    font-weight: bold;
    font-size: 1.2rem;
}

.route-action {
    margin-top: auto;
    padding-top: 20px;
}

.route-btn {
    display: inline-block;
    background-color: var(--color-primary, #007acc);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.route-btn:hover {
    background-color: var(--color-primary-dark, #0056a3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 122, 204, 0.3);
}

/* Responsive Design for Routes */
@media (max-width: 768px) {
    .routes-grid.routes-cols-2,
    .routes-grid.routes-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .routes-header {
        margin-bottom: 40px;
    }
    
    .routes-title {
        font-size: 2rem;
    }
    
    .routes-subtitle {
        font-size: 1rem;
    }
    
    .route-card {
        padding: 30px;
    }
    
    .route-title {
        font-size: 1.25rem;
    }
    
    .route-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .route-card {
        padding: 24px;
    }
    
    .routes-title {
        font-size: 1.75rem;
    }
}

/* Responsive Design */
@media (min-width: 1400px) {
    /* Advantages Large Desktop */
    .advantages-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1600px;
        gap: 40px;
    }
/* 
    .advantage-card {
        max-width: 380px;
        min-height: 260px;
    } */

    /* .advantage-icon {
        top: 40px;
        width: 72px;
        height: 72px;
    } */

    /* .advantage-icon img {
        width: 42px;
        height: 42px;
    } */

    .advantage-title {
        top: 135px;
        font-size: var(--font-size-xl);
    }

    .advantage-description {
        top: 175px;
        font-size: var(--font-size-base);
    }
}

@media (max-width: 1200px) {
    .hero-section .container {
        grid-template-columns: 1fr 450px;
        gap: 30px;
    }
    
    .hero-overlay {
        width: 450px;
    }
    
    .booking-widget {
        max-width: 450px;
    }
}

@media (max-width: 1024px) {
    .hero-section .container {
        grid-template-columns: 1fr 380px;
        gap: 24px;
    }
    
    .hero-overlay {
        width: 380px;
    }
    
    .booking-widget {
        max-width: 380px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 26px;
    }

    .header-cta-buttons {
        gap: 12px;
    }
    
    .cta-btn {
        width: 120px;
        font-size: 13px;
    }
    
    .nav-menu {
        gap: 24px;
    }

    /* Family Types Section */
    .family-types-section .container {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    /* Advantages Tablet */
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        padding: 0 15px;
    }

    .advantage-card {
        max-width: 320px;
        min-height: 220px;
    }

    .advantage-icon {
        width: 56px;
        height: 56px;
    }

    .advantage-icon img {
        width: 32px;
        height: 32px;
    }

    .advantage-title {
        font-size: var(--font-size-lg);
        top: 110px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .advantage-description {
        top: 145px;
        font-size: 13px;
        line-height: 22px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header mobile styles */
    .header {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 40px 20px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-menu.mobile-active {
        transform: translateX(0);
    }

    .nav-menu .nav-item {
        font-size: var(--font-size-lg);
        font-weight: var(--font-weight-medium);
        padding: 16px 0;
        border-bottom: 1px solid rgba(224, 224, 224, 0.3);
        transition: all 0.3s ease;
        transform: translateY(0);
    }

    .nav-menu .nav-item:hover {
        color: var(--color-accent);
        padding-left: 16px;
        transform: translateY(0);
    }

    .nav-menu .nav-item::after {
        display: none;
    }

    .header-cta-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo {
        width: 120px;
        height: 26px;
    }

    /* Hero Section Mobile */
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 100px;
        padding-bottom: 20px;
        text-align: center;
    }

    .hero-content {
        order: 2;
        max-width: 100%;
        gap: 20px;
    }

    .hero-overlay {
        position: relative;
        order: 1;
        width: 100%;
        height: 300px;
        border-radius: var(--radius-xl);
        padding: 0 20px;
        width: 100%;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 22px;
        line-height: 1.3;
        text-align: center;
    }

    .hero-features {
        font-size: 16px;
        line-height: 1.5;
        text-align: left;
        max-width: 100%;
        margin: 0 auto;
    }

    .partner-logos {
        justify-content: center;
        gap: 20px;
        margin-top: 24px;
    }

    .partner-logo-1 {
        width: 120px;
        height: 45px;
    }

    .partner-logo-2 {
        width: 180px;
        height: 22px;
    }

    .booking-widget {
        order: 3;
        grid-column: 1;
        width: 100%;
        max-width: 100%;
        margin: 20px 0 0 0;
        border-radius: var(--radius-xl);
    }

    .booking-slider {
        width: 100%;
    }

    .spain-info-section .container,
    .steps-section .container,
    .about-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-section .container {
        align-items: center;
    }

    .about-image {
        height: 280px;
    }

    .about-buttons {
        flex-direction: row;
        gap: 16px;
        justify-content: center;
    }

    .steps-section .container {
        flex-direction: column;
        gap: 40px;
    }

    .steps-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-image {
        order: -1;
    }

    .steps-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .steps-youtube-wrapper {
        padding-bottom: 56.25%; /* Maintains 16:9 aspect ratio on mobile */
        margin-bottom: 20px;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tips-title {
        text-align: left;
               margin-bottom: 24px;
    }

    .steps-list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }

    .step-number {
        margin-bottom: 8px;
        margin-right: 0;
    }

    .tips-list-item {
        padding: 12px;
    }

    .tip-title {
        font-size: 14px;
    }

    .tip-description {
        font-size: 13px;
        line-height: 18px;
    }

    .family-types-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .family-types-cards {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        justify-items: center;
    }

    .family-type-card {
        max-width: 280px;
    }

    .family-type-card:nth-child(1),
    .family-type-card:nth-child(2),
    .family-type-card:nth-child(3),
    .family-type-card:nth-child(4) {
        transform: translateY(0);
    }

    .family-type-card:hover,
    .family-type-card:nth-child(2):hover,
    .family-type-card:nth-child(3):hover,
    .family-type-card:nth-child(4):hover {
        transform: translateY(-5px);
    }

    /* Advantages Mobile */
    .advantages-title {
        font-size: var(--font-size-2xl);
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .advantages-subtitle {
        font-size: var(--font-size-base);
        line-height: 1.4;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 10px;
    }

    .advantage-card {
        width: 100%;
        max-width: 320px;
        height: auto;
        min-height: 200px;
        padding: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .advantage-icon {
        position: static;
        transform: none;
        margin-bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .advantage-icon img {
        width: 32px;
        height: 32px;
    }

    .advantage-title {
        position: static;
        font-size: var(--font-size-lg);
        line-height: 1.2;
        margin-bottom: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }

    .advantage-description {
        position: static;
        font-size: var(--font-size-sm);
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Testimonials Mobile */
    .testimonials-title {
        font-size: var(--font-size-2xl);
        line-height: 1.3;
        margin-bottom: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .testimonial-card {
        width: 100%;
        max-width: 100%;
        padding: var(--spacing-lg);
        margin: 0;
    }

    .testimonial-avatar {
        width: 36px;
        height: 36px;
        border-radius: 18px;
        margin-right: var(--spacing-sm);
    }

    .testimonial-rating {
        gap: var(--spacing-xs);
    }

    .testimonial-star {
        width: 16px;
        height: 16px;
    }

    .testimonial-score {
        font-size: 13px;
    }

    .testimonial-text {
        font-size: 13px;
        line-height: 1.4;
        margin-top: 12px;
    }

    /* Footer Mobile */
    .footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .footer-link {
        font-size: var(--font-size-base);
    }

    /* FAQ Mobile */
    .faq-title {
        font-size: var(--font-size-2xl);
        line-height: 1.3;
        margin-bottom: 32px;
    }

    .faq-question {
        padding: 16px 20px;
        gap: 12px;
    }

    .faq-question-text {
        font-size: var(--font-size-base);
        line-height: 1.4;
        padding-right: 8px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        margin-left: 8px;
        flex-shrink: 0;
    }

    .faq-arrow {
        width: 14px;
        height: 14px;
    }

    .faq-answer {
        padding: 16px 20px;
        font-size: var(--font-size-sm);
        line-height: 1.5;
    }
}

/* ============================
   UNIVERSAL TEXT SECTION
   ============================
*/

.universal-text-section {
    position: relative;
    width: 100%;
    padding: var(--section-padding);
    background-color: var(--color-white);
    color: var(--color-text);
}

/* Background Colors */
.universal-text-section.text-bg-white {
    background-color: #ffffff;
}

.universal-text-section.text-bg-light-gray {
    background-color: #f8f9fa;
}

.universal-text-section.text-bg-brand {
    background-color: var(--color-primary);
    color: white;
}

.universal-text-section.text-bg-custom {
    background-color: #6DCED9;
    color: #333;
}

/* Section Header */
.text-section-header {
    margin-bottom: var(--spacing-xl);
}

.text-section-header.text-center {
    text-align: center;
}

.text-section-header.text-left {
    text-align: left;
}

.text-section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: inherit;
    margin: 0;
}

/* Content Wrapper */
.text-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Single Column Layouts */
.text-layout-full .text-content-single {
    width: 100%;
}

/* Centered Layout: Reduce max-width for entire wrapper */
.text-layout-centered .text-content-wrapper {
    max-width: 600px;
}

.text-layout-centered .text-content-single {
    width: 100%;
}

/* Text Blocks */
.text-block {
    margin-bottom: var(--spacing-lg);
}

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

.text-block-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: inherit;
}

.text-block-content {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: inherit;
}

.text-block-content p {
    margin-bottom: var(--spacing-md);
}

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

.text-block-content h1,
.text-block-content h2,
.text-block-content h3,
.text-block-content h4,
.text-block-content h5,
.text-block-content h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: inherit;
}

.text-block-content ul,
.text-block-content ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.text-block-content li {
    margin-bottom: var(--spacing-xs);
}

.text-block-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    font-style: italic;
}

.text-block-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: var(--spacing-md) 0;
}

/* Multi-Column Grid Layouts */
.text-content-grid {
    display: grid;
    gap: var(--spacing-xl);
    align-items: start;
}

/* 2 Columns Equal */
.text-layout-two-cols .text-content-grid {
    grid-template-columns: 1fr 1fr;
}

/* 3 Columns Equal */
.text-layout-three-cols .text-content-grid {
    grid-template-columns: 1fr 1fr 1fr;
}

/* 4 Columns Equal */
.text-layout-four-cols .text-content-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

/* 2/3 + 1/3 Layout */
.text-layout-2-3-1-3 .text-content-grid {
    grid-template-columns: 2fr 1fr;
}

/* 1/3 + 2/3 Layout */
.text-layout-1-3-2-3 .text-content-grid {
    grid-template-columns: 1fr 2fr;
}

/* Column Specific Styles */
.text-column {
    min-width: 0; /* Prevent grid overflow */
}

.text-column .text-block-title {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .text-section-title {
        font-size: 2.25rem;
    }
    
    .text-layout-four-cols .text-content-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .text-layout-three-cols .text-content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .universal-text-section {
        padding: var(--spacing-lg) 0;
    }
    
    .text-section-title {
        font-size: 2rem;
    }
    
    .text-content-grid {
        gap: var(--spacing-lg);
    }
    
    /* Stack all columns on mobile */
    .text-layout-two-cols .text-content-grid,
    .text-layout-three-cols .text-content-grid,
    .text-layout-four-cols .text-content-grid,
    .text-layout-2-3-1-3 .text-content-grid,
    .text-layout-1-3-2-3 .text-content-grid {
        grid-template-columns: 1fr;
    }
    
    .text-block-title {
        font-size: 1.5rem;
    }
    
    .text-column .text-block-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .text-section-title {
        font-size: 1.75rem;
    }
    
    .text-block-title {
        font-size: 1.25rem;
    }
    
    .text-column .text-block-title {
        font-size: 1.125rem;
    }
}

/* Online Anfrage Ninja Forms Contactform */
/* Farben */
:root {
  --color-primary: #61aeb7;
  --color-secondary: #6ccdd8;
  --color-accent: #00abb5;
  --color-bg: #e5fdff;
  --color-dark: #071c35;
  --color-text: #000000;

  --nf-bg: var(--color-bg);
  --nf-card: #ffffff;
  --nf-surface: #ffffff;
  --nf-text: var(--color-text);
  --nf-text-muted: #4b5563;
  --nf-primary: var(--color-primary);
  --nf-primary-strong: var(--color-accent);
  --nf-primary-weak: var(--color-secondary);
  --nf-error: #d92d20;
  --nf-success: #16a34a;
  --nf-radius: 14px;
  --nf-radius-sm: 10px;
  --nf-shadow: 0 10px 25px rgba(7,28,53,.08);
  --nf-transition: .2s cubic-bezier(.22,.61,.36,1);
  --nf-focus: 0 0 0 3px color-mix(in oklab, var(--nf-primary) 40%, transparent);
}

/* Fix: Custom Tags sichtbar machen */
nf-section, nf-fields-wrap, nf-field, nf-errors { display: block; }
.nf-form-wrap, .nf-form-layout, .nf-form-content, .nf-mp-body {
  overflow: visible;
  height: auto !important;
}

/* Container */
.nf-form-cont {
  max-width: 920px;
  /* margin: clamp(20px, 6vw, 64px) auto; */
  padding: clamp(16px, 2.5vw, 28px);
  background: var(--nf-card);
  border-radius: var(--nf-radius);
  box-shadow: var(--nf-shadow);
}

.nf-form-title {
  display: none;
  font-weight: 700;
  color: var(--nf-text);
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 4px 6px 18px;
}

.nf-form-fields-required {
  font-size: 14px;
  color: var(--nf-text-muted);
  background: color-mix(in oklab, var(--nf-primary) 10%, #fff);
  padding: 10px 12px;
  border-radius: var(--nf-radius-sm);
}

/* Progressbar & Breadcrumbs */
.nf-progress-container {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: #eef7f8;
  margin-bottom: 18px;
}

.nf-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--nf-primary), var(--color-secondary));
  width: 0%;
  transition: width .45s var(--nf-transition);
}

.nf-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}

.nf-breadcrumbs li {
  position: relative;
  padding-left: 18px;
  color: var(--nf-text-muted);
  font-size: 14px;
}

.nf-breadcrumbs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cfe7eb;
}

.nf-breadcrumbs li.active {
  color: var(--nf-text);
  font-weight: 600;
}

.nf-breadcrumbs li.active::before {
  background: var(--nf-primary);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--nf-primary) 35%, transparent);
}

.nf-breadcrumb {
  text-decoration: none;
  color: inherit;
}

.nf-breadcrumb:hover {
  color: var(--nf-primary);
}

/* Felder (keine Grid-Umsortierung, keine Border am Container) */
.nf-field-container {
  background: var(--nf-surface);
  border: none;
  border-radius: var(--nf-radius-sm);
  padding: 14px 14px 12px;
}

.nf-field-label label {
  display: block;
  font-size: 14px;
  color: var(--nf-text-muted);
  margin: 2px 0 8px;
}

.ninja-forms-req-symbol {
  color: var(--nf-primary);
  font-weight: 700;
}

.nf-field-element .ninja-forms-field {
  width: 100%;
  background: #fff !important;
  color: var(--nf-text);
  border: 1px solid #dbe7ea;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
  transition: border-color var(--nf-transition), box-shadow var(--nf-transition);
}

.nf-field-element .ninja-forms-field:hover {
  border-color: color-mix(in oklab, var(--nf-primary) 35%, #dbe7ea);
}

.nf-field-element .ninja-forms-field:focus {
  outline: none;
  border-color: var(--nf-primary);
  box-shadow: var(--nf-focus);
}

.nf-error .ninja-forms-field:focus {
    border: 1px solid #e80000;
}

.nf-form-wrap.ninja-forms-form-wrap {
    display: grid;
}

.nf-response-msg {
    order: 2; 
    font-weight: 600;
    text-align: center;
    font-size: 18px;
    color: #62aeb7;
}

/* Select-Pfeil */
select.ninja-forms-field {
  background-image:
    linear-gradient(45deg, transparent 50%, #222 50%),
    linear-gradient(135deg, #222 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px),
    calc(100% - 2.2em) 50%;
  background-size: 6px 6px, 6px 6px, 1px 2.6em;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* Fehler verstecken */
.nf-error-wrap.nf-error {
  display: none !important;
}

/* Buttons */
.nf-next, .nf-previous, .nf-submit, input[type="submit"].nf-element {
  border: none;
  background: var(--nf-primary) !important;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 6px 18px color-mix(in oklab, var(--nf-primary) 28%, transparent);
  transition: transform var(--nf-transition), background var(--nf-transition);
}

.nf-next:hover, .nf-previous:hover, .nf-submit:hover, input[type="submit"].nf-element:hover { 
    transform: translateY(-2px) !important;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.nf-previous {
  background: #f2fbfc;
  /* color: var(--color-dark); */
  box-shadow: none;
}

.nf-next:hover, .nf-submit:hover {
  background: var(--nf-primary-strong);
  transform: translateY(-1px);
}

.nf-previous:hover {
  background: #e7f7f9;
}

.nf-next[disabled], .nf-previous[disabled], .nf-submit[disabled] {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

div#nf-field-9-container {
    float: right;
    padding: 0;
}

#ninja_forms_required_items, .nf-field-container {
    margin-bottom: 15px !important;
}

.nf-field-label .nf-label-span, .nf-field-label label {
    width: max-content;
}

.checkbox-wrap .nf-field-label label {
    width: auto;
}

@media screen and (max-width: 768px) {
    .nf-form-cont .five-sixths, .nf-form-cont .four-sixths, .nf-form-cont .one-fourth, .nf-form-cont .one-half, .nf-form-cont .one-sixth, .nf-form-cont .one-third, .nf-form-cont .three-fourths, .nf-form-cont .three-sixths, .nf-form-cont .two-fourths, .nf-form-cont .two-sixths, .nf-form-cont .two-thirds {
        clear: both;
        float: initial;
        width: 100% !important;
    }

    .nf-field-container {
        padding: 0 !important;
        margin-left: 0 !important;
    }
    
}

/* Mobile Menu Background Scroll Prevention */
body.mobile-menu-active,
html.mobile-menu-active {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

/* Ensure menu button stays visible */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        position: relative !important;
        z-index: 10000 !important;
    }
    
    /* Override any hiding of the mobile toggle */
    .header .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* ===========================================
   404 Page Styles
   =========================================== */

/* Enhanced 404 page hero section */
.error-404 .hero-section {
    min-height: 60vh;
}

.error-404 .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.error-404 .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--color-white);
    opacity: 0.9;
}

.error-404 .hero-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.error-404 .hero-features li {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.error-404 .hero-features li:before {
    content: "•";
    color: var(--color-secondary);
    margin-right: 0.5rem;
    font-weight: bold;
}

/* 404 page specific button styles */
.error-404 .btn {
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.error-404 .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Enhanced search form in 404 page */
.error-404 .search-form {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.error-404 .search-form input[type="search"] {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid var(--color-gray-border);
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.error-404 .search-form input[type="search"]:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(97, 174, 183, 0.1);
}

.error-404 .search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.error-404 .search-form button:hover {
    background: var(--color-accent);
    transform: translateY(-50%) scale(1.05);
}

/* Destination cards hover effects */
.error-404 .text-column {
    transition: all 0.3s ease;
}

.error-404 .text-column:hover {
    transform: translateY(-5px);
}

.error-404 .text-column:hover .text-block-content {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.error404 h3.text-block-title {
    text-align: center;
}

/* Mobile responsive adjustments for 404 page */
@media (max-width: 768px) {
    .error-404 .hero-title {
        font-size: 2.5rem;
    }
    
    .error-404 .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .error-404 .search-form {
        max-width: 90%;
    }
}

/* Table Navigation Hack */

@media (min-width: 769px) and (max-width: 1280px) {
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
       transform: translateX(-100px) !important;
    }
}

@media (min-width: 1281px) and (max-width: 1700px) {
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
       transform: translateX(-50px) !important;
    }
}