/*
Theme Name: SafeHer 
Theme URI: https://safe-her.de
Author: Judith Ludwig
Description: A professional landing page theme for personal trainers and mindset coaches. Features a modern, conversion-optimized design with hero section, services, testimonials, and contact form.
Version: 1.1.18
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: safeher
*/

/* ============================================
   CSS Reset & Base Styles
   ============================================ */

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

:root {
    /* Primary Color Palette - Elegant & Professional */
    --primary-color: #1a1a1a;
    --secondary-color: #2a2a2a;
    --accent-color: #3a3a3a;
    --highlight-color: #c9a961;
    --light-highlight: #d4b876;
    --success-color: #4a7c59;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #666666;
    --dark-gray: #333333;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    --font-secondary: 'Georgia', 'Times New Roman', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* ============================================
   Navigation
   ============================================ */

.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: 300;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image-wrapper {
    height: 2.5rem;
    width: 2.5rem;
    position: relative;
    display: inline-block;
    background-color: var(--highlight-color);
    opacity: 0.8;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: translateY(-1px);
    letter-spacing: 1.2px;
}

.logo span {
    color: var(--highlight-color);
    font-weight: 200;
    letter-spacing: 0;
    margin-left: -0.2em;
}

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

.nav-menu a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight-color);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--highlight-color);
    color: var(--white) !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--light-highlight);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
}

.cta-button::after {
    display: none;
}

/* ============================================
   Mobile Menu Toggle Button (Hamburger)
   ============================================ */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    border-radius: 8px;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle:hover .hamburger-icon span {
    background-color: var(--highlight-color);
}

.mobile-menu-toggle.menu-active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.menu-active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.menu-active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--highlight-color);
    outline-offset: 2px;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.overlay-active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.80) 0%,
        rgba(42, 42, 42, 0.70) 50%,
        rgba(26, 26, 26, 0.80) 100%
    );
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
}

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

.hero-heading-wrapper {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: var(--white);
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title-line {
    display: block;
    font-weight: 300;
    opacity: 0.95;
}

.hero-title-highlight {
    display: block;
    color: var(--highlight-color);
    font-weight: 600;
    text-shadow: 0 4px 24px rgba(201, 169, 97, 0.4);
}

.hero-text-wrapper {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 200;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-content h1 .highlight {
    color: var(--highlight-color);
    display: inline;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 97, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1.2rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--highlight-color);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.hero-badge:hover {
    background: rgba(201, 169, 97, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.75;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.hero-stat:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 0.3rem;
}

.stat-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-trust {
    margin-top: 2rem;
    text-align: center;
}

.hero-trust p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    display: inline-block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background: transparent;
    color: var(--highlight-color);
    border: 2px solid var(--highlight-color);
}

.btn-primary:hover {
    background: var(--highlight-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 169, 97, 0.4);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Hero image styles removed - now using full background image */

/* ============================================
   About Section
   ============================================ */

.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    color: var(--highlight-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    margin-top: 0;
    line-height: 1.4;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
    font-family: var(--font-primary);
    text-shadow: 0 1px 2px rgba(201, 169, 97, 0.1);
    transition: var(--transition-smooth);
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--highlight-color), var(--light-highlight));
    border-radius: 2px;
}

.section-header .section-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-description {
    display: block;
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Quote Block - Modern Professional Style */
.quote-block {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(201, 169, 97, 0.02) 100%);
    border-left: 4px solid var(--highlight-color);
    border-radius: 0 8px 8px 0;
    position: relative;
    transition: var(--transition-smooth);
}

.quote-block:hover {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(201, 169, 97, 0.04) 100%);
    transform: translateX(5px);
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: 0.75rem;
    left: 1.25rem;
    font-size: 3rem;
    font-family: var(--font-secondary);
    color: var(--highlight-color);
    opacity: 0.2;
    line-height: 1;
}

.quote-text {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    padding-left: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.quote-author {
    display: block;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--medium-gray);
    text-align: right;
    margin-top: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stats-cards-wrapper {
    position: relative;
}

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

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

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--medium-gray);
    font-weight: 500;
}

.core-values {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.core-values h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.value-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--highlight-color), var(--light-highlight));
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.value-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

