/* ===== Color Palette ===== */
:root {
    --black: #1C1C1A;
    --azure-web: #E3F0F0;
    --silver: #B4B3AC;
    --white: #FEFEFE;
    
    /* Accent Colors */
    --accent-primary: #CF1127;
    --accent-hover: #E6142E;
    
    /* Zusätzliche Farben für Gradienten */
    --dark-gray: #2A2A28;
    --light-gray: #D4D4CE;
}


/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Manrope", sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    
}
a {
    text-decoration: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-small {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 120px 0;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(28, 28, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(227, 240, 240, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
}

.logo-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--silver);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--silver);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

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

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

.language-switcher {
    display: flex;
    gap: 8px;
    background: rgba(227, 240, 240, 0.05);
    padding: 8px;
    border-radius: 8px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--silver);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--accent-primary);
    color: var(--white);
}

.lang-btn:hover:not(.active) {
    background: rgba(227, 240, 240, 0.1);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

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

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

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



/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    overflow: hidden;

}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(207, 17, 39, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(227, 240, 240, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(227,240,240,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
}

.hero-badge {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(227, 240, 240, 0.05);
    border: 1px solid rgba(227, 240, 240, 0.1);
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Manrope', serif;
    font-size: clamp(48px, 8vw, 90px);
    font-weight:200;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--accent-primary);
    text-shadow: 0 0 40px rgba(207, 17, 39, 0.4);
}

.hero-description {
    font-size: 20px;
    color: var(--silver);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--silver);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--silver), transparent);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(207, 17, 39, 0.3);
}

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

.btn-secondary:hover {
    background: var(--accent-primary);
    color: var(--black);
    transform: translateY(-2px);
}

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

/* ===== Section Headers ===== */
.section-header {
    margin-bottom: 80px;
}

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

