/* ============================================
   Modern Color Scheme
   Primary: #1e40af (Modern Blue)
   Secondary: #10b981 (Modern Green)
   Accent: #f59e0b (Modern Orange)
   ============================================ */

:root {
    --primary: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --secondary: #10b981;
    --secondary-light: #6ee7b7;
    --accent: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border: #e5e7eb;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* ============================================
   Contact Info Grid (Professional Layout)
   ============================================ */

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

.contact-info-item {
    background: #f9fafb;
    border-left: 4px solid var(--primary);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-info-item:hover {
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.1);
    transform: translateY(-2px);
}

.contact-info-label {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item p {
    margin: 0.5rem 0;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-info-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.contact-info-emergency {
    background: #fef3c7;
    border-left: 4px solid var(--accent);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    color: #78350f;
    font-size: 0.95rem;
    margin-top: 2rem;
}

.contact-info-emergency strong {
    color: #92400e;
    font-weight: 700;
}

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

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

.navbar {
    background: var(--primary);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(30, 64, 175, 0.1);
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.logo .tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

/* ---- Hamburger Button ---- */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.nav-toggle:hover {
    background: rgba(255,255,255,0.1);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.1rem;
    }

    .logo .tagline {
        font-size: 0.72rem;
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0 1rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        z-index: 999;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-menu a.active::after {
        display: none;
    }

    .nav-menu a.active {
        background: rgba(255,255,255,0.1);
        color: var(--accent);
    }

    .navbar .container {
        position: relative;
    }
}

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

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(245, 158, 11, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.hero-content .btn {
    margin: 0.4rem 0.5rem;
}

@media (max-width: 480px) {
    .hero-content .btn {
        display: block;
        margin: 0.5rem auto;
        max-width: 260px;
        text-align: center;
    }
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-secondary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* ============================================
   Indications Section
   ============================================ */

.indications {
    padding: 6rem 0;
    background: var(--bg-light);
}

.indications h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 800;
}

.indications .subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.indication-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary);
}

.indication-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(30, 64, 175, 0.15);
    border-top-color: var(--accent);
}

.indication-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.indication-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 700;
}

.indication-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .indications {
        padding: 3rem 0;
    }
    
    .indications h2 {
        font-size: 2rem;
    }
    
    .indications-grid {
        grid-template-columns: 1fr;
    }
}

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

.services-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.services-section > .container > h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 800;
}

.intro-text {
    font-size: 1.05rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(30, 64, 175, 0.15);
}

.service-item.featured {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, #fffbeb 0%, white 100%);
    transform: scale(1.02);
}

.service-item.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-item h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-item > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-details {
    list-style: none;
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-details li {
    color: var(--text-light);
    padding: 0.4rem 0;
    line-height: 1.5;
}

.service-details li::before {
    content: '• ';
    color: var(--accent);
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.service-highlights span {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 600;
}

.service-highlights span::before {
    content: '✓ ';
    margin-right: 0.5rem;
}

.services-info {
    margin-top: 3rem;
    padding: 3rem 0;
    border-top: 2px solid var(--border);
}

.services-info h3 {
    font-size: 2rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 800;
}

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

.info-box {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.info-box h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.info-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   Process Section
   ============================================ */

.process-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 800;
}

.process-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(30, 64, 175, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.step h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Info Section
   ============================================ */

.info {
    padding: 4rem 0;
    background: white;
}

.info-box {
    background: #fef3c7;
    border-left: 5px solid var(--accent);
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.info-box h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-box p {
    color: #92400e;
    line-height: 1.6;
}

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

.footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
    text-decoration: underline;
}

/* ============================================
   Forms
   ============================================ */

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item.featured {
        transform: scale(1);
    }
    
    .service-item.featured:hover {
        transform: translateY(-8px);
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .services-section {
        padding: 3rem 0;
    }
    
    .services-section > .container > h2 {
        font-size: 2rem;
    }
    
    .process-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   About Page
   ============================================ */

.about-section {
    padding: 5rem 0 6rem;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 4rem;
    align-items: start;
}

/* ---- Bio Text ---- */
.about-text h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 0.4rem;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

/* Timeline-style sections */
.about-text .bio-block {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--border);
    transition: border-color 0.3s;
}

.about-text .bio-block:hover {
    border-left-color: var(--primary);
}

.about-text .bio-block h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.about-text .bio-block p {
    color: var(--text-light);
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.about-text .bio-block ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.about-text .bio-block ul li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--text-light);
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

.about-text .bio-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-light);
}

.about-text .bio-note {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: #f0f4ff;
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---- Sidebar ---- */
.about-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 2px 12px rgba(30, 64, 175, 0.06);
    transition: box-shadow 0.3s, transform 0.3s;
}

.info-card:hover {
    box-shadow: 0 6px 24px rgba(30, 64, 175, 0.12);
    transform: translateY(-3px);
}

.info-card h3 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.65;
}

.info-card em {
    font-style: italic;
    font-size: 0.88rem;
    color: #9ca3af;
}

/* Qualifikations-Liste in Sidebar */
.info-card .cred-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card .cred-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
    font-size: 0.91rem;
    line-height: 1.4;
}

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