/* ============================================
   Personal Introduction Section
   ============================================ */

.personal-intro-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.personal-intro-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.personal-intro-image {
    position: relative;
}

.personal-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--highlight-color);
    border-radius: 4px;
    z-index: 0;
}

.personal-intro-text {
    text-align: left;
}

.personal-intro-text .section-subtitle {
    text-align: left;
}

.personal-intro-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.intro-lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.personal-intro-text p {
    color: var(--medium-gray);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.personal-intro-text p strong {
    color: var(--primary-color);
    font-weight: 500;
}

/* ============================================
   Services Section
   ============================================ */

.services-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.initial-consultation-banner {
    background: linear-gradient(135deg, var(--highlight-color), var(--light-highlight));
    border-radius: 20px;
    padding: 2.5rem 3rem;
    margin: 2rem 0 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.25);
    transition: var(--transition-smooth);
}

.initial-consultation-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.35);
}

.banner-icon {
    font-size: 4rem;
    flex-shrink: 0;
    color: var(--white);
}

.banner-icon i {
    color: var(--white);
}

.banner-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin: 0;
}

.services-cards-wrapper {
    position: relative;
}

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

.service-card {
    background: var(--white);
    padding: 1.5rem 1.25rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--highlight-color), var(--light-highlight));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

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

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

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--highlight-color);
}

.service-icon i {
    color: var(--highlight-color);
}

.service-card h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.service-features li {
    color: var(--medium-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
}

.service-card-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.02) 0%, rgba(201, 169, 97, 0.05) 100%);
    border: 2px solid var(--highlight-color);
}

.service-card-highlight::before {
    transform: scaleX(1);
    height: 6px;
}

.service-card-highlight .service-features {
    columns: 2;
    column-gap: 2rem;
}

.service-card-golden {
    background: linear-gradient(135deg, var(--highlight-color), var(--light-highlight));
    border: none;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.25);
}

.service-card-golden::before {
    display: block;
    background: var(--white);
    transform: scaleX(0);
    height: 5px;
}

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

.service-card-golden .service-icon {
    color: var(--white);
}

.service-card-golden .service-icon i {
    color: var(--white);
}

.service-card-golden h3 {
    color: var(--white);
}

.service-card-golden p {
    color: rgba(255, 255, 255, 0.95);
}

.service-card-golden:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.35);
}

/* ============================================
   Seminar Gallery Carousel (Center Mode)
   ============================================ */

.seminar-gallery-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    overflow: hidden;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.carousel-wrapper {
    position: relative;
    margin: 4rem auto 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
    touch-action: pan-y pan-x;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    touch-action: pan-y pan-x;
    -webkit-overflow-scrolling: touch;
}

.carousel-slide {
    min-width: 400px;
    max-width: 400px;
    aspect-ratio: 3/4;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    transform: scale(0.85);
    filter: grayscale(50%) brightness(0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: grayscale(0%) brightness(1);
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carousel-btn {
    background: var(--white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    z-index: 10;
    position: relative;
}

.carousel-btn:hover {
    background: var(--highlight-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    padding: 0;
}

.carousel-dot:hover {
    background: var(--medium-gray);
}

.carousel-dot.active {
    background: var(--highlight-color);
    width: 32px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 1200px) {
    .carousel-slide {
        min-width: 350px;
        max-width: 350px;
    }
}

@media (max-width: 968px) {
    .carousel-wrapper {
        gap: 1rem;
    }
    
    .carousel-slide {
        min-width: 300px;
        max-width: 300px;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .carousel-track {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        gap: 0.5rem;
    }
    
    .carousel-slide {
        min-width: 280px;
        max-width: 280px;
    }
    
    .carousel-slide.active {
        transform: scale(0.95);
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .carousel-track {
        gap: 1rem;
    }
    
    .carousel-dots {
        gap: 0.7rem;
        margin-top: 2rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-dot.active {
        width: 28px;
    }
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.testimonials-cards-wrapper {
    position: relative;
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 3rem;
    color: var(--highlight-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--medium-gray);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--highlight-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--medium-gray);
    font-size: 0.85rem;
}

/* ============================================
   Trainer Seminars Section
   ============================================ */

.trainer-seminars-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.trainer-content {
    margin-top: 3rem;
}

.trainer-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
}

.trainer-intro-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.trainer-intro h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.trainer-intro p {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.trainer-seminars-wrapper {
    position: relative;
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: visible;
}

.trainer-seminars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 1200px;
}

/* Single card optimization - when card is directly in wrapper without grid */
.trainer-seminars-wrapper > .trainer-seminar-card {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
}

/* When wrapper contains grid */
.trainer-seminars-wrapper .trainer-seminars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 1200px;
}

.trainer-seminar-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    position: relative;
    border: 2px solid var(--light-gray);
    overflow-wrap: break-word;
    word-wrap: break-word;
    overflow: hidden;
}

.trainer-seminar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--highlight-color);
}

.seminar-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--highlight-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seminar-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--highlight-color);
}

