/*
Theme Name: Eventtorent
Description: Professionelles WordPress-Theme für Eventlocations mit Kalkulator, FAQ und Blog-Funktionalität
Author: Manus AI
Version: 1.0
Text Domain: eventtorent
*/




/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif; /* Modern font */
    color: #1F2937; /* Anthrazit */
    background-color: #F9FAFB; /* Hellgrau */
    line-height: 1.6;
    padding-top: 80px; /* Compensate for fixed header */
}

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

/* ========================================
   NAVIGATION STYLES (ORIGINAL STICKY)
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-navigation {
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-container.centered-nav {
    justify-content: center;
}

/* Remove logo styles - no longer needed */

/* Desktop Navigation - Centered */
.desktop-navigation {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: #1F2937;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #F97316;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #F97316;
    transform: translateY(-2px);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #F97316, #FDBA74);
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* Mobile Navigation */
.mobile-navigation {
    display: none;
    align-items: center;
    gap: 15px;
}

.mobile-cta-button {
    background: linear-gradient(135deg, #F97316, #FDBA74);
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mobile-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* Hamburger Menu */
.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background-color: rgba(249, 115, 22, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #1F2937;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    padding: 30px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2em;
    color: #1F2937;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

.mobile-nav-menu {
    list-style: none;
    margin: 60px 0 0 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 5px;
}

.mobile-nav-link {
    display: block;
    color: #1F2937;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: rgba(249, 115, 22, 0.1);
    color: #F97316;
    transform: translateX(5px);
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .desktop-navigation {
        display: none;
    }
    
    .mobile-navigation {
        display: flex;
    }
    
    .nav-container.centered-nav {
        justify-content: center;
    }
    
    .main-navigation {
        padding: 12px 0;
    }
}

/* Body padding for sticky header */
body {
    padding-top: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #1F2937; /* Anthrazit */

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* White background hero variant */
.hero-white-bg {
    background: #fff !important;
    background-image: none !important;
}

.hero-white-bg .hero-overlay {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
}

.hero-button-center {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

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

/* Buttons */
.button {
    display: inline-block;
    padding: 16px 35px;
    background-color: #F97316; /* Primär: Orange */
    color: #1F2937; /* Anthrazit */
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.3em;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.button:hover {
    background-color: #EA580C; /* Dunkleres Orange */
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.6);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-light {
    background-color: #F9FAFB; /* Hellgrau */
}

.section-dark {
    background-color: #F9FAFB; /* Hellgrau */
    color: #1F2937; /* Anthrazit */
}

.section-dark .section-title {
    color: #F97316; /* Primär: Orange */
}

.section-dark .section-subtitle {
    color: #1F2937; /* Anthrazit */
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3.5em;
    color: #F97316; /* Primär: Orange */
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

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

.section-subtitle {
    font-size: 1.4em;
    color: #1F2937; /* Anthrazit */
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.85;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 40px;
}

.grid.lg\\:grid-cols-2 {
    grid-template-columns: 1fr;
}

.grid.md\\:grid-cols-2 {
    grid-template-columns: 1fr;
}

.grid.lg\\:grid-cols-4 {
    grid-template-columns: 1fr;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Cards */
.card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(249, 115, 22, 0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.card-icon {
    color: #F97316; /* Primär: Orange */
    font-size: 4em;
    margin-bottom: 25px;
    display: block;
}

.card-title {
    font-size: 1.8em;
    color: #1F2937; /* Anthrazit */
    margin-bottom: 18px;
    font-weight: 700;
}

.card-description {
    color: #1F2937; /* Anthrazit */
    line-height: 1.7;
}

.card ul {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.card ul li {
    padding: 8px 0;
    color: #1F2937; /* Anthrazit */
    border-bottom: 1px dashed #F3F4F6; /* Hellgrau */
}

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

/* Image Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1F2937;
    font-size: 1.1em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px;
    border: 2px solid #F3F4F6; /* Hellgrau */
    border-radius: 10px;
    font-size: 1.1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #F97316; /* Primär: Orange */
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2);
}

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

.submit-button {
    width: 100%;
    padding: 20px;
    background-color: #F97316; /* Primär: Orange */
    color: #1F2937; /* Anthrazit */;
    border: none;
    border-radius: 10px;
    font-size: 1.4em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.submit-button:hover {
    background-color: #EA580C; /* Dunkleres Orange */
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.6);
}

/* Footer */
.site-footer {
    background-color: #F97316; /* Primär: Orange */
    color: #1F2937; /* Anthrazit */;
    padding: 70px 0 30px 0;
}

.site-footer h3 {
    font-size: 1.6em;
    margin-bottom: 25px;
    font-weight: 700;
}

.site-footer ul {
    list-style: none;
}

.site-footer ul li {
    margin-bottom: 10px;
}

.site-footer a {
    color: #1F2937; /* Anthrazit */
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #1F2937; /* Anthrazit */
}

.footer-copyright {
    margin-top: 40px;
    font-size: 1em;
    opacity: 0.8;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.text-lg {
    font-size: 1.2em;
}

.text-xl {
    font-size: 1.3em;
}

.text-2xl {
    font-size: 1.6em;
}

.text-3xl {
    font-size: 2em;
}

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

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

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

/* Price Calculator Specific Styles */
.price-calculator-section {
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

.price-calculator-section .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.price-calculator-section .form-group label {
    font-size: 1em;
    margin-bottom: 8px;
}

.price-calculator-section .form-group input[type="text"],
.price-calculator-section .form-group input[type="number"],
.price-calculator-section .form-group select {
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 1em;
}

.price-calculator-section .form-group input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: #F3F4F6;
    outline: none;
    border-radius: 5px;
    transition: opacity .2s;
}

.price-calculator-section .form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #F97316; /* Primär: Orange */
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(249, 115, 22, 0.4);
}

.price-calculator-section .form-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #F97316; /* Primär: Orange */
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(249, 115, 22, 0.4);
}

.price-calculator-section .item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.price-calculator-section .item-group.card {
    padding: 25px;
    text-align: left;
    position: relative;
    cursor: pointer;
    border: 2px solid #F3F4F6; /* Hellgrau */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.price-calculator-section .item-group.card:hover {
    border-color: rgba(249, 115, 22, 0.5); /* Leichter Orange-Rand beim Hover */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.price-calculator-section .item-group.card.selected {
    border-color: #F97316; /* Primär: Orange */
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.price-calculator-section .item-checkbox {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 2;
}

.price-calculator-section .item-label {
    display: block;
    cursor: pointer;
    padding-right: 30px; /* Space for checkbox */
}

.price-calculator-section .item-name {
    font-weight: 700;
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

.price-calculator-section .item-description {
    font-size: 0.9em;
    color: #6B7280; /* Dunkleres Grau für Beschreibung */
    margin-bottom: 10px;
}

.price-calculator-section .item-price {
    font-weight: 700;
    color: #F97316; /* Primär: Orange */
    font-size: 1.1em;
}

.price-calculator-section .item-quantity {
    margin-top: 15px;
}

.price-calculator-section .item-quantity label {
    font-size: 0.9em;
    margin-bottom: 5px;
}

.price-calculator-section .item-quantity input[type="number"] {
    width: 100px;
    padding: 8px 10px;
    border-radius: 5px;
    border: 1px solid #D1D5DB;
}

.price-calculator-section .summary-section {
    background-color: #F3F4F6; /* Hellgrau */
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
}

.price-calculator-section .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #E5E7EB;
}

.price-calculator-section .summary-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2em;
    color: #1F2937;
}

.price-calculator-section .summary-row.total span {
    color: #F97316; /* Primär: Orange */
}

.price-calculator-section #send-inquiry-button {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding: 15px 30px;
    font-size: 1.1em;
}

/* Ensure the event area card is always selected and styled */
#event-area-card.item-group.card {
    border-color: #F97316; /* Primär: Orange */
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

#event-area-card .item-checkbox {
    display: none; /* Hide checkbox for event area */
}

#event-area-card .item-label {
    padding-right: 0; /* No space needed for checkbox */
}

/* Responsive adjustments for item-grid */
@media (max-width: 1024px) {
    .price-calculator-section .item-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .price-calculator-section .item-grid {
        grid-template-columns: 1fr;
    }
    .price-calculator-section .form-grid {
        grid-template-columns: 1fr;
    }
}





/* New Categorized Price Calculator Styles */
.category-section {
    margin-bottom: 2rem;
}

.category-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #F97316;
    display: inline-block;
}

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

.item-card {
    background: #fff;
    border: 2px solid #F3F4F6;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.item-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.item-card.selected {
    border-color: #F97316;
    background-color: #FFF7ED;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.item-card .item-checkbox {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #F97316;
}

.item-card .item-content {
    padding-right: 2rem;
}

.item-card .item-name {
    font-size: 1.1em;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.item-card .item-description {
    font-size: 0.9em;
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.item-card .item-price {
    font-size: 1.2em;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 1rem;
}

.item-card .item-quantity {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #F3F4F6;
}

.item-card .item-quantity label {
    font-size: 0.9em;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
    display: block;
}

.item-card .item-quantity input[type="number"] {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 0.9em;
    text-align: center;
}

.item-card .quantity-info {
    display: block;
    font-size: 0.8em;
    color: #6B7280;
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Summary section improvements */
.summary-section {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #F3F4F6;
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
    font-size: 1em;
}

.summary-row:last-child {
    border-bottom: none;
    font-size: 1.3em;
    font-weight: 700;
    color: #1F2937;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid #F97316;
}

.summary-row.total span {
    color: #F97316;
}

/* Submit section with more spacing */
.submit-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

.submit-section .button {
    padding: 1rem 2.5rem;
    font-size: 1.1em;
    font-weight: 700;
    background-color: #F97316;
    color: #1F2937;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.submit-section .button:hover {
    background-color: #EA580C;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.6);
}

/* Responsive adjustments for new layout */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
    }
    
    .item-card {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .item-card .item-content {
        padding-right: 1.5rem;
    }
    
    .summary-section {
        padding: 1.5rem;
    }
    
    .submit-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

/* Form grid improvements for more compact layout */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    font-size: 0.9em;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
    display: block;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 0.9em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}


/* Compact Footer Styles */
.site-footer {
    background-color: #F97316;
    color: #1F2937;
    padding: 3rem 0 1.5rem 0;
}

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

.footer-section h3 {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1F2937;
}

.footer-section p {
    font-size: 0.9em;
    line-height: 1.5;
    color: #1F2937;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    font-size: 0.9em;
    color: #1F2937;
    opacity: 0.9;
}

.footer-section ul li a {
    color: #1F2937;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(31, 41, 55, 0.2);
    font-size: 0.9em;
    color: #1F2937;
    opacity: 0.8;
}

.footer-copyright p {
    margin: 0;
}

/* Responsive footer adjustments */
@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
}


/* Auto-calculation styles */
.auto-calculation {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #F3F4F6;
}

.calculation-info {
    display: block;
    font-size: 0.85em;
    color: #6B7280;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.calculation-info span {
    font-weight: 600;
    color: #F97316;
}

.auto-calculation .quantity-info {
    display: block;
    font-size: 0.9em;
    color: #1F2937;
    font-weight: 600;
}

.auto-calculation .quantity-info span {
    color: #F97316;
    font-weight: 700;
}

/* Hide quantity inputs for auto-calculated items */
.item-card .auto-calculation .item-quantity {
    display: none;
}

/* Ensure manual quantity inputs still show for service items */
.item-card .item-quantity {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #F3F4F6;
}

.item-card .item-quantity label {
    font-size: 0.9em;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
    display: block;
}

.item-card .item-quantity input[type="number"] {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 0.9em;
    text-align: center;
    margin-bottom: 0.5rem;
}

.item-card .item-quantity .quantity-info {
    display: block;
    font-size: 0.9em;
    color: #1F2937;
    font-weight: 600;
}

.item-card .item-quantity .quantity-info span {
    color: #F97316;
    font-weight: 700;
}


/* ========================================
   MOBILE RESPONSIVE DESIGN OPTIMIZATIONS
   ======================================== */

/* Mobile-first approach with enhanced breakpoints */
@media (max-width: 480px) {
    /* Extra small devices (phones) */
    
    /* Header optimizations */
    .site-header {
        padding: 0;
    }
    
    .main-navigation .container {
        flex-direction: column;
        padding: 10px 15px;
        gap: 15px;
    }
    
    .site-title a {
        font-size: 1.5em;
    }
    
    .main-navigation-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .main-navigation-menu a {
        font-size: 0.9em;
        padding: 8px 12px;
        background-color: #F97316;
        color: #1F2937;
        border-radius: 20px;
        transition: all 0.3s ease;
    }
    
    .main-navigation-menu a:hover {
        background-color: #EA580C;
        color: #fff;
    }
    
    /* Section adjustments */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8em;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1em;
        padding: 0 10px;
    }
    
    /* Price calculator mobile optimization */
    .price-calculator-section {
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .text-2xl {
        font-size: 1.4em;
    }
    
    /* Form grid mobile layout */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group .flex {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-group .w-1\/4,
    .form-group .w-3\/4 {
        width: 100%;
    }
    
    /* Category sections mobile */
    .category-title {
        font-size: 1.2em;
        text-align: center;
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Item cards mobile optimization */
    .item-card {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .item-card .item-content {
        padding-right: 2.5rem;
    }
    
    .item-card .item-checkbox {
        width: 24px;
        height: 24px;
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .item-card .item-name {
        font-size: 1em;
        line-height: 1.2;
    }
    
    .item-card .item-description {
        font-size: 0.85em;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .item-card .item-price {
        font-size: 1.1em;
        margin-bottom: 0.75rem;
    }
    
    /* Auto-calculation mobile */
    .calculation-info {
        font-size: 0.8em;
        text-align: center;
    }
    
    .auto-calculation .quantity-info,
    .item-quantity .quantity-info {
        font-size: 0.85em;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    /* Manual quantity inputs mobile */
    .item-quantity input[type="number"] {
        width: 100px;
        padding: 0.75rem;
        font-size: 1em;
        text-align: center;
    }
    
    /* Summary section mobile */
    .summary-section {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }
    
    .summary-row {
        font-size: 0.95em;
        padding: 0.75rem 0;
    }
    
    .summary-row:last-child {
        font-size: 1.2em;
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    /* Submit section mobile */
    .submit-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .submit-section .button {
        width: 100%;
        padding: 1rem;
        font-size: 1.1em;
        border-radius: 12px;
    }
    
    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1em;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p,
    .footer-section ul li {
        font-size: 0.85em;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    /* Small devices (tablets) */
    
    .main-navigation .container {
        padding: 12px 20px;
    }
    
    .site-title a {
        font-size: 1.8em;
    }
    
    .main-navigation-menu ul {
        gap: 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2em;
    }
    
    .price-calculator-section {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .item-card {
        padding: 1.25rem;
    }
    
    .summary-section {
        padding: 1.75rem;
    }
    
    .submit-section .button {
        width: auto;
        min-width: 200px;
        padding: 1rem 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Medium devices (small laptops, large tablets) */
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1025px) {
    /* Large devices (desktops) */
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Touch-friendly enhancements for all mobile devices */
@media (hover: none) and (pointer: coarse) {
    /* Touch devices */
    
    .item-card {
        cursor: default;
    }
    
    .item-card:hover {
        transform: none;
    }
    
    .item-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .button:hover {
        transform: none;
    }
    
    .button:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    .item-checkbox {
        min-width: 44px;
        min-height: 44px;
    }
    
    input[type="range"] {
        height: 12px;
    }
    
    input[type="range"]::-webkit-slider-thumb {
        width: 28px;
        height: 28px;
    }
    
    input[type="range"]::-moz-range-thumb {
        width: 28px;
        height: 28px;
    }
}

/* High DPI displays optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .item-card {
        border-width: 1px;
    }
    
    .category-title {
        border-bottom-width: 1px;
    }
    
    .summary-row {
        border-bottom-width: 1px;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .main-navigation .container {
        flex-direction: row;
        justify-content: space-between;
        padding: 8px 15px;
    }
    
    .main-navigation-menu ul {
        gap: 10px;
    }
    
    .main-navigation-menu a {
        padding: 6px 10px;
        font-size: 0.85em;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .price-calculator-section {
        padding: 20px 15px;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Print styles */
@media print {
    .site-header,
    .submit-section {
        display: none;
    }
    
    .price-calculator-section {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .item-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .summary-section {
        border: 2px solid #333;
        background-color: #f9f9f9 !important;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support (if user prefers) */
@media (prefers-color-scheme: dark) {
    /* Keep the original light theme as requested, but ensure good contrast */
    .item-card .item-description {
        color: #6B7280;
    }
    
    .calculation-info {
        color: #6B7280;
    }
}

/* Focus improvements for keyboard navigation */
.item-checkbox:focus,
input:focus,
select:focus,
.button:focus {
    outline: 3px solid #F97316;
    outline-offset: 2px;
}

/* Ensure text remains readable on all devices */
@media (max-width: 480px) {
    body {
        font-size: 16px; /* Prevent zoom on iOS */
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    input, select, textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}


/* ========================================
   MOBILE HAMBURGER MENU STYLES
   ======================================== */

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #F97316;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Mobile menu toggle animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Show mobile menu toggle on small screens */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation .container {
        position: relative;
    }
    
    .main-navigation-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 15px 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
    }
    
    .main-navigation-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: 400px;
    }
    
    .main-navigation-menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .main-navigation-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #F3F4F6;
    }
    
    .main-navigation-menu li:last-child {
        border-bottom: none;
    }
    
    .main-navigation-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 1em;
        font-weight: 600;
        color: #1F2937;
        text-decoration: none;
        border-radius: 8px;
        margin: 5px 0;
        transition: all 0.3s ease;
        background-color: transparent;
    }
    
    .main-navigation-menu a:hover,
    .main-navigation-menu a:focus {
        background-color: #F97316;
        color: #fff;
        transform: translateX(5px);
    }
}

/* Ensure menu is visible on larger screens */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .main-navigation-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        position: static !important;
        background: none !important;
        box-shadow: none !important;
        max-height: none !important;
    }
    
    .main-navigation-menu ul {
        flex-direction: row !important;
        padding: 0 !important;
    }
    
    .main-navigation-menu a {
        background-color: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }
    
    .main-navigation-menu a:hover {
        background-color: transparent !important;
        transform: none !important;
    }
}

/* Overlay for mobile menu */
@media (max-width: 768px) {
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Prevent body scroll when menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
}

/* Enhanced touch targets for mobile */
@media (max-width: 768px) {
    .main-navigation-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.mobile-menu-toggle:focus {
    outline: 2px solid #F97316;
    outline-offset: 2px;
}

.main-navigation-menu a:focus {
    outline: 2px solid #F97316;
    outline-offset: 2px;
}


/* ========================================
   COMPACT CALCULATOR STYLES
   ======================================== */

/* Make price calculator more compact */
.price-calculator-section {
    padding: 25px 30px !important;
}

.text-2xl {
    font-size: 1.4em !important;
    margin-bottom: 1rem !important;
}

.form-grid {
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
}

.category-section {
    margin-bottom: 1.5rem !important;
}

.category-title {
    font-size: 1.2em !important;
    margin-bottom: 0.75rem !important;
    padding-bottom: 0.25rem !important;
}

.category-grid {
    gap: 1rem !important;
}

.item-card {
    padding: 1rem !important;
    border-radius: 8px !important;
}

.item-card .item-content {
    padding-right: 1.75rem !important;
}

.item-card .item-name {
    font-size: 1em !important;
    margin-bottom: 0.25rem !important;
    line-height: 1.2 !important;
}

.item-card .item-description {
    font-size: 0.8em !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
}

.item-card .item-price {
    font-size: 1.1em !important;
    margin-bottom: 0.75rem !important;
}

.auto-calculation {
    margin-top: 0.75rem !important;
    padding-top: 0.75rem !important;
}

.calculation-info {
    font-size: 0.75em !important;
    margin-bottom: 0.25rem !important;
}

.auto-calculation .quantity-info,
.item-quantity .quantity-info {
    font-size: 0.8em !important;
}

.item-quantity {
    margin-top: 0.75rem !important;
    padding-top: 0.75rem !important;
}

.item-quantity label {
    font-size: 0.8em !important;
    margin-bottom: 0.25rem !important;
}

.item-quantity input[type="number"] {
    width: 70px !important;
    padding: 0.4rem !important;
    font-size: 0.85em !important;
}

.summary-section {
    padding: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.summary-row {
    padding: 0.5rem 0 !important;
    font-size: 0.9em !important;
}

.summary-row:last-child {
    font-size: 1.1em !important;
    padding-top: 0.75rem !important;
    margin-top: 0.5rem !important;
}

.submit-section {
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
}

.submit-section .button {
    padding: 0.75rem 2rem !important;
    font-size: 1em !important;
}

/* Mobile compact adjustments */
@media (max-width: 480px) {
    .price-calculator-section {
        padding: 15px 12px !important;
        margin: 0 5px !important;
    }
    
    .text-2xl {
        font-size: 1.2em !important;
    }
    
    .form-grid {
        gap: 0.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .category-section {
        margin-bottom: 1rem !important;
    }
    
    .category-title {
        font-size: 1.1em !important;
        margin-bottom: 0.5rem !important;
    }
    
    .category-grid {
        gap: 0.75rem !important;
    }
    
    .item-card {
        padding: 0.75rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .item-card .item-content {
        padding-right: 2rem !important;
    }
    
    .item-card .item-checkbox {
        width: 20px !important;
        height: 20px !important;
        top: 0.5rem !important;
        right: 0.5rem !important;
    }
    
    .item-card .item-name {
        font-size: 0.9em !important;
        line-height: 1.1 !important;
    }
    
    .item-card .item-description {
        font-size: 0.75em !important;
        line-height: 1.2 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .item-card .item-price {
        font-size: 1em !important;
        margin-bottom: 0.5rem !important;
    }
    
    .auto-calculation {
        margin-top: 0.5rem !important;
        padding-top: 0.5rem !important;
    }
    
    .calculation-info {
        font-size: 0.7em !important;
        text-align: center !important;
    }
    
    .auto-calculation .quantity-info,
    .item-quantity .quantity-info {
        font-size: 0.75em !important;
        text-align: center !important;
        margin-top: 0.25rem !important;
    }
    
    .item-quantity {
        margin-top: 0.5rem !important;
        padding-top: 0.5rem !important;
    }
    
    .item-quantity input[type="number"] {
        width: 80px !important;
        padding: 0.5rem !important;
        font-size: 0.9em !important;
    }
    
    .summary-section {
        padding: 1rem 0.75rem !important;
        margin: 1rem 0 !important;
    }
    
    .summary-row {
        font-size: 0.85em !important;
        padding: 0.5rem 0 !important;
    }
    
    .summary-row:last-child {
        font-size: 1em !important;
        margin-top: 0.5rem !important;
        padding-top: 0.75rem !important;
    }
    
    .submit-section {
        margin-top: 1.5rem !important;
        padding-top: 1rem !important;
    }
    
    .submit-section .button {
        width: 100% !important;
        padding: 0.75rem !important;
        font-size: 1em !important;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .price-calculator-section {
        padding: 20px 15px !important;
        margin: 0 10px !important;
    }
    
    .item-card {
        padding: 0.9rem !important;
    }
    
    .summary-section {
        padding: 1.25rem !important;
    }
    
    .submit-section .button {
        width: auto !important;
        min-width: 180px !important;
        padding: 0.75rem 1.5rem !important;
    }
}


/* ========================================
   ENHANCED GALLERY WITH LIGHTBOX STYLES
   ======================================== */

/* Gallery Grid - More images, smaller display */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    color: white;
    font-size: 2em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #F97316;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(249, 115, 22, 0.8);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #F97316;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 1.1em;
    font-weight: 500;
}

.lightbox-counter {
    color: #F97316;
    text-align: center;
    margin-top: 10px;
    font-size: 0.9em;
    font-weight: 600;
}

/* Lightbox animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-content {
    animation: slideIn 0.3s ease;
}

/* Mobile responsive adjustments for gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 18px;
        padding: 10px 15px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    #lightbox-image {
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .gallery-zoom {
        font-size: 1.5em;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 16px;
        padding: 8px 12px;
        top: 45%;
    }
    
    .lightbox-caption {
        font-size: 0.9em;
        margin-top: 15px;
        padding: 0 20px;
    }
}


/* ========================================
   TEAM SECTION STYLES
   ======================================== */

.team-section {
    margin-top: 60px;
}

.team-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #1F2937;
    text-align: center;
    margin-bottom: 20px;
}

.team-subtitle {
    font-size: 1.1em;
    color: #6B7280;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #F97316;
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.2);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .team-photo img {
    transform: scale(1.1);
}

.team-name {
    font-size: 1.3em;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 5px;
}

.team-role {
    font-size: 1em;
    font-weight: 600;
    color: #F97316;
    margin-bottom: 0;
}

.team-description {
    display: none; /* Hide descriptions for compact layout */
}

/* Mobile responsive adjustments for team section */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 600px;
    }
    
    .team-member {
        padding: 25px 20px;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
    
    .team-title {
        font-size: 2em;
    }
    
    .team-subtitle {
        font-size: 1em;
        margin-bottom: 40px;
    }
    
    .team-name {
        font-size: 1.3em;
    }
    
    .team-role {
        font-size: 1em;
    }
    
    .team-description {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .team-section {
        margin-top: 40px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
    }
    
    .team-member {
        padding: 20px 15px;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }
    
    .team-title {
        font-size: 1.8em;
    }
    
    .team-name {
        font-size: 1.2em;
    }
}



/* ========================================
   PARTNERS SECTION STYLES
   ======================================== */

.section-white {
    background-color: #fff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 120px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Mobile responsive adjustments for partners section */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .partner-logo {
        padding: 15px;
        min-height: 100px;
    }
    
    .partner-logo img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partner-logo {
        padding: 20px;
        min-height: 80px;
    }
}


/* ========================================
   COMPACT CONTACT FORM STYLES
   ======================================== */

.contact-info-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #1F2937; /* Dunkle Schrift für bessere Lesbarkeit */
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #374151; /* Dunkle Schrift für bessere Lesbarkeit */
}

.contact-icon {
    font-size: 1.2em;
    margin-right: 12px;
    width: 20px;
}

.opening-hours-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #1F2937; /* Dunkle Schrift für bessere Lesbarkeit */
    margin-bottom: 15px;
}

.opening-hours-list {
    color: #374151; /* Dunkle Schrift für bessere Lesbarkeit */
    line-height: 1.6;
}

.opening-hours-list div {
    margin-bottom: 5px;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95); /* Heller Hintergrund für dunkle Schrift */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #1F2937; /* Dunkle Schrift für bessere Lesbarkeit */
    margin-bottom: 10px;
}

.form-description {
    color: #6B7280; /* Grau für bessere Lesbarkeit */
    margin-bottom: 25px;
    font-size: 0.95em;
}

.compact-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.compact-contact-form .form-group {
    margin-bottom: 0;
}

.compact-contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #1F2937; /* Dunkle Schrift für bessere Lesbarkeit */
    font-weight: 500;
    font-size: 0.9em;
}

.compact-contact-form input,
.compact-contact-form select,
.compact-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    background: #FFFFFF;
    color: #1F2937; /* Dunkle Schrift für bessere Lesbarkeit */
    font-size: 0.95em;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.compact-contact-form input::placeholder,
.compact-contact-form textarea::placeholder {
    color: #9CA3AF; /* Grauer Placeholder für bessere Lesbarkeit */
}

.compact-contact-form input:focus,
.compact-contact-form select:focus,
.compact-contact-form textarea:focus {
    outline: none;
    border-color: #F97316;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.compact-contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.compact-contact-form .submit-button {
    background: linear-gradient(135deg, #F97316, #FDBA74);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}

.compact-contact-form .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

/* Mobile responsive adjustments for compact contact form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-card {
        padding: 25px 20px;
    }
    
    .compact-contact-form {
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .contact-form-card {
        padding: 20px 15px;
    }
    
    .form-title {
        font-size: 1.3em;
    }
    
    .contact-info-title {
        font-size: 1.3em;
    }
}


/* ========================================
   HERO FEATURES STYLES
   ======================================== */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 35px 0 45px 0;
    font-size: 1em;
}

.hero-features span {
    background: #F97316;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
    font-size: 0.95em;
    letter-spacing: 0.3px;
    min-width: 200px;
    text-align: center;
}

.hero-features span:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    background: #EA580C;
}

/* All features same size - no individual sizing */
.hero-features span:nth-child(1),
.hero-features span:nth-child(2),
.hero-features span:nth-child(3) {
    padding: 12px 24px;
    font-size: 0.95em;
    font-weight: 600;
}

/* Better hero content centering */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    animation: fadeInUp 1s ease-out;
    text-align: center;
}

.hero-title {
    font-size: 4.2em;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
    color: #1F2937;
    letter-spacing: -0.02em;
}

.hero-slogan {
    font-size: 1.6em;
    margin-bottom: 40px;
    opacity: 0.85;
    font-weight: 400;
    color: #6B7280;
    letter-spacing: 0.5px;
}

/* Mobile responsive adjustments for hero features */
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 25px 0 35px 0;
    }
    
    .hero-features span {
        font-size: 0.9em !important;
        padding: 10px 20px !important;
        min-width: 250px;
    }
    
    .hero-title {
        font-size: 3.2em;
    }
    
    .hero-slogan {
        font-size: 1.3em;
    }
    
    .hero-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-features {
        margin: 20px 0 30px 0;
        gap: 12px;
    }
    
    .hero-features span {
        font-size: 0.85em !important;
        padding: 8px 16px !important;
        min-width: 220px;
    }
    
    .hero-title {
        font-size: 2.8em;
    }
    
    .hero-slogan {
        font-size: 1.2em;
    }
}



/* ========================================
   STICKY HEADER STYLES
   ======================================== */

.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* ========================================
   SCROLL TO TOP BUTTON STYLES
   ======================================== */

.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F97316, #FDBA74);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, #EA580C, #F97316);
}

.scroll-to-top-btn svg {
    width: 24px;
    height: 24px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top-btn svg {
        width: 20px;
        height: 20px;
    }
    
    body {
        padding-top: 70px;
    }
    
    .sticky-header .site-title {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .scroll-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .scroll-to-top-btn svg {
        width: 18px;
        height: 18px;
    }
    
    body {
        padding-top: 60px;
    }
}


/* ===== WIZARD CALCULATOR STYLES ===== */

/* Progress Steps */
.wizard-progress {
    margin-bottom: 40px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E5E7EB;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #F97316;
    color: #fff;
}

.progress-step.completed .step-number {
    background: #10B981;
    color: #fff;
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
    text-align: center;
}

.progress-step.active .step-label {
    color: #F97316;
}

/* Wizard Container */
.wizard-container {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.wizard-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
}

.wizard-step.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.wizard-step.prev {
    transform: translateX(-100%);
}

/* Step Header */
.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-header h3 {
    font-size: 2.2em;
    color: #1F2937;
    margin-bottom: 10px;
    font-weight: 800;
}

.step-header p {
    font-size: 1.1em;
    color: #6B7280;
}

/* Category Sections */
.category-section {
    margin-bottom: 30px;
}

.category-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F97316;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

/* Item Cards */
.item-card {
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.item-card:hover {
    border-color: #F97316;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.1);
    transform: translateY(-2px);
}

.item-card.selected {
    border-color: #F97316;
    background: #FFF7ED;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.item-checkbox {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.item-content h5 {
    font-size: 1.2em;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.item-description {
    color: #6B7280;
    margin-bottom: 15px;
    line-height: 1.5;
}

.item-price {
    font-size: 1.1em;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 10px;
}

.auto-calculation {
    background: #F9FAFB;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9em;
}

.calculation-info {
    display: block;
    color: #6B7280;
    margin-bottom: 5px;
}

.quantity-info {
    display: block;
    font-weight: 600;
    color: #1F2937;
}

/* Item Quantity Controls */
.item-quantity {
    margin-top: 15px;
}

.item-quantity label {
    display: block;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.item-quantity input[type="number"] {
    width: 80px;
    padding: 8px;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
}

.item-quantity input[type="number"]:focus {
    outline: none;
    border-color: #F97316;
}

/* Summary Section */
.summary-section {
    background: #F9FAFB;
    border: 2px solid #F97316;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 1.1em;
    border-bottom: 1px solid #E5E7EB;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    font-size: 1.3em;
    font-weight: 700;
    color: #F97316;
    border-top: 2px solid #F97316;
    margin-top: 15px;
    padding-top: 15px;
}

/* Navigation Buttons */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
    background: transparent;
}

.nav-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.nav-btn.primary {
    background: linear-gradient(135deg, #F97316, #FDBA74);
    color: #fff;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.nav-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.nav-btn.secondary {
    background: #F3F4F6;
    color: #F97316;
    border: 2px solid #F97316;
}

.nav-btn.secondary:hover {
    background: #F97316;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

/* Range Sliders for Person Count */
input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #E5E7EB;
    outline: none;
    -webkit-appearance: none;
    margin: 10px 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F97316;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F97316;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive for Wizard */
@media (max-width: 768px) {
    .progress-steps {
        gap: 10px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .wizard-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-btn {
        width: 100%;
    }
    
    .step-header h3 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .price-calculator-wizard {
        padding: 20px;
    }
    
    .item-card {
        padding: 15px;
    }
    
    .step-header h3 {
        font-size: 1.5em;
    }
}



/* ========================================
   WIZARD STYLES - CONSISTENT WITH WEBSITE DESIGN
======================================== */

.wizard-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #E5E7EB;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E5E7EB;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #F97316;
    color: white;
}

.step-label {
    font-size: 12px;
    color: #6B7280;
    text-align: center;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: #F97316;
    font-weight: 600;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.wizard-step.active {
    display: block;
}

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

.wizard-step h3 {
    color: #1F2937;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.wizard-step p {
    color: #6B7280;
    font-size: 16px;
    text-align: center;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group select,
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.person-counter {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.person-counter h4 {
    color: #1F2937;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.slider-container {
    position: relative;
}

.slider-container label {
    display: block;
    font-weight: 600;
    color: #F97316;
    margin-bottom: 12px;
    font-size: 16px;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #E5E7EB;
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 12px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F97316;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F97316;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6B7280;
}

.person-summary {
    background: white;
    border: 2px solid #F97316;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.person-summary h4 {
    color: #F97316;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.person-summary p {
    color: #1F2937;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.wizard-navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
    gap: 16px;
}

.nav-btn {
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.nav-btn.primary {
    background: #F97316;
    color: white;
}

.nav-btn.primary:hover {
    background: #EA580C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.nav-btn.secondary {
    background: #F3F4F6;
    color: #6B7280;
    border: 2px solid #E5E7EB;
}

.nav-btn.secondary:hover {
    background: #E5E7EB;
    color: #374151;
}

/* Phone Input Styles */
.phone-input {
    display: flex;
    gap: 12px;
}

.phone-input select {
    flex: 0 0 140px;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    background: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.phone-input input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.phone-input select:focus,
.phone-input input:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wizard-container {
        padding: 24px;
        margin: 20px;
        border-radius: 8px;
    }
    
    .progress-bar {
        margin-bottom: 24px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .wizard-step h3 {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .wizard-step p {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .person-counter {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .person-counter h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .nav-btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 100px;
    }
    
    .wizard-navigation {
        margin-top: 24px;
        padding-top: 16px;
    }
    
    .phone-input {
        flex-direction: column;
        gap: 8px;
    }
    
    .phone-input select {
        flex: none;
    }
}

@media (max-width: 480px) {
    .wizard-container {
        padding: 16px;
        margin: 10px;
    }
    
    .progress-bar {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .progress-step {
        flex: 0 0 calc(20% - 8px);
        min-width: 60px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .step-label {
        font-size: 9px;
    }
    
    .wizard-step h3 {
        font-size: 20px;
    }
    
    .nav-btn {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 80px;
    }
}



/* ===== FLOOR PLAN SECTION ===== */
.floorplan-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.floorplan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dee2e6, transparent);
}

.floorplan-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.floorplan-wrapper {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.floorplan-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ffd23f);
}

.floorplan-svg {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 8px;
    background: #ffffff;
}

.room-label {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 600;
    fill: #333;
    pointer-events: none;
}

.room-area {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    fill: #666;
    pointer-events: none;
}

.entrance-marker {
    animation: pulse 2s infinite;
}

.entrance-label {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 11px;
    font-weight: 500;
    fill: #4caf50;
    pointer-events: none;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* Room Information Panel */
.room-info-panel {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.room-info-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
    transition: color 0.3s ease;
}

.room-info-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 24px;
}

.room-info-details {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

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

.info-item strong {
    color: #333;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.features-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* Room Legend */
.room-legend {
    margin-top: 40px;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.room-legend h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.legend-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.legend-item:hover {
    background-color: #f8f9fa;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-item span:last-child {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .floorplan-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .room-info-panel {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .floorplan-section {
        padding: 60px 0;
    }
    
    .floorplan-wrapper {
        padding: 15px;
    }
    
    .floorplan-svg {
        max-height: 400px;
    }
    
    .room-info-panel {
        padding: 20px;
    }
    
    .room-info-title {
        font-size: 20px;
    }
    
    .room-info-description {
        font-size: 14px;
    }
    
    .legend-items {
        grid-template-columns: 1fr;
    }
    
    .room-label {
        font-size: 12px;
    }
    
    .room-area {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .floorplan-section {
        padding: 40px 0;
    }
    
    .floorplan-wrapper {
        padding: 10px;
        margin: 0 -10px;
        border-radius: 8px;
    }
    
    .floorplan-svg {
        max-height: 300px;
    }
    
    .room-info-panel {
        padding: 16px;
        margin: 0 -10px;
        border-radius: 8px;
    }
    
    .room-legend {
        padding: 16px;
        margin: 20px -10px 0;
        border-radius: 8px;
    }
    
    .room-label {
        font-size: 10px;
    }
    
    .room-area {
        font-size: 8px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .room-group {
        cursor: pointer;
    }
    
    .room-shape {
        stroke-width: 3;
    }
    
    .legend-item:hover {
        background-color: transparent;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .floorplan-svg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Floorplan Section - Light Background */
.floorplan-section {
    background: #ffffff; /* Weißer Hintergrund wie das restliche Design */
    padding: 80px 0;
}


/* ===== SUCCESS MESSAGE OVERLAY ===== */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-overlay.show {
    opacity: 1;
    visibility: visible;
}

.success-modal {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.success-overlay.show .success-modal {
    transform: translateY(0);
}

.success-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.success-icon svg {
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-modal h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.success-modal p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}

.success-note {
    font-size: 14px !important;
    color: #888 !important;
    font-style: italic;
    margin-bottom: 24px !important;
}

.success-actions {
    margin-top: 24px;
}

.success-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.success-btn:active {
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .success-modal {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .success-modal h3 {
        font-size: 20px;
    }
    
    .success-modal p {
        font-size: 14px;
    }
    
    .success-icon svg {
        width: 48px;
        height: 48px;
    }
}


/* ===== SOCIAL MEDIA BUTTONS ===== */

/* Footer Social Media Links */
.social-media-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link:active {
    transform: translateY(0);
}

/* Contact Section Social Media */
.social-media-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e9ecef;
}

.social-media-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.social-media-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-button.facebook {
    background: #1877f2;
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.social-button:active {
    transform: translateY(0);
}

.social-button svg {
    flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .social-media-links {
        gap: 12px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .social-media-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .social-button {
        justify-content: center;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .social-media-section {
        margin-top: 24px;
        padding-top: 20px;
    }
    
    .social-media-title {
        font-size: 16px;
    }
}



/* ========================================
   ROOMS WIZARD STYLES
   ======================================== */

.rooms-wizard-section {
    background: #ffffff;
    padding: 80px 0;
}

.rooms-wizard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Room Navigation */
.room-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.room-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.room-nav-btn:hover {
    border-color: #F97316;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
}

.room-nav-btn.active {
    background: linear-gradient(135deg, #F97316, #FDBA74);
    border-color: #F97316;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.room-nav-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f8f9fa;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    color: #333;
}

.room-nav-btn.active .room-nav-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.room-nav-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.room-nav-btn.active .room-nav-name {
    color: white;
}

/* Room Content */
.room-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.room-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.room-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-image-container:hover .room-image {
    transform: scale(1.05);
}

.room-image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.room-size-badge {
    background: linear-gradient(135deg, #F97316, #FDBA74);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.room-info-container {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.room-info-header {
    margin-bottom: 24px;
}

.room-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.room-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.room-area,
.room-capacity {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B7280;
    font-weight: 500;
}

.room-area::before {
    content: "📐";
    font-size: 16px;
}

.room-capacity::before {
    content: "👥";
    font-size: 16px;
}

.room-description {
    margin-bottom: 24px;
}

.room-description p {
    color: #374151;
    line-height: 1.6;
    font-size: 16px;
}

.room-features h4 {
    color: #1F2937;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 18px;
}

.room-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

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

.room-features li::before {
    content: "✓";
    color: #10B981;
    font-weight: 700;
    font-size: 16px;
}

/* Room Controls */
.room-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.room-control-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    color: #374151;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-control-btn:hover {
    border-color: #F97316;
    color: #F97316;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
}

.room-control-btn:active {
    transform: translateY(0);
}

.room-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #374151;
    background: white;
    padding: 12px 20px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rooms-wizard-section {
        padding: 60px 0;
    }

    .room-navigation {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 8px;
        padding: 16px;
    }

    .room-nav-btn {
        padding: 12px 8px;
        min-width: 80px;
    }

    .room-nav-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .room-nav-name {
        font-size: 12px;
    }

    .room-content-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .room-image {
        height: 250px;
    }

    .room-info-container {
        padding: 24px;
    }

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

    .room-meta {
        flex-direction: column;
        gap: 12px;
    }

    .room-controls {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .room-control-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .room-navigation {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        padding: 12px;
    }

    .room-nav-btn {
        padding: 10px 6px;
        min-width: 70px;
    }

    .room-nav-name {
        font-size: 11px;
    }

    .room-info-container {
        padding: 20px;
    }

    .room-title {
        font-size: 1.3rem;
    }

    .room-features li {
        font-size: 14px;
    }
}

/* Animation for content transitions */
.room-content-wrapper {
    animation: fadeInUp 0.5s ease;
}

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


/* ========================================
   IMAGE SLIDESHOW NAVIGATION
   ======================================== */

.image-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.room-image-container:hover .image-nav-overlay {
    opacity: 1;
    pointer-events: all;
}

.image-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.image-nav-btn:hover {
    background: rgba(249, 115, 22, 0.9);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

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

.image-nav-prev {
    left: 20px;
}

.image-nav-next {
    right: 20px;
}

/* Mobile responsive for image navigation */
@media (max-width: 768px) {
    .image-nav-overlay {
        padding: 0 15px;
    }

    .image-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .image-nav-overlay {
        padding: 0 10px;
    }

    .image-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}


/* ========================================
   TEXT HIGHLIGHTING & UNDERLINES
   ======================================== */

/* Highlight Box (wie "erste und einzige" bei Trainr) */
.highlight-box {
    background: linear-gradient(135deg, #F97316, #FDBA74);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
    margin: 0 4px;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
    position: relative;
}

/* Underline Text (wie "Online-Ausbildung" bei Trainr) */
.underline-text {
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.underline-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #FDBA74);
    border-radius: 2px;
    animation: underlineGrow 0.8s ease-out;
}

/* Animation für Unterstreichung */
@keyframes underlineGrow {
    from {
        width: 0;
        left: 50%;
        right: 50%;
    }
    to {
        width: 100%;
        left: 0;
        right: 0;
    }
}

/* Hover-Effekte */
.highlight-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
}

.underline-text:hover::after {
    height: 4px;
    bottom: -5px;
    transition: all 0.3s ease;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .highlight-box {
        padding: 3px 8px;
        font-size: 0.95em;
        margin: 0 2px;
    }
    
    .underline-text::after {
        height: 2px;
        bottom: -3px;
    }
}

@media (max-width: 480px) {
    .highlight-box {
        padding: 2px 6px;
        font-size: 0.9em;
        margin: 0 1px;
    }
    
    .underline-text::after {
        height: 2px;
        bottom: -2px;
    }
}

/* Spezielle Styles für Hero-Titel */
.hero-title .highlight-box {
    font-size: 0.95em;
    vertical-align: baseline;
}

.hero-title .underline-text {
    color: inherit;
}

/* Alternative Highlight-Styles für verschiedene Bereiche */
.highlight-box.secondary {
    background: linear-gradient(135deg, #10B981, #34D399);
}

.highlight-box.accent {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.underline-text.secondary::after {
    background: linear-gradient(90deg, #10B981, #34D399);
}

.underline-text.accent::after {
    background: linear-gradient(90deg, #8B5CF6, #A78BFA);
}



/* ========================================
   FAQ SECTION STYLES
   ======================================== */

.faq-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.faq-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
}

.faq-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6B7280;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #E5E7EB;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1F2937;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #F97316;
}

.faq-question span:first-child {
    flex: 1;
    margin-right: 20px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: #F97316;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    padding: 0;
}

.faq-answer p {
    padding-bottom: 16px;
    color: #6B7280;
    line-height: 1.7;
    margin: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
    color: #6B7280;
    line-height: 1.6;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer strong {
    color: #1F2937;
    font-weight: 600;
}

.faq-item.active .faq-question {
    color: #F97316;
}

.faq-item.active .faq-answer {
    padding: 0 0 24px 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
    }
    
    .faq-section .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 20px 0;
    }

    .faq-answer p,
    .faq-answer ul {
        padding-bottom: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 0 20px 0;
    }
}

@media (max-width: 480px) {
    .faq-question {
        font-size: 1rem;
        padding: 18px 0;
    }
    
    .faq-question span:first-child {
        margin-right: 15px;
    }
    
    .faq-icon {
        width: 18px;
        height: 18px;
    }
}



/* ==========================================================================
   SEO & PERFORMANCE OPTIMIZATIONS
   ========================================================================== */

/* Critical CSS for above-the-fold content */
.hero-section {
    will-change: transform;
    contain: layout style paint;
}

/* Optimize images for better loading */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
    decoding: async;
}

/* Preload critical fonts */
@font-display: swap;

/* Optimize animations for performance */
.faq-answer,
.wizard-step,
.card {
    will-change: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Reduce layout shifts */
.team-photo img,
.gallery-item img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Optimize scrolling performance */
.section {
    contain: layout style;
}

/* Critical rendering path optimization */
.above-fold {
    contain: layout style paint;
}

/* ==========================================================================
   MOBILE-FIRST RESPONSIVE OPTIMIZATIONS
   ========================================================================== */

/* Enhanced mobile typography */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-slogan {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Touch-optimized interactive elements */
@media (max-width: 768px) {
    .faq-question,
    .wizard-nav-button,
    .submit-button {
        min-height: 44px;
        padding: 12px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .social-button {
        min-height: 44px;
        min-width: 44px;
        padding: 10px;
    }
}

/* Improved mobile navigation */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }
    
    .main-navigation a {
        padding: 15px 20px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Mobile-optimized forms */
@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
        border-radius: 8px;
    }
    
    .contact-grid,
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ==========================================================================
   ACCESSIBILITY IMPROVEMENTS
   ========================================================================== */

/* Focus indicators */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #F97316;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .card,
    .faq-item,
    .wizard-step {
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Screen reader improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   CORE WEB VITALS OPTIMIZATIONS
   ========================================================================== */

/* Largest Contentful Paint (LCP) optimization */
.hero-section {
    contain: layout style paint;
}

.hero-title,
.hero-slogan {
    font-display: swap;
}

/* First Input Delay (FID) optimization */
.wizard-nav-button,
.faq-question,
.submit-button {
    touch-action: manipulation;
}

/* Cumulative Layout Shift (CLS) prevention */
.team-photo,
.gallery-item,
.partner-logo {
    aspect-ratio: 1 / 1;
}

.hero-section {
    min-height: 60vh;
}

/* ==========================================================================
   SEO-OPTIMIZED CONTENT STRUCTURE
   ========================================================================== */

/* Semantic HTML improvements */
.section-title {
    font-weight: 700;
    color: #1F2937;
}

.section-subtitle {
    color: #6B7280;
    font-weight: 400;
}

/* Breadcrumb styling for future implementation */
.breadcrumb {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #F97316;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Schema.org microdata styling */
.h-card,
.p-name,
.p-tel,
.p-email {
    display: inherit;
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    .site-header,
    .mobile-menu-toggle,
    .scroll-to-top,
    .social-media-buttons {
        display: none !important;
    }
    
    .section {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        color: #000 !important;
        font-size: 2rem;
    }
    
    .contact-info {
        color: #000 !important;
    }
}


/* Kontaktinformationen im Formular */
.form-contact-info {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.form-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #374151;
}

.form-contact-item:last-of-type {
    margin-bottom: 12px;
}

.form-contact-icon {
    margin-right: 8px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.form-opening-hours {
    font-size: 14px;
    color: #374151;
    line-height: 1.4;
    padding-top: 8px;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.form-opening-hours strong {
    color: #F97316;
    font-weight: 600;
}

/* Mobile Responsiveness für Formular-Kontaktinfo */
@media (max-width: 768px) {
    .form-contact-info {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .form-contact-item {
        font-size: 13px;
    }
    
    .form-opening-hours {
        font-size: 13px;
    }
}

