:root {
    --primary-blue: #004080;
    --dark-bg: #1a1a1a;
    --accent-orange: #FF6600;
    --light-bg: #F9F9F9;
    --text-dark: #333333;
    --text-light: #f9f9f9;
    --white: #FFFFFF;
}

.dark-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001f3f 100%) !important;
    color: var(--text-light);
}

.dark-section h2, .dark-section h3 {
    color: var(--text-light) !important;
}

.dark-section p {
    color: #ccc !important;
}

/* Base styles, Reset, Layout */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--text-dark); background-color: var(--light-bg); overflow-x: hidden; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.logo { font-weight: 800; font-size: 20px; color: var(--primary-blue); text-decoration: none; white-space: nowrap; flex-shrink: 0; }
.nav-drawer { display: flex; justify-content: center; align-items: center; flex-grow: 1; transition: 0.3s; }
.site-navigation ul { list-style: none; display: flex; gap: 20px; margin: 0; position: relative; }
.site-navigation li { position: relative; }
.site-navigation a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 15px; transition: color 0.3s; white-space: nowrap; display: block; }
.site-navigation a:hover { color: var(--accent-orange); }

/* Dropdown / Sub-menus */
.site-navigation ul.sub-menu { display: none; position: absolute; top: 100%; left: -15px; background: #fff; padding: 15px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); flex-direction: column; gap: 15px; min-width: 240px; border-radius: 8px; z-index: 100; margin-top: 15px; border: 1px solid #f0f0f0; }
.site-navigation ul.sub-menu::before { content:''; position: absolute; top: -15px; left: 0; width: 100%; height: 15px; } /* bridge gap */
.site-navigation li:hover > ul.sub-menu { display: flex; }
.site-navigation ul.sub-menu a { font-weight: 500; font-size: 14px; }

.header-contact { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-contact a { background: var(--accent-orange); color: var(--white); padding: 8px 15px; border-radius: 5px; text-decoration: none; font-weight: 700; transition: 0.3s transform, 0.3s background; white-space: nowrap; font-size: 14px; }
.header-contact a:hover { background: #e05a00; transform: translateY(-2px); }
.header-contact a.btn-whatsapp { background: #25D366; }
.header-contact a.btn-whatsapp:hover { background: #128C7E; }
.header-phone-link { background: transparent !important; color: var(--primary-blue) !important; padding: 0 !important; font-size: 1.1rem !important; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 5px; z-index: 1100; flex-shrink: 0; }
.menu-toggle span { display: block; width: 25px; height: 3px; background-color: var(--primary-blue); transition: 0.3s; border-radius: 3px; }

/* Hero Section with Parallax & Doors Animation */
.hero { position: relative; padding: 140px 0; text-align: center; background: linear-gradient(135deg, rgba(0,64,128,0.4) 0%, rgba(0,31,63,0.6) 100%), url('../img/Hero.webp') center/cover no-repeat; overflow: hidden; perspective: 1000px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); z-index: 10; }
.elevation-layer { position: relative; z-index: 9; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.hero-parallax { position: relative; z-index: 10; width: 100%; will-change: transform; }
.hero-content { position: relative; opacity: 0; transform: translateY(20px); transition: opacity 1s ease 0.6s, transform 1s ease 0.6s; }
.hero.is-loaded .hero-content { opacity: 1; transform: translateY(0); }
.hero h1 { font-size: 48px; color: #fff; margin-bottom: 25px; line-height: 1.1; font-weight: 700; text-shadow: 0 4px 15px rgba(0,0,0,0.4); }
.hero p { font-size: 20px; color: var(--accent-orange); margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; text-shadow: 0 2px 10px rgba(0,0,0,0.3); font-weight: 700; }
.hero-usps { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin-top: 12px; }
.usp-item { font-size: 14px; font-weight: 500; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }

/* Pulse Animation for CTA */
@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 102, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}
.btn-main { background: var(--accent-orange); color: #fff; padding: 18px 40px; font-size: 20px; border-radius: 6px; text-decoration: none; display: inline-block; font-weight: bold; transition: 0.3s transform; animation: pulseBtn 2.5s infinite; position: relative; overflow: hidden; }
.btn-main:hover { background: #e05a00; transform: translateY(-2px); animation: none; }

/* Shine / Glint effect for CTA */
@keyframes shineGlint {
    0% { left: -100%; }
    20% { left: 120%; }
    100% { left: 120%; }
}
.btn-shine::after { content: ''; position: absolute; top: -10%; left: -100%; width: 40px; height: 120%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transform: skewX(-20deg); animation: shineGlint 4s ease-in-out infinite 1s; pointer-events: none; }

/* Doors Animation (Hero) */
.door { position: absolute; top: 0; bottom: 0; width: 50%; background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); z-index: 20; transition: transform 3s cubic-bezier(0.65, 0, 0.05, 1) 0.2s, opacity 1s ease 2.5s; box-shadow: 0 0 50px rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.4); }
.door::after { content: ''; position: absolute; top: 20%; bottom: 20%; width: 5px; background: rgba(0,0,0,0.05); border-radius: 5px; }
.door-left { left: 0; transform-origin: left; border-right: 1px solid rgba(0,0,0,0.1); }
.door-left::after { right: 20px; }
.door-right { right: 0; transform-origin: right; border-left: 1px solid rgba(0,0,0,0.1); }
.door-right::after { left: 20px; }

.hero-door-label { position: absolute; top: 50%; font-weight: 700; font-size: 2.22rem; white-space: nowrap; text-transform: uppercase; letter-spacing: 5px; z-index: 25; pointer-events: none; transition: opacity 1.5s ease; color: var(--primary-blue); text-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.door-left .hero-door-label { right: 40px; }
.door-right .hero-door-label { left: 40px; }

/* Doors Animation - Slide & Fade (Clean & No Mirroring) */
.hero.is-loaded .door-left { transform: translateX(-100%); opacity: 0; }
.hero.is-loaded .door-right { transform: translateX(100%); opacity: 0; }
.hero.is-loaded .hero-door-label { opacity: 0; }

/* Trust Badges */
.trust-badges { margin-top: 30px; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; font-size: 0.9rem; color: #666; }
.trust-badges span { display: inline-flex; align-items: center; background: rgba(255,102,0,0.1); padding: 5px 12px; border-radius: 20px; color: var(--primary-blue); font-weight: 600; }

/* (Removed shelf background pattern) */

/* 4. LEISTUNGEN (Premium Glass Doors) */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.service-card { position: relative; background: #fff; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); overflow: hidden; perspective: 1500px; min-height: 450px; cursor: pointer; }
.card-content { padding: 50px 40px; height: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.card-list { list-style: none; margin: 25px 0; padding: 0; text-align: left; width: 100%; }
.card-list li { margin-bottom: 25px !important; font-size: 15px; color: #555; display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.8); padding: 10px 15px; border-radius: 4px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); opacity: 0; transform: translateY(10px); transition: 0.5s ease; }
.service-card:hover .card-list li, .service-card.is-open .card-list li { opacity: 1; transform: translateY(0); }
.service-card:hover .card-list li:nth-child(1), .service-card.is-open .card-list li:nth-child(1) { transition-delay: 0.3s; }
.service-card:hover .card-list li:nth-child(2), .service-card.is-open .card-list li:nth-child(2) { transition-delay: 0.4s; }
.service-card:hover .card-list li:nth-child(3), .service-card.is-open .card-list li:nth-child(3) { transition-delay: 0.5s; }
.service-card:hover .card-list li:nth-child(4), .service-card.is-open .card-list li:nth-child(4) { transition-delay: 0.6s; }

.service-card .btn-secondary { 
    background: var(--accent-orange); color: #fff; padding: 12px 30px; border-radius: 6px; text-decoration: none; font-weight: 700; 
    transition: 0.5s ease; display: inline-block; width: auto; align-self: center; margin-top: auto; 
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3); opacity: 0; transform: translateY(20px);
}
.service-card:hover .btn-secondary, .service-card.is-open .btn-secondary { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
.service-card:hover .btn-secondary:hover, .service-card.is-open .btn-secondary:hover { background: #e05a00; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5); transition-delay: 0s; }

/* Glass Doors */
.card-doors { position: absolute; inset: 0; z-index: 10; display: flex; transition: opacity 0.4s; perspective: 1500px; transform-style: preserve-3d; cursor: pointer; }
.card-door { width: 50%; height: 100%; background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: inset 0 0 30px rgba(0,0,0,0.1); border: 1px solid rgba(255,255,255,0.4); position: relative; }
.card-door-left { transform-origin: left; border-right: 1px solid rgba(0,0,0,0.1); }
.card-door-right { transform-origin: right; border-left: 1px solid rgba(0,0,0,0.1); }

/* Premium Handles */
.card-door::before { content: ''; position: absolute; top: 50%; transform: translateY(-50%); width: 4px; height: 100px; background: linear-gradient(to bottom, #ddd, #bbb, #ddd); border-radius: 4px; box-shadow: 2px 0 10px rgba(0,0,0,0.1); }
.card-door-left::before { right: -2px; z-index: 21; }
.card-door-right::before { left: -2px; z-index: 21; }

.door-label {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 22; text-align: center; color: var(--primary-blue); font-weight: 800; font-size: 2rem; pointer-events: none; transition: opacity 0.5s ease; width: 100%; text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-card:hover .door-label, .service-card.is-open .door-label { opacity: 0; }
.service-card:hover .card-door-left, .service-card.is-open .card-door-left { transform: rotateY(-110deg) translateZ(10px); }
.service-card:hover .card-door-right, .service-card.is-open .card-door-right { transform: rotateY(110deg) translateZ(10px); }
.service-card:hover .tap-hint, .service-card.is-open .tap-hint { transform: scale(1.05); }

/* Cabinet Interior Effect */
.card-content {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    position: relative; overflow: hidden;
    /* Shelf simulation */
    background-image: linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 100% 80px; 
}

.card-content::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.05); pointer-events: none;
}

.card-list li {
    background: rgba(255,255,255,0.8); padding: 10px 15px; border-radius: 4px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); margin-bottom: 25px !important; transform: translateZ(20px);
}

.service-card:hover .door-label { opacity: 0; }
.service-card:hover .card-door-left { transform: rotateY(-110deg) translateZ(10px); }
.service-card:hover .card-door-right { transform: rotateY(110deg) translateZ(10px); }

/* Intersection Observer fade-up */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; will-change: transform, opacity; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* Footer */
.site-footer { background: #222; color: #fff; padding: 60px 0; text-align: center; }
.disclaimer { font-size: 11px; color: #888; border-top: 1px solid #444; margin-top: 30px; padding-top: 20px; }

/* Tablet & Mobile Nav */
@media (max-width: 1024px) {
    .menu-toggle { display: flex; }
    .nav-drawer {
        position: absolute; top: 100%; left: 0; right: 0; background: #ffffff !important; padding: 30px 20px;
        box-shadow: 0 20px 30px rgba(0,0,0,0.15); transform: translateY(-20px); opacity: 0; visibility: hidden;
        pointer-events: none; flex-direction: column; gap: 30px; text-align: center; border-top: 1px solid #eee; z-index: 1000;
        width: 100%; flex-grow: 0;
    }
    .nav-open .nav-drawer { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: all; }
    
    .site-navigation { width: 100%; }
    .site-navigation ul { flex-direction: column; gap: 20px; align-items: center; width: 100%; }
    
    /* Mobile Sub-menus */
    .site-navigation ul.sub-menu { position: relative; display: flex !important; top: 0; left: 0; box-shadow: none; border: none; padding: 15px 0 0 0; background: transparent; width: 100%; align-items: center; margin: 0; }
    .site-navigation ul.sub-menu a { font-weight: 400; font-size: 15px; color: #666; }
    
    .header-contact { margin-left: auto; margin-right: 15px; gap: 10px; }
    .header-contact a { padding: 6px 12px; font-size: 13px; }
    
    /* Hamburger to X */
    .nav-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
    .nav-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Mobile Small: < 768px */
@media (max-width: 768px) {
    .header-inner { flex-wrap: nowrap; gap: 5px; justify-content: space-between; }
    .logo { font-size: 15px; }
    .header-contact { gap: 5px; margin-right: 5px; margin-left: auto; }
    .header-phone-link { font-size: 0.85rem !important; }
    .header-contact a { padding: 4px 8px; font-size: 11px; }
    .menu-toggle { padding: 2px; }
    .menu-toggle span { width: 22px; height: 3px; }

    .hero { padding: 80px 0; background: linear-gradient(135deg, rgba(0,64,128,0.4) 0%, rgba(0,31,63,0.6) 100%), url('../img/HeroPhone.webp') center/cover no-repeat; }
    .hero h1 { font-size: 28px; }
}

/* Table of Contents (TOC+) Premium Styling */
#toc_container {
    background: #fdfdfd !important;
    border: 1px solid rgba(0, 64, 128, 0.1) !important;
    border-radius: 12px !important;
    padding: 25px !important;
    margin-bottom: 40px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03) !important;
    width: auto !important;
    display: inline-block !important;
    min-width: 300px;
}

#toc_container .toc_title {
    color: var(--primary-blue) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    border-bottom: 2px solid var(--accent-orange) !important;
    padding-bottom: 8px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#toc_container .toc_list {
    margin-top: 15px !important;
    padding-left: 0 !important;
    list-style: none !important;
}

#toc_container .toc_list li {
    margin-bottom: 8px !important;
    font-size: 15px !important;
}

#toc_container .toc_list li a {
    color: #444 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
}

#toc_container .toc_list li a:hover {
    color: var(--accent-orange) !important;
    transform: translateX(5px);
}

#toc_container .toc_toggle {
    font-size: 0 !important; /* Hides the brackets [] */
    line-height: 0;
}

#toc_container .toc_toggle a {
    color: var(--primary-blue) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    background: rgba(0, 64, 128, 0.05);
    padding: 4px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

#toc_container .toc_toggle a:hover {
    background: var(--accent-orange);
    color: #fff !important;
}

/* Service Page Layout */
.service-main-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.service-main-text h2 {
    color: var(--primary-blue);
    margin: 45px 0 20px;
    font-size: 28px;
    clear: both;
}

.service-main-text h3 {
    color: var(--primary-blue);
    margin: 35px 0 15px;
    font-size: 20px;
}

.service-trust-float {
    float: right;
    width: 440px;
    margin: 0 0 40px 50px;
}

.service-trust-sidebar {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid rgba(0, 64, 128, 0.08);
    border-top: 5px solid var(--accent-orange);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 18px;
}

.trust-icon {
    font-size: 24px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #fff 0%, #fff7f2 100%);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 102, 0, 0.15);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.08);
}

.trust-list li strong {
    color: var(--primary-blue);
    display: block;
    font-size: 17px;
    margin-bottom: 2px;
}

.trust-list li span {
    color: #555;
    font-size: 14px;
    line-height: 1.4;
    display: block;
}

@media (max-width: 1024px) {
    .service-trust-float {
        float: none;
        width: 100%;
        margin: 0 0 40px 0;
    }
}

/* Über mich (About Me) */
.about-section { background: var(--dark-bg); padding: 120px 0; color: #fff; }
.about-grid { display: flex; align-items: center; gap: 80px; flex-wrap: wrap; }
.about-image { flex: 0 0 320px; position: relative; }
.about-image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.about-image::after { content: ''; position: absolute; top: -15px; right: -15px; bottom: -15px; left: -15px; border: 2px solid var(--accent-orange); border-radius: 20px; z-index: -1; }
.about-text { flex: 1; min-width: 300px; }
.about-text h2 { color: var(--primary-blue); margin-bottom: 25px; }

/* Cookie Banner Premium */
.cookie-banner { position: fixed; bottom: 30px; left: 30px; right: 30px; max-width: 1000px; margin: 0 auto; background: rgba(255, 255, 255, 0.95); border-radius: 16px; padding: 30px; display: none; flex-direction: column; gap: 20px; z-index: 10000; box-shadow: 0 20px 50px rgba(0,0,0,0.15); backdrop-filter: blur(15px); border: 1px solid rgba(0,0,0,0.05); transition: opacity 0.5s, transform 0.5s; }
.cookie-banner.active { display: flex; animation: slideInUp 0.6s ease-out; }

.cookie-content { display: flex; gap: 30px; align-items: flex-start; }
.cookie-text { flex: 1; }
.cookie-text h4 { color: var(--primary-blue); margin-bottom: 10px; font-size: 18px; }
.cookie-text p { color: #666; font-size: 14px; line-height: 1.6; margin: 0; }

.cookie-actions { display: flex; gap: 12px; align-items: center; white-space: nowrap; }
.btn-cookie { padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: 14px; cursor: pointer; transition: 0.3s; border: none; }
.btn-cookie-accept { background: var(--accent-orange); color: #fff; }
.btn-cookie-accept:hover { background: #e05a00; }
.btn-cookie-reject,
.btn-cookie-settings {
    background: #f0f0f0;
    color: #444;
}

.btn-cookie-reject:hover,
.btn-cookie-settings:hover {
    background: #e0e0e0;
    color: #000;
}

/* Cookie Settings Modal Styles */
.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.cookie-settings-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    color: #333;
}

.modal-header {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px; margin-bottom: 20px;
}

.modal-header h3 { color: var(--primary-blue); margin: 0; font-size: 1.2rem; font-weight: 700; }
.modal-close { background: none; border: none; font-size: 2rem; cursor: pointer; color: #999; }

.cookie-item { margin-bottom: 25px; }

.cookie-option {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 15px 0; border-bottom: 1px solid #f9f9f9;
}

.option-info { flex: 1; padding-right: 20px; }
.option-info strong { display: block; color: var(--primary-blue); font-size: 1rem; margin-bottom: 4px; }
.option-info span { display: block; font-size: 13px; color: #777; line-height: 1.5; }

/* Switch Toggle Styling */
.switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc; transition: .4s; border-radius: 24px;
}
.slider:before {
    position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px;
    background-color: white; transition: .4s; border-radius: 50%;
}
input:checked + .slider { background-color: var(--accent-orange); }
input:checked + .slider:before { transform: translateX(20px); }
input:disabled + .slider { opacity: 0.5; cursor: not-allowed; }

/* FAQ Accordion */
.faq-accordion {
    margin-top: 30px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-orange);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-orange);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 20px;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Adjust based on content */
    padding-bottom: 20px;
}
.btn-cookie-reject { background: transparent; color: #999; text-decoration: underline; font-size: 13px; }

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

@media (max-width: 768px) {
  .cookie-content { flex-direction: column; gap: 20px; }
  .cookie-actions { width: 100%; flex-wrap: wrap; }
  .btn-cookie { flex: 1; min-width: 120px; }
}

/* Gallery Section */
.gallery-section { padding: 100px 0; background: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0, 51, 102, 0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; background: var(--accent-orange); padding: 10px 20px; border-radius: 30px; font-weight: 700; transform: translateY(20px); transition: 0.3s; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* Lightbox */
.lightbox { 
    position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 2000; 
    display: none; align-items: center; justify-content: center; padding: 20px; 
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.lightbox.active { display: flex; }

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

.lightbox img { 
    max-width: 100%; max-height: 80vh; 
    border-radius: 8px; box-shadow: 0 0 50px rgba(0,0,0,0.5); 
    object-fit: contain; /* Ensure images scale correctly within container */
}

.lightbox-caption { color: #fff; margin-top: 15px; font-size: 16px; font-weight: 600; }
.lightbox-close { 
    position: absolute; top: -50px; right: -20px; color: #fff; 
    font-size: 40px; cursor: pointer; background: none; border: none; 
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.lightbox-nav button {
    pointer-events: all;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.lightbox-nav button:hover {
    background: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .lightbox-nav button { width: 40px; height: 40px; font-size: 2rem; }
}

@media (max-width: 768px) {
    .lightbox-close { right: 0; top: -60px; }
}

@media (max-width: 768px) {
  .about-grid { gap: 30px; text-align: center; }
  .about-image { flex: 1 0 100%; min-width: 0; }
  .google-badge { flex-wrap: wrap; justify-content: center; }
}

/* Dark Section Fixes */
.dark-section .ti-widget .ti-header, 
.dark-section .ti-widget .ti-header strong, 
.dark-section .ti-widget .ti-header span,
.dark-section .ti-widget .ti-footer, 
.dark-section .ti-widget .ti-footer a, 
.dark-section .ti-widget .ti-footer span {
    color: #ffffff !important;
}

/* FAQ Dark Mode Integration */
.dark-section.faq-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001f3f 100%);
    color: #fff;
}
.dark-section .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.dark-section .faq-question {
    color: #fff;
}
.dark-section .faq-question:hover {
    color: var(--accent-orange);
}
.dark-section .faq-answer {
    color: #ccc;
}

/* --- NEW PREMIUM HERO STYLES --- */
.hero-premium {
    position: relative;
    padding: 120px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,40,80,0.3) 0%, rgba(0,40,80,0.15) 50%, transparent 100%);
    z-index: 1;
}

.hero-premium .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-premium-content {
    text-align: left;
}

.hero-premium-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-premium-content .subline {
    font-size: clamp(16px, 1.6vw, 20px);
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 540px;
}

.hero-premium-usps {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-premium-usps li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-premium-usps li i, 
.hero-premium-usps li svg {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.hero-cta-button {
    display: inline-block;
    background: var(--accent-orange);
    color: #fff;
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.hero-cta-button:hover {
    background: #e05a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,102,0,0.3);
}

@media (max-width: 900px) {
    .hero-premium .container {
        grid-template-columns: 1fr;
    }
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0,30,60,0.6) 0%, rgba(0,40,80,0.4) 100%);
    }
    .hero-premium {
        padding: 80px 0;
        min-height: auto;
        text-align: center;
    }
    .hero-premium-content {
        text-align: center;
    }
    .hero-premium-content .subline {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-premium-usps {
        align-items: center;
    }
}

/* --- REVIEWS PAGE --- */
.reviews-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.timelapse-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    aspect-ratio: 16/9;
    background: #000;
}

.timelapse-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timelapse-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.2);
}

.timelapse-overlay:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.05);
}

/* MyHammer Custom Reviews */
.myhammer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mh-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.mh-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.mh-stars {
    color: var(--accent-orange);
    font-size: 18px;
    letter-spacing: 2px;
}

.mh-date {
    font-size: 13px;
    color: #999;
}

.mh-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    flex: 1;
}

.mh-footer {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.mh-author {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.mh-source {
    font-size: 12px;
    color: #888;
}

.mh-source a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
}

/* Before / After Slider Grid */
.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ba-col {
    position: relative;
    aspect-ratio: 4/5;
}

.ba-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,30,60,0.8);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

@media (max-width: 900px) {
    .reviews-hero-grid { grid-template-columns: 1fr; }
    .ba-grid { grid-template-columns: 1fr; }
    .ba-col { aspect-ratio: 16/9; }
}