.seminar-icon i {
    color: var(--highlight-color);
}

.trainer-seminar-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.trainer-seminar-card p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.seminar-features {
    list-style: none;
    margin: 2rem 0;
}

.seminar-features li {
    color: var(--medium-gray);
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.6;
}

.seminar-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.seminar-details {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.detail-item {
    color: var(--medium-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.detail-item i {
    color: var(--highlight-color);
    margin-right: 0.5rem;
}

.trainer-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.trainer-cta h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.trainer-cta .btn-primary {
    background: var(--highlight-color);
    color: var(--white);
}

.trainer-cta .btn-primary:hover {
    background: var(--light-highlight);
    transform: translateY(-3px);
}

/* ============================================
   B2B Page Specific Styles
   ============================================ */

.b2b-intro-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.b2b-benefits-wrapper {
    position: relative;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--highlight-color);
}

.benefit-icon i {
    color: var(--highlight-color);
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* B2B Process Section */

.b2b-process-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.process-steps-wrapper {
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--highlight-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.process-step h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* B2B Contact Form Enhancements */

.b2b-contact-section .form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.b2b-contact-section .form-group select:focus {
    outline: none;
    border-color: var(--highlight-color);
    background: rgba(255, 255, 255, 0.15);
}

.b2b-contact-section .form-group select option {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive B2B Styles */

@media (max-width: 968px) {
    .b2b-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* B2B Benefits Carousel Mobile */
    .b2b-benefits-wrapper {
        overflow: hidden;
        position: relative;
    }
    
    .b2b-benefits {
        display: flex;
        gap: 1rem;
        margin-top: 3rem;
        margin-bottom: 0;
        padding: 0 1rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }
    
    .b2b-benefits .benefit-card {
        min-width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .b2b-benefits-wrapper .pricing-carousel-dots {
        display: flex;
    }
    
    /* Process Steps Carousel Mobile */
    .process-steps-wrapper {
        overflow: hidden;
        position: relative;
    }
    
    .process-steps {
        display: flex;
        gap: 1rem;
        margin-top: 3rem;
        margin-bottom: 0;
        padding: 0 1rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }
    
    .process-steps .process-step {
        min-width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .process-steps-wrapper .pricing-carousel-dots {
        display: flex;
    }
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing-section {
    padding: var(--spacing-lg) 0;
    background: var(--white);
    position: relative;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 3rem;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--highlight-color);
}

.b2b-pricing-section {
    background: var(--light-gray);
}

.pricing-category {
    margin-bottom: 5rem;
    margin-top: 3rem;
    position: relative;
    padding: 2.5rem 0;
}

.pricing-category:not(:first-child) {
    padding-top: 5rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-category:not(:first-child)::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--highlight-color);
    z-index: 2;
}

.pricing-category-header {
    margin-bottom: 3rem;
    text-align: center;
}

.pricing-category-title {
    font-size: 1.9rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.pricing-category-subtitle {
    color: var(--medium-gray);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.pricing-cards-wrapper {
    position: relative;
    padding: 1rem 0;
    margin: 1rem 0;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-carousel-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pricing-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    padding: 0;
}

.pricing-carousel-dot:hover {
    background: var(--medium-gray);
}

.pricing-carousel-dot.active {
    background: var(--highlight-color);
    width: 24px;
    border-radius: 4px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--highlight-color);
}

.pricing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.pricing-card-header h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

.pricing-badge {
    background: var(--light-gray);
    color: var(--medium-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Highlight für 3-Monats-Pakete */
.pricing-card-highlight {
    border: 2px solid var(--highlight-color);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.15);
    position: relative;
    background: linear-gradient(to bottom, var(--white) 0%, rgba(201, 169, 97, 0.02) 100%);
}

.pricing-card-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-color) 0%, var(--light-highlight) 100%);
    border-radius: 12px 12px 0 0;
}

.pricing-card-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.25);
    border-color: var(--light-highlight);
}

.pricing-card-highlight .pricing-badge {
    background: linear-gradient(135deg, var(--highlight-color) 0%, var(--light-highlight) 100%);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.pricing-card-highlight .pricing-card-header {
    border-bottom-color: rgba(201, 169, 97, 0.2);
}

.pricing-card-highlight .pricing-card-header h4 {
    color: var(--highlight-color);
}

.pricing-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.pricing-features {
    list-style: none;
    margin: 1rem auto;
    padding: 1rem;
    border-radius: 8px;
    width: fit-content;
    min-height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-features li {
    color: var(--medium-gray);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.4;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
}

.pricing-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin: 1rem 0 0.3rem;
    text-align: center;
}

.pricing-note {
    display: block;
    font-size: 0.75rem;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 0.5rem;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.pricing-option {
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.pricing-option:hover {
    background: rgba(201, 169, 97, 0.05);
    border-color: rgba(201, 169, 97, 0.2);
}

.pricing-option-divider {
    text-align: center;
    color: var(--medium-gray);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    margin: 0.5rem 0;
}

.pricing-option-divider::before,
.pricing-option-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.pricing-option-divider::before {
    left: 0;
}

.pricing-option-divider::after {
    right: 0;
}

.pricing-option .pricing-features {
    margin: 0 0 0.8rem 0;
}

.pricing-option .pricing-price {
    font-size: 1.4rem;
    margin: 0.5rem 0 0;
}

.pricing-card-special {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), rgba(201, 169, 97, 0.03));
    border: 2px solid var(--highlight-color);
}

.pricing-card-special .pricing-card-header {
    border-bottom-color: var(--highlight-color);
}

.pricing-card-special .pricing-badge {
    background: var(--highlight-color);
    color: var(--white);
}

.pricing-legend-compact {
    text-align: center;
    margin-top: 0;
    margin-bottom: 2.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    border: 1px solid var(--light-gray);
}

.pricing-legend-compact p {
    color: var(--medium-gray);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

.pricing-legend-compact strong {
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-info-box {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-left: 3px solid var(--highlight-color);
    border-radius: 8px;
    text-align: center;
}

.pricing-info-box p {
    margin: 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.pricing-info-box strong {
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-includes-box {
    margin-top: 2rem;
    padding: 0;
}

.pricing-includes-note {
    margin: 0 0 1rem 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
}

.pricing-includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.pricing-include-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(201, 169, 97, 0.02) 100%);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.pricing-include-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.15);
    border-color: rgba(201, 169, 97, 0.3);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(201, 169, 97, 0.04) 100%);
}

.pricing-include-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 10px;
}

.pricing-include-content {
    flex: 1;
}

.pricing-include-title {
    margin: 0 0 0.3rem 0;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.pricing-include-description {
    margin: 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Safety Pricing Category - Cool Design */
.pricing-category-safety {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.03) 0%, rgba(26, 26, 26, 0.02) 100%);
    padding: 3.5rem 2.5rem;
    padding-bottom: 4rem;
    border-radius: 16px;
    margin-top: 6rem;
    margin-bottom: 5rem;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(201, 169, 97, 0.12);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.pricing-category-safety::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--highlight-color) 50%, transparent 100%);
    z-index: 1;
    border-radius: 2px;
}

.pricing-category-safety .pricing-category-header::after {
    background: linear-gradient(90deg, transparent 0%, var(--highlight-color) 50%, transparent 100%);
    width: 120px;
    height: 3px;
}

.pricing-category-safety .pricing-category-title {
    position: relative;
    z-index: 1;
}

.pricing-card-safety {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 2px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card-safety::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-color) 0%, rgba(201, 169, 97, 0.8) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.pricing-card-safety:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.25);
    border-color: var(--highlight-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.pricing-card-safety-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    opacity: 0.15;
    z-index: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card-safety:hover .pricing-card-safety-icon {
    opacity: 0.25;
    transform: scale(1.1) rotate(5deg);
}

.pricing-card-safety .pricing-card-header {
    position: relative;
    z-index: 1;
}

.pricing-card-safety .pricing-card-header h4 {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.pricing-badge-safety {
    background: linear-gradient(135deg, var(--highlight-color) 0%, rgba(201, 169, 97, 0.9) 100%);
    color: var(--white);
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.pricing-price-safety {
    background: linear-gradient(135deg, var(--highlight-color) 0%, rgba(201, 169, 97, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-card-safety .pricing-description {
    position: relative;
    z-index: 1;
    font-weight: 500;
    line-height: 1.7;
}

/* Pricing CTA Button */
.pricing-cta-button {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    margin-top: auto;
    background: linear-gradient(135deg, var(--highlight-color) 0%, var(--light-highlight) 100%);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.25);
    letter-spacing: 0.02em;
}

.pricing-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    background: linear-gradient(135deg, var(--light-highlight) 0%, var(--highlight-color) 100%);
}

.pricing-cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.pricing-cta-safety {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.2);
}

.pricing-cta-safety:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.3);
}

.pricing-cta-centered {
    display: block;
    max-width: 300px;
    margin: 2.5rem auto 0;
    text-align: center;
}

/* Responsive Pricing Cards */
@media (max-width: 968px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.2rem;
    }
    
    .pricing-card {
        padding: 1.3rem;
    }
    
    .pricing-category {
        margin-bottom: 3.5rem;
        margin-top: 2rem;
        padding: 2rem 0;
    }
    
    .pricing-category:not(:first-child) {
        padding-top: 3.5rem;
        margin-top: 3.5rem;
    }
    
    .pricing-category-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .pricing-category-title {
        font-size: 1.5rem;
    }
    
    .pricing-category-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .pricing-category-safety {
        padding: 2.5rem 1.5rem;
        padding-bottom: 3rem;
        margin-top: 4rem;
        margin-bottom: 3.5rem;
    }
    
    .pricing-card-safety-icon {
        font-size: 2rem;
        top: 0.8rem;
        right: 0.8rem;
    }
    
    .pricing-price-safety {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: var(--spacing-md) 0;
    }
    
    .pricing-category {
        margin-bottom: 3rem;
        margin-top: 1.5rem;
        padding: 0.5rem 0;
    }
    
    .pricing-cards-wrapper {
        padding: 0.8rem 0;
        margin: 0.8rem 0;
        overflow: hidden;
        position: relative;
        touch-action: pan-y pan-x;
    }
    
    .pricing-cards-grid {
        display: flex;
        gap: 1rem;
        margin-bottom: 0;
        padding: 0 1rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        touch-action: pan-y pan-x;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-card {
        min-width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        flex-shrink: 0;
        padding: 1.2rem;
        scroll-snap-align: start;
    }
    
    .pricing-carousel-dots {
        display: flex;
    }
    
    .pricing-category {
        margin-bottom: 3rem;
        padding: 1.5rem 0;
    }
    
    .pricing-category:not(:first-child) {
        padding-top: 3rem;
        margin-top: 3rem;
    }
    
    .pricing-category-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .pricing-category-title {
        font-size: 1.4rem;
    }
    
    .pricing-category-subtitle {
        font-size: 0.9rem;
    }
    
    .pricing-category-safety {
        padding: 2rem 1rem;
        padding-bottom: 2.5rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    
    .pricing-price {
        font-size: 1.6rem;
    }
    
    .pricing-legend-compact p {
        font-size: 0.8rem;
    }
    
    .pricing-info-box {
        padding: 0.8rem 1rem;
        margin-top: 1rem;
    }
    
    .pricing-info-box p {
        font-size: 0.85rem;
    }
    
    .pricing-includes-box {
        margin-top: 1.5rem;
    }
    
    .pricing-includes-note {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .pricing-includes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-include-item {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .pricing-include-icon {
        font-size: 1.5rem;
        width: 45px;
        height: 45px;
    }
    
    .pricing-include-title {
        font-size: 0.95rem;
    }
    
    .pricing-include-description {
        font-size: 0.85rem;
    }
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.contact-section .section-subtitle,
.contact-section .section-title,
.contact-section .section-description {
    color: var(--white);
}

.contact-section .section-subtitle {
    color: var(--highlight-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--highlight-color);
    margin-top: 0.2rem;
}

.contact-icon i {
    color: var(--highlight-color);
}

.contact-details h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.9);
}

/* Verhindert, dass Telefonnummern als Links angezeigt werden */
.contact-details p,
.contact-details p a,
.contact-details a[href^="tel:"] {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    pointer-events: none;
    cursor: default;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-color);
    background: rgba(255, 255, 255, 0.15);
}

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

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--highlight-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-primary);
}

