/* ===========================
   CSS Variables & Reset
   =========================== */

:root {
    --primary-color: #1a1a1a;
    --primary-dark: #0a0a0a;
    --secondary-color: #666;
    --accent-color: #8B7355;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --shadow: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===========================
   Container & Layout
   =========================== */

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

section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 20px;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    width: 50px;
    height: 50px;
}

.logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920&q=85') center center/cover no-repeat;
    background-attachment: fixed;
    background-position: center center;
    color: var(--text-dark);
    margin-top: 80px;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 200;
    margin-bottom: 25px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: var(--text-light);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    display: none;
}

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

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 0;
    font-weight: 400;
    font-size: 0.9rem;
    border: 1.5px solid var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-dark);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

.btn-primary::before {
    background: white;
}

.btn-primary:hover {
    color: var(--text-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-secondary:hover {
    color: white;
}

/* ===========================
   Services Section - Compact List
   =========================== */

.services {
    background: var(--bg-light);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: white;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

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

.service-item:hover::after {
    width: 100%;
}

.service-item:hover {
    background: var(--bg-light);
}

.service-item .icon-wrapper {
    font-size: 1.8rem;
    color: var(--text-dark);
    opacity: 0.5;
    transition: var(--transition);
    flex-shrink: 0;
    width: 45px;
    text-align: center;
}

.service-item:hover .icon-wrapper {
    opacity: 1;
    color: var(--accent-color);
}

.service-item .service-content {
    flex: 1;
    min-width: 0;
}

.service-item .service-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.service-item .service-link {
    font-size: 0.8rem;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    opacity: 0.7;
    transition: var(--transition);
}

.service-item .service-link i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.service-item:hover .service-link {
    opacity: 1;
}

.service-item:hover .service-link i {
    transform: translateX(3px);
}

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

.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.lead {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.features {
    display: grid;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: start;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: normal;
    font-size: 0.75rem;
}

.feature-text h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 1rem;
}

.feature-text p {
    color: var(--text-light);
    margin: 0;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    max-width: 400px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

/* ===========================
   References Section
   =========================== */

.references {
    background: var(--bg-light);
}

.projects-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
}

.project-item {
    background: white;
    border: none;
    transition: var(--transition);
}

.project-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    position: relative;
}

.project-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.project-header:hover::after {
    width: 100%;
}

.project-header:hover {
    background: var(--bg-light);
}

.project-title {
    flex: 1;
}

.project-title h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.4;
}

.project-category {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accordion-icon {
    flex-shrink: 0;
    margin-left: 20px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    opacity: 0.5;
}

.project-header:hover .accordion-icon {
    opacity: 1;
}

.project-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
    opacity: 1;
}

.project-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.project-content.active {
    max-height: 2000px;
    border-top: 1px solid var(--border-color);
}

.project-description {
    padding: 40px;
}

.project-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.project-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-details li {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.project-details strong {
    color: var(--text-dark);
    font-weight: 500;
}

.project-images {
    padding: 0 40px 40px 40px;
}

.image-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: var(--transition);
}

.image-placeholder:hover {
    border-color: var(--accent-color);
    background: rgba(139, 115, 85, 0.03);
}

.image-placeholder i {
    font-size: 3rem;
    color: var(--text-light);
    opacity: 0.4;
}

.image-placeholder p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Image Slider */

.image-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--border-color);
}

.image-label {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    z-index: 10;
    border-radius: 0;
}

.image-label.vorher {
    background: rgba(220, 53, 69, 0.85);
}

.image-label.nachher {
    background: rgba(40, 167, 69, 0.85);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 26, 26, 0.7);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(26, 26, 26, 0.9);
}

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

.slider-btn:disabled:hover {
    background: rgba(26, 26, 26, 0.7);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--text-dark);
    width: 30px;
    border-radius: 5px;
}

.slider-dot:hover {
    background: var(--text-light);
}

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

.legal-page {
    padding: 150px 0 80px;
    background: white;
    min-height: 100vh;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 400;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 400;
}

.legal-content h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content a:hover {
    opacity: 0.7;
}

.legal-source {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

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

.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 300;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    opacity: 0.7;
    color: var(--text-dark);
}

.info-icon i {
    display: block;
}

.info-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.info-item a {
    color: var(--text-dark);
}

.info-item a:hover {
    opacity: 0.6;
}

/* Contact Form */

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 0;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-form:hover {
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
}

.form-group.error input,
.form-group.error textarea {
    border-color: #dc3545;
}

.error-message {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
}

.form-group.error .error-message {
    display: block;
}

.checkbox-group label {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.form-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 0;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #c3e6cb;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 0;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #f5c6cb;
}

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

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section a {
    color: #ccc;
}

.footer-section a:hover {
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #999;
}

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

.footer-links a {
    color: #999;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* ===========================
   Animations
   =========================== */

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

@media (min-width: 768px) {
    .logo-text {
        display: inline;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

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

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

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        max-width: 250px;
    }

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

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

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

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

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

    section {
        padding: 60px 0;
    }

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

    .service-item {
        padding: 20px;
        gap: 15px;
    }

    .service-item .icon-wrapper {
        font-size: 1.5rem;
        width: 40px;
    }

    .service-item .service-title {
        font-size: 0.95rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .project-header {
        padding: 25px 20px;
    }

    .project-title h3 {
        font-size: 1rem;
    }

    .project-category {
        font-size: 0.8rem;
    }

    .accordion-icon {
        margin-left: 10px;
    }

    .project-description {
        padding: 30px 20px;
    }

    .project-images {
        padding: 0 20px 30px 20px;
    }

    .image-placeholder {
        padding: 40px 20px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn.prev {
        left: 5px;
    }

    .slider-btn.next {
        right: 5px;
    }

    .image-label {
        top: 10px;
        left: 10px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .image-label {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

/* ===========================
   Service Modal
   =========================== */

.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.service-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: rotate(90deg);
}

.modal-header {
    padding: 60px 40px 30px;
    border-bottom: 2px solid var(--border-color);
    text-align: center;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-white);
}

.modal-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin: 0;
}

.modal-body {
    padding: 40px;
}

.modal-body h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.modal-body p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.modal-body ul {
    list-style: none;
    margin: 20px 0;
}

.modal-body ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-item {
    cursor: pointer !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        max-height: 95vh;
        border-radius: 12px 12px 0 0;
    }

    .service-modal.active {
        padding: 0;
        align-items: flex-end;
    }

    .modal-header {
        padding: 50px 30px 20px;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

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

    .modal-body {
        padding: 30px 20px;
    }

    .modal-body h3 {
        font-size: 1.2rem;
    }

    .modal-close {
        width: 35px;
        height: 35px;
        top: 15px;
        right: 15px;
    }
}