/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* ===== FARBEN ===== */
:root {
    --red-dark: #8B0000;
    --red-bright: #b31b1b;
    --red-glow: #ff3a3a;
    --black: #0a0a0a;
    --black-light: #111111;
    --gray: #1e1e1e;
    --gray-light: #2a2a2a;
    --text-light: #e0e0e0;
    --text-muted: #aaaaaa;
}

.accent {
    color: var(--red-dark);
}

/* ===== LOADER ===== */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.held-loader {
    text-align: center;
}

.held-icon i {
    font-size: 64px;
    color: var(--red-dark);
    animation: bounce 1s ease-in-out infinite;
}

.loader-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--red-dark);
    letter-spacing: 2px;
    margin-top: 20px;
}

.loader-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.3);
    transition: all 0.3s ease;

}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(10, 10, 10, 0.98);
}

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

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    filter: drop-shadow(0 0 3px rgba(255,255,255,0.3));

}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-link:hover {
    color: var(--red-dark);
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--black-light);
    min-width: 260px;
    border-radius: 8px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 0, 0, 0.3);
    z-index: 100;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: var(--red-dark);
    color: white;
    padding-left: 25px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%);
    padding-top: 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title .hero-accent {
    color: var(--red-dark);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

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

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--red-dark);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--red-dark);
}

.btn-hero:hover {
    background: transparent;
    color: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--red-dark);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: var(--red-dark);
    color: white;
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down {
    color: var(--text-muted);
    font-size: 24px;
    transition: all 0.3s ease;
    display: inline-block;
}

.scroll-down:hover {
    color: var(--red-dark);
    transform: translateY(5px);
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 48px;
}

/* ===== ABOUT ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-light);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--red-dark);
}

.stat-text {
    font-size: 14px;
    color: var(--text-muted);
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.master-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(139, 0, 0, 0.9);
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== WARUM HELD SECTION ===== */
.why-held-section {
    background: var(--black);
}

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

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

.why-held-quote {
    margin: 32px 0;
    padding: 24px;
    background: rgba(139, 0, 0, 0.1);
    border-left: 4px solid var(--red-dark);
    border-radius: 0 8px 8px 0;
}

.quote-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.quote-sub {
    font-size: 16px;
    color: var(--text-muted);
    font-style: italic;
}

.why-held-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--black-light);
    padding: 12px 24px;
    border-radius: 40px;
    border: 1px solid rgba(139, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-badge:hover {
    border-color: var(--red-dark);
    transform: translateY(-3px);
}

.stat-badge i {
    color: var(--red-dark);
    font-size: 20px;
}

.stat-badge span {
    font-weight: 600;
    color: white;
}

.why-held-image .image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.why-held-image .image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.why-held-image .image-frame:hover img {
    transform: scale(1.05);
}

.held-stamp {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(139, 0, 0, 0.9);
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== SLIDER ===== */
.slider-section {
    padding: 80px 0;
    background: var(--black-light);
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    cursor: ew-resize;
}

.comparison-image {
    position: relative;
    width: 100%;
    padding-bottom: 62.5%;
    background: var(--gray);
}

.comparison-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-right: 3px solid var(--red-dark);
}

.after-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--red-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    z-index: 10;
    transition: transform 0.2s;
    box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.3);
}

.slider-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.slider-handle i {
    color: white;
    font-size: 20px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.service-card-link {
    text-decoration: none;
    display: block;
}

.service-card {
    background: var(--black);
    padding: 40px 24px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(139, 0, 0, 0.2);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--red-dark);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.2);
}