.section-label {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.section-description {
    font-size: 18px;
    color: var(--silver);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Services Section ===== */
.services {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
    position: relative;
}

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

.service-card {
    background: rgba(227, 240, 240, 0.02);
    border: 1px solid rgba(227, 240, 240, 0.08);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    background: rgba(227, 240, 240, 0.05);
    border-color: rgba(227, 240, 240, 0.15);
    transform: translateY(-8px);
}

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

.service-card.featured {
    background: linear-gradient(135deg, rgba(207, 17, 39, 0.1) 0%, rgba(227, 240, 240, 0.05) 100%);
    border-color: rgba(207, 17, 39, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(227, 240, 240, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--accent-primary);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--accent-primary);
    color: var(--white);
    transform: scale(1.1);
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.service-description {
    color: var(--silver);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-primary);
    font-family: 'Playfair Display', serif;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
    overflow: hidden;
    position: relative;
}

.testimonials-slider {
    margin-top: 60px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scroll-left 40s linear infinite;
    width: fit-content;
}

/* Pause on hover */
.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: rgba(227, 240, 240, 0.02);
    border: 1px solid rgba(227, 240, 240, 0.08);
    border-radius: 16px;
    padding: 40px;
    min-width: 400px;
    max-width: 400px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(227, 240, 240, 0.05);
    border-color: rgba(227, 240, 240, 0.15);
    transform: translateY(-8px);
}

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

.testimonial-stars {
    color: var(--accent-primary);
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-text {
    color: var(--silver);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    min-height: 100px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(227, 240, 240, 0.08);
}

.testimonial-author strong {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.testimonial-author span {
    color: var(--silver);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 30px;
    }

    .testimonial-text {
        font-size: 14px;
        min-height: auto;
    }

    .testimonials-track {
        animation: scroll-left 30s linear infinite;
    }
}

/* ===== About Section ===== */
.about {
    background: var(--black);
}

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

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(207, 17, 39, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.about-text {
    color: var(--silver);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(227, 240, 240, 0.1);
    border-bottom: 1px solid rgba(227, 240, 240, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--silver);
    letter-spacing: 0.5px;
}

.quote {
    background: rgba(227, 240, 240, 0.03);
    border-left: 4px solid var(--azure-web);
    padding: 30px 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.quote p {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--accent-primary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.quote cite {
    font-style: normal;
    font-size: 14px;
    color: var(--silver);
    letter-spacing: 1px;
}



/* ===== Location Section ===== */
.location {
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
}

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

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(227, 240, 240, 0.02);
    border: 1px solid rgba(227, 240, 240, 0.08);
    border-radius: 12px;
    padding: 30px;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 16px;
}

.info-card p,
.info-card a {
    color: var(--silver);
    font-size: 16px;
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--accent-primary);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(227, 240, 240, 0.05);
}

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

.hour-row .closed {
    color: var(--accent-primary);
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    height: 600px;
    border: 1px solid rgba(227, 240, 240, 0.08);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.8) contrast(1.2);
}

/* ===== Booking Section ===== */
.booking {
    background: var(--black);
}

.booking-form {
    background: rgba(227, 240, 240, 0.02);
    border: 1px solid rgba(227, 240, 240, 0.08);
    border-radius: 16px;
    padding: 50px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(227, 240, 240, 0.03);
    border: 1px solid rgba(227, 240, 240, 0.1);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(227, 240, 240, 0.05);
}

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

.info-box {
    background: rgba(207, 17, 39, 0.1);
    border: 1px solid rgba(207, 17, 39, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

/* ===== new bookings via whats css ===== */

.info-box {
    background: rgba(207, 17, 39, 0.1);
    border: 1px solid rgba(207, 17, 39, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.info-box-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.info-box-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-gray);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(227, 240, 240, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-text {
    color: var(--silver);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(227, 240, 240, 0.05);
    border: 1px solid rgba(227, 240, 240, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--white);
    transform: translateY(-4px);
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 24px;
}

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

.footer-links li,
.footer-links a {
    color: var(--silver);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(227, 240, 240, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--silver);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

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

.footer-legal a:hover {
    color: var(--accent-primary);
}

/* ===== Language Content ===== */
.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--black);
        border-top: 1px solid rgba(227, 240, 240, 0.1);
        flex-direction: column;
        padding: 30px 40px;
        gap: 20px;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(227, 240, 240, 0.1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .about-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container,
    .container-small {
        padding: 0 24px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .nav-container {
        padding: 0 24px;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 140px 0 80px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 30px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px;
    }
}


/* All New Card */




/* All Services Card */
.all-services-card {
    background: linear-gradient(135deg, rgba(207, 17, 39, 0.1) 0%, rgba(207, 17, 39, 0.05) 100%);
    border: 2px solid var(--accent-primary);
}

.view-all-btn {
    width: 100%;
    padding: 12px 24px;
    background: var(--accent-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 12px;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(207, 17, 39, 0.4);
}

/* Services Modal */
.services-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

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

.services-modal-content {
    background: var(--black);
    border: 1px solid rgba(227, 240, 240, 0.1);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(227, 240, 240, 0.1);
}

.modal-header h3 {
    font-size: 28px;
    color: var(--accent-primary);
}

.modal-close {
    background: transparent;
    border: 2px solid rgba(227, 240, 240, 0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: rotate(90deg);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-category {
    background: rgba(227, 240, 240, 0.02);
    border: 1px solid rgba(227, 240, 240, 0.05);
    border-radius: 12px;
    padding: 24px;
}

.category-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(227, 240, 240, 0.05);
}

.service-item:last-child {
    border-bottom: none;
}

.service-name {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.service-dots {
    flex: 1;
    border-bottom: 2px dotted rgba(227, 240, 240, 0.2);
    margin: 0 8px;
}

.service-price-tag {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-primary);
    white-space: nowrap;
}

.service-price-tag small {
    font-size: 12px;
    opacity: 0.7;
    margin-left: 4px;
}

.modal-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(227, 240, 240, 0.1);
    text-align: center;
}

.modal-info {
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .services-modal-content {
        padding: 24px;
    }

    .modal-header h3 {
        font-size: 22px;
    }

    .services-category {
        padding: 16px;
    }

    .category-title {
        font-size: 18px;
    }

    .service-name {
        font-size: 14px;
    }

    .service-price-tag {
        font-size: 16px;
    }
}