.submit-button:hover {
    background: var(--light-highlight);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
}

/* ============================================
   Footer
   ============================================ */

.main-footer {
    background: var(--primary-color);
    padding: 3rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.footer-brand h3:hover {
    transform: translateY(-1px);
    letter-spacing: 1.2px;
}

.footer-brand h3 span {
    color: var(--highlight-color);
    font-weight: 200;
    letter-spacing: 0;
}

.footer-brand p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--highlight-color);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--highlight-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 968px) {
    .hero-content {
        max-width: 100%;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .trainer-seminars-grid {
        grid-template-columns: 1fr;
    }
    
    .initial-consultation-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .banner-icon {
        font-size: 3rem;
    }
    
    .service-card-highlight .service-features {
        columns: 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Menu Styles */
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        z-index: 999;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        list-style: none;
        margin: 0;
    }
    
    .nav-menu.menu-open {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
        margin: 0;
        padding: 0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
        margin-top: 1rem;
    }
    
    .nav-menu a {
        display: block;
        padding: 1.2rem 0;
        font-size: 1.1rem;
        color: var(--dark-gray);
        text-decoration: none;
        transition: var(--transition-smooth);
        width: 100%;
        position: relative;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a:focus {
        color: var(--highlight-color);
        padding-left: 1rem;
    }
    
    .nav-menu .cta-button {
        background: var(--highlight-color);
        color: var(--white) !important;
        padding: 1rem 2rem;
        border-radius: 50px;
        text-align: center;
        margin-top: 1rem;
        width: 100%;
    }
    
    .nav-menu .cta-button:hover {
        background: var(--light-highlight);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
        padding-left: 2rem;
    }

}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    /* Mobile Menu Adjustments */
    .nav-menu {
        max-width: 100%;
        padding: 6rem 1.5rem 2rem;
    }
    
    .nav-menu a {
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        position: relative;
        z-index: 1001;
    }
    
    .hamburger-icon {
        width: 20px;
        height: 16px;
    }
    
    /* Ensure toggle button stays visible when menu is open */
    .main-navigation .mobile-menu-toggle {
        z-index: 1001;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        gap: 0.3rem;
    }
    
    .hero-title-line {
        font-size: 2.2rem;
    }
    
    .hero-title-highlight {
        font-size: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        font-weight: 200;
        letter-spacing: -0.02em;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero-heading-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .hero-text-wrapper {
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .hero-stat {
        padding: 0.8rem 1rem;
        flex: 1;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
    
    .hero-trust {
        margin-top: 1.5rem;
    }
    
    .hero-trust p {
        font-size: 0.85rem;
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(26, 26, 26, 0.88) 0%,
            rgba(42, 42, 42, 0.78) 50%,
            rgba(26, 26, 26, 0.88) 100%
        );
    }
    
    .personal-intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .personal-intro-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        letter-spacing: 2px;
        padding-bottom: 0.5rem;
    }
    
    .section-subtitle::after {
        width: 50px;
        height: 2px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    
    .values-list {
        justify-content: center;
    }
    
    .trainer-intro {
        padding: 1.5rem;
    }
    
    .trainer-intro-icon {
        font-size: 3rem;
    }
    
    .trainer-intro h3 {
        font-size: 1.5rem;
    }
    
    .trainer-seminar-card {
        padding: 2rem;
    }
    
    /* Trainer Seminars Carousel Mobile */
    .trainer-seminars-wrapper {
        overflow: hidden;
        position: relative;
    }
    
    .trainer-seminars-wrapper > .trainer-seminar-card {
        max-width: 100%;
        margin: 0;
        padding: 2rem 1.5rem;
    }
    
    .trainer-seminars-grid {
        display: flex;
        gap: 1rem;
        margin-bottom: 0;
        padding: 0 1rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }
    
    .trainer-seminars-grid .trainer-seminar-card {
        min-width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .trainer-seminars-wrapper .pricing-carousel-dots {
        display: flex;
    }
    
    .trainer-cta {
        padding: 2rem;
    }
    
    .trainer-cta h3 {
        font-size: 1.5rem;
    }
    
    /* Services Carousel Mobile */
    .services-cards-wrapper {
        overflow: hidden;
        position: relative;
        touch-action: pan-y pan-x;
    }
    
    .services-grid {
        display: flex;
        gap: 1rem;
        margin-top: 3rem;
        padding: 0 1rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        touch-action: pan-y pan-x;
        -webkit-overflow-scrolling: touch;
    }
    
    .services-grid .service-card {
        min-width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .services-cards-wrapper .pricing-carousel-dots {
        display: flex;
    }
    
    /* Testimonials Carousel Mobile */
    .testimonials-cards-wrapper {
        overflow: hidden;
        position: relative;
        touch-action: pan-y pan-x;
    }
    
    .testimonials-grid {
        display: flex;
        gap: 1rem;
        margin-top: 3rem;
        padding: 0 1rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        touch-action: pan-y pan-x;
        -webkit-overflow-scrolling: touch;
    }
    
    .testimonials-grid .testimonial-card {
        min-width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .testimonials-cards-wrapper .pricing-carousel-dots {
        display: flex;
    }
    
    /* Stats Carousel Mobile */
    .stats-cards-wrapper {
        overflow: hidden;
        position: relative;
        touch-action: pan-y pan-x;
    }
    
    .stats-grid {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 1rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        touch-action: pan-y pan-x;
        -webkit-overflow-scrolling: touch;
    }
    
    .stats-grid .stat-item {
        min-width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .stats-cards-wrapper .pricing-carousel-dots {
        display: flex;
    }
}

/* ============================================
   Legal Pages (Datenschutz & Impressum)
   ============================================ */

.legal-page-section {
    padding: 8rem 0 6rem;
    background: var(--white);
    min-height: 80vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--highlight-color);
    font-family: var(--font-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.legal-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    list-style-type: disc;
}

.legal-section li {
    margin-bottom: 0.75rem;
    color: var(--medium-gray);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.legal-section a {
    color: var(--highlight-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.legal-section a:hover {
    color: var(--light-highlight);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-page-section {
        padding: 6rem 0 4rem;
    }
    
    .legal-content {
        padding: 0 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .legal-content h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
    }
    
    .legal-content h3 {
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
    }
    
    .legal-section {
        margin-bottom: 2rem;
    }
    
    .legal-section p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.7;
    }
    
    .legal-section li {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.6;
    }
    
    .legal-section strong {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* ============================================
   Scroll to Top Button (Mobile Only)
   ============================================ */

.scroll-to-top-btn {
    display: none; /* Hidden by default, shown via JavaScript on mobile */
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--highlight-color) 0%, var(--light-highlight) 100%);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
}

.scroll-to-top-btn.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, var(--light-highlight) 0%, var(--highlight-color) 100%);
    box-shadow: 0 6px 30px rgba(201, 169, 97, 0.6);
    transform: translateY(-4px) scale(1.05);
}

.scroll-to-top-btn:active {
    transform: translateY(-2px) scale(0.95);
    box-shadow: 0 2px 15px rgba(201, 169, 97, 0.5);
}

.scroll-to-top-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Only show on mobile devices */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Hide on desktop */
@media (min-width: 769px) {
    .scroll-to-top-btn {
        display: none !important;
    }
}