.service-icon i {
    font-size: 48px;
    color: var(--red-dark);
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.service-card:hover .service-icon i {
    transform: rotate(5deg) scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: white;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.card-link {
    color: var(--red-dark);
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: transform 0.3s;
}

.service-card:hover .card-link {
    transform: translateX(5px);
}

.services-note {
    text-align: center;
    padding: 20px;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 20px;
}

/* ===== SERVICE CONTENT DESIGN (TEXT ÜBER GALERIE) ===== */
.service-content {
    background: var(--black-light);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(139, 0, 0, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 16px;
}

.service-content p:first-child {
    font-size: 18px;
    font-weight: 500;
    color: white;
    border-left: 4px solid var(--red-dark);
    padding-left: 20px;
}

.service-content h2 {
    font-size: 26px;
    color: white;
    margin: 35px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(139, 0, 0, 0.3);
    display: inline-block;
}

.service-content h2 i {
    color: var(--red-dark);
    margin-right: 10px;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.service-content ul li {
    padding: 12px 16px;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s;
}

.service-content ul li:hover {
    background: rgba(139, 0, 0, 0.2);
    transform: translateX(5px);
}

.service-content ul li i {
    color: var(--red-dark);
    margin-right: 10px;
}

.service-content strong {
    color: var(--red-dark);
    font-size: 18px;
    display: block;
    text-align: center;
    padding: 20px;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 12px;
    margin-top: 20px;
}

/* ===== GALERIE ===== */
.gallery-section {
    margin: 50px 0;
    padding: 40px;
    background: var(--black-light);
    border-radius: 16px;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.gallery-header {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-header h2 {
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
}

.gallery-header h2 i {
    color: var(--red-dark);
    margin-right: 10px;
}

.gallery-header p {
    color: var(--text-muted);
    font-size: 14px;
}

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

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: var(--red-dark);
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.2);
}

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

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

/* ===== MODAL (GALERIE POPUP) ===== */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.gallery-modal img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2001;
}

.gallery-close:hover {
    color: var(--red-dark);
}

.gallery-prev, .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    background: rgba(139, 0, 0, 0.5);
    padding: 16px;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 2001;
}

.gallery-prev:hover, .gallery-next:hover {
    background: var(--red-dark);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

/* ===== KONTAKT ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--black);
    padding: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.contact-card:hover {
    transform: translateX(5px);
    border-color: var(--red-dark);
}

.contact-icon i {
    font-size: 32px;
    color: var(--red-dark);
}

.contact-details h4 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-highlight {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.contact-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.btn-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-dark);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-small:hover {
    background: var(--red-bright);
    transform: translateY(-2px);
}

.contact-note-card {
    background: rgba(139, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--red-dark);
}

/* CONTACT FORM */
.contact-form {
    background: var(--black);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: white;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--gray);
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    color: white;
    font-family: inherit;
    transition: all 0.3s;
}

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

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.form-check input {
    width: auto;
}

.form-check label {
    font-size: 12px;
    color: var(--text-muted);
}

.form-check a {
    color: var(--red-dark);
    text-decoration: none;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--red-dark);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--red-bright);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    padding: 48px 0 30px;
    background: var(--black);
    border-top: 1px solid rgba(139, 0, 0, 0.3);
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-col ul li a,
.footer-col ul li {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--red-dark);
}

.footer-col ul li i {
    margin-right: 8px;
    color: var(--red-dark);
    width: 20px;
}

.footer-logo h2 {
    color: var(--red-dark);
    font-size: 28px;
}

.footer-logo p {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.footer-desc {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 13px;
}

/* SOCIAL LINKS IM FOOTER */
.footer-social {
    text-align: center;
    margin: 30px 0 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 0, 0, 0.2);
}

.footer-social h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--black-light);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-muted);
    font-size: 22px;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--red-dark);
    color: white;
    transform: translateY(-3px);
    border-color: var(--red-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.copyright {
    color: var(--text-muted);
    font-size: 12px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black-light);
    border-top: 3px solid var(--red-dark);
    z-index: 1000;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-text i {
    font-size: 36px;
    color: var(--red-dark);
}

.cookie-text h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 18px;
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: inherit;
}

.cookie-btn-primary {
    background: var(--red-dark);
    color: white;
}

.cookie-btn-primary:hover {
    background: var(--red-bright);
    transform: translateY(-2px);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--red-dark);
}

.cookie-btn-secondary:hover {
    background: rgba(139, 0, 0, 0.2);
}

/* ===== LEISTUNGS-SEITEN ===== */
.service-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%);
    padding-top: 100px;
}

.service-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.service-hero .breadcrumb {
    color: var(--text-muted);
    font-size: 14px;
}

.service-hero .breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.service-hero .breadcrumb a:hover {
    color: var(--red-dark);
}

.service-detail {
    padding: 60px 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red-dark);
    text-decoration: none;
    margin-top: 40px;
    font-weight: 600;
    transition: gap 0.3s;
}

.back-link:hover {
    gap: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-content,
    .why-held-content {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 74px;
        left: -100%;
        width: 100%;
        background: var(--black);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 24px;
        transition: 0.3s;
        border-bottom: 1px solid var(--red-dark);
    }

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

    .dropdown-menu {
        position: static;
        background: var(--gray);
        opacity: 1;
        visibility: visible;
        display: none;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 28px;
    }

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

    .why-held-stats {
        justify-content: center;
    }

    .service-content {
        padding: 25px;
    }

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

    .gallery-section {
        padding: 20px;
    }

    .gallery-header h2 {
        font-size: 24px;
    }

    .gallery-prev, .gallery-next {
        font-size: 24px;
        padding: 10px;
    }

    .gallery-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .service-hero h1 {
        font-size: 32px;
    }
}