.info-card .cred-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 0.05em;
}

/* CTA card in sidebar */
.info-card.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: none;
    text-align: center;
}

.info-card.cta-card h3 {
    color: rgba(255,255,255,0.8);
}

.info-card.cta-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

/* ---- Key Facts Strip ---- */
.about-facts {
    background: var(--bg-light);
    padding: 3.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-facts .facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.about-facts .fact-item .fact-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.about-facts .fact-item .fact-label {
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ---- Responsive About ---- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 300px;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-sidebar {
        position: static;
    }

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

    .about-text h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-facts .facts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

/* ============================================
   Legal Pages (Impressum, Datenschutz, etc.)
   ============================================ */

.legal-section {
    padding: 5rem 0 6rem;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.7rem;
    color: var(--primary);
    font-weight: 800;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 700;
    margin: 1.75rem 0 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.9rem;
}

.legal-content p {
    color: var(--text-light);
    font-size: 0.96rem;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.legal-content ul,
.legal-content ol {
    padding-left: 0;
    list-style: none;
    margin: 0.5rem 0 1rem;
}

.legal-content ul li,
.legal-content ol li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 0.35rem;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-light);
}

.legal-content ol {
    counter-reset: legal-counter;
}

.legal-content ol li {
    counter-increment: legal-counter;
}

.legal-content ol li::before {
    content: counter(legal-counter) '.';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content hr {
    border: none;
    border-top: 2px solid var(--border);
    margin: 3rem 0;
}

/* ============================================
   Bootstrap Icons Styling
   ============================================ */

/* Generic Icon Styling */
.icon {
    display: inline-block;
    font-size: 3rem;
    line-height: 1;
    vertical-align: middle;
    transition: all 0.3s ease;
}

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

.icon.md {
    font-size: 2rem;
}

.icon.lg {
    font-size: 3rem;
}

.icon.xl {
    font-size: 4rem;
}

/* Service Icon Styling */
.service-icon {
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--primary);
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-item:hover .service-icon {
    color: var(--accent);
    transform: scale(1.1);
}

/* Indication Icon Styling */
.indication-icon {
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--primary);
    transition: color 0.3s ease, transform 0.3s ease;
}

.indication-card:hover .indication-icon {
    color: var(--accent);
    transform: scale(1.1);
}

/* Admin Navigation Icon Styling */
.admin-nav-icon {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.1rem;
    vertical-align: middle;
}

/* Admin Card Icon Styling */
.admin-card-icon {
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Featured Badge Styling */
.featured-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

/* Footer Icon Styling */
.footer-icon {
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(30, 64, 175, 0.15);
    color: rgba(30, 64, 175, 0.75);
    transition: all 0.2s ease;
}

.footer-icon:hover {
    background: rgba(30, 64, 175, 0.3);
    color: rgba(30, 64, 175, 1);
}

/* Icon Color Variants */
.icon-primary {
    color: var(--primary) !important;
}

.icon-secondary {
    color: var(--secondary) !important;
}

.icon-accent {
    color: var(--accent) !important;
}

.icon-danger {
    color: #ef4444 !important;
}

.icon-success {
    color: var(--success) !important;
}

.icon-warning {
    color: var(--warning) !important;
}

/* Responsive Icon Sizing */
@media (max-width: 768px) {
    .icon {
        font-size: 2rem;
    }

    .service-icon,
    .indication-icon {
        font-size: 2rem;
    }

    .admin-card-icon {
        font-size: 2rem;
    }

    .featured-icon-badge {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .icon {
        font-size: 1.5rem;
    }

    .service-icon,
    .indication-icon {
        font-size: 1.75rem;
    }

    .admin-card-icon {
        font-size: 1.75rem;
    }

    .featured-icon-badge {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* ============================================
   INLINE BOOKING WIZARD STYLES (index.php)
   ============================================ */

.bm-screen {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.bm-screen.active {
    display: block;
}

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

.bm-field {
    margin-bottom: 1.5rem;
}

.bm-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.bm-field input,
.bm-field select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.bm-field input:focus,
.bm-field select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.bm-field input::placeholder {
    color: var(--text-light);
}

.bm-field small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.bm-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.bm-btn-primary,
.bm-btn-secondary {
    padding: 0.85rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.bm-btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.bm-btn-primary:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.3);
}

.bm-btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border);
}

.bm-btn-secondary:hover:not(:disabled) {
    background: var(--border);
    border-color: var(--text-dark);
}

.bm-btn-primary:disabled,
.bm-btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.bm-screen-title {
    color: var(--primary);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 700;
}

.bm-steps {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.bm-step {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.2s;
}

.bm-step.active {
    background: var(--primary);
    width: 28px;
    border-radius: 4px;
}

/* ============================================
   FAQ Section (Professional Design)
   ============================================ */

.faq-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item:hover {
    box-shadow: 0 12px 24px rgba(30, 64, 175, 0.15);
    transform: translateY(-4px);
}

.faq-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

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

    .faq-item {
        padding: 1.5rem;
    }

    .faq-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1rem;
    }
}

