/* 
   Promonta Multiservice Design System 
   Premium, Modern, Robust.
*/

:root {
    /* Colors */
    --primary: #13325C;
    /* Deep Slate Blue */
    --primary-dark: #0f172a;
    --secondary: #334155;
    --accent: #f59e0b;
    /* Amber/Gold */
    --accent-hover: #d97706;
    --text-main: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

h3 {
    padding-bottom: 10px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

.mt-2 {
    margin-top: 2rem;
}

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

.bg-dark {
    background-color: var(--primary-dark);
}

.bg-primary {
    background-color: var(--primary);
}

.text-white {
    color: white !important;
}

.text-white h2,
.text-white h3,
.text-white p,
.text-white span {
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: var(--secondary);
}

.btn-outline {
    border-color: white;
    color: white;
}

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

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

.btn-white:hover {
    background-color: #f1f5f9;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.2rem;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.logo .highlight {
    color: var(--accent);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a:not(.btn) {
    font-weight: 500;
    color: var(--primary);
    position: relative;
}

.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s;
}

.main-nav a:not(.btn):hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Active State */
.hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* Hero Section */
#hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 80px;

    /* Removed static image background for video */
    background-color: rgba(15, 23, 42, 0.6);
    color: white;
    padding-top: 80px;
    /* Header height */
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Abstract shapes background */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(15, 23, 42, 0.6) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

#hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

#hero h1 .highlight {
    color: var(--accent);
}

.hero-kicker {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #94a3b8;
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: inline-flex;
    gap: 4rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 3rem;
    border-radius: var(--border-radius-lg);
    margin-top: 1rem;
}

.stat-item .value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-item .label {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Sections General */
section {
    padding: var(--spacing-xl) 0;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--accent-hover);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

#leistungen .grid-3 {
    margin-top: 4rem;
}

/* Services */
.service-card,
.service-card-img {
    background: white;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card {
    padding: 2rem;
}

.service-card:hover,
.service-card-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3,
.service-card-img h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-card ul li,
.service-card-img ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.6rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-card ul li::before,
.service-card-img ul li::before {
    content: '✓';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-family: inherit;
}


/* About */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gradient-box {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
}

.gradient-box::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid var(--accent);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.5;
}

/* Kompetenzen */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.kompetenz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.kompetenz-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--accent);
}

.kompetenz-card h4 {
    margin-bottom: 0.5rem;
}

.kompetenz-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}


/* Erfahrung Modern Redesign */
#erfahrung {
    position: relative;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95)), url('assets/tiler-working-renovation-apartment3-scaled.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
}

.experience-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.experience-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
}

.experience-text p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.8;
}

.experience-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item-modern:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.stat-item-modern .value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item-modern .label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: white;
    font-weight: 600;
}

@media (max-width: 900px) {
    .experience-stats-grid {
        gap: 1.5rem;
    }

    .stat-item-modern {
        padding: 1.5rem;
    }

    .stat-item-modern .value {
        font-size: 2.5rem;
    }
}

@media (max-width: 500px) {
    .experience-stats-grid {
        gap: 1rem;
    }

    .stat-item-modern {
        padding: 1.25rem 1rem;
    }

    .stat-item-modern .value {
        font-size: 2rem;
    }

    .stat-item-modern .label {
        font-size: 0.7rem;
    }
}

.highlight-card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.highlight-card-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.highlight-card-glass h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.highlight-card-glass p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .experience-intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .experience-text h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 500px) {
    .experience-intro-grid {
        gap: 2rem;
    }

    .experience-text h2 {
        font-size: 2rem;
    }
}

/* Innovative Solutions */
.check-list {
    text-align: left;
    max-width: 100%;
    margin: 2rem 0;
}

.check-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.check-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
    background: rgba(245, 158, 11, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


/* CTA */
/* CTA */
#cta {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('assets/construction-with-mobile-phone-scaled.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

#cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

#cta h3 {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

#cta p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(245, 158, 11, 0.7);
    }

    70% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(245, 158, 11, 0);
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding-top: 4rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    padding-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.logo-footer {
    font-family: var(--font-heading);
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

address {
    font-style: normal;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-links a {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

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

.footer-meta {
    background-color: #020617;
    padding: 1.5rem 0;
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    #hero {
        margin-top: 60px;
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 4rem;
        text-align: center;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

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

    .hero-lead {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        width: 100%;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 1rem 0.5rem;
        margin-top: 2rem;
    }

    .stat-item {
        flex: 1;
        text-align: center;
        min-width: 0;
    }

    .stat-item .value {
        font-size: 1.4rem;
        margin-bottom: 0.2rem;
    }

    .stat-item .label {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

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

    /* Mobile Nav */
    .hamburger {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 2rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-color);
        animation: slideDown 0.3s ease-out;
    }

    .main-nav.is-active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .main-nav a {
        display: block;
        font-size: 1.1rem;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Utilities */
.img-fluid {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.rounded-lg {
    border-radius: var(--border-radius-lg);
}

.shadow-lg {
    box-shadow: var(--shadow-xl);
}

.border-accent {
    border: 2px solid var(--accent);
}

/* Service Card with Image */
.service-card-img {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-img-top {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-img:hover .card-img-top img {
    transform: scale(1.1);
}

.service-card-img .card-content {
    padding: 2rem;
    flex: 1;
}

/* Reverse Split Layout */
.reverse {
    direction: rtl;
    /* Simple hack for switching order, or use order css */
}

.reverse>* {
    direction: ltr;
}

@media (min-width: 769px) {
    .reverse .content {
        order: 2;
    }

    .reverse .image-wrapper {
        order: 1;
    }
}

/* FAQ Section */
.faq-grid {
    display: grid;
    gap: 0.8rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.faq-question {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.faq-question::-webkit-details-marker {
    display: none;
}

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

details[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    border-top: 1px solid transparent;
}

details[open] .faq-answer {
    border-top-color: var(--border-color);
    padding-top: 1.5rem;
    animation: slideDownFade 0.3s ease-out;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reviews Slider */
.reviews-slider {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 0 2rem 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.reviews-slider::-webkit-scrollbar {
    height: 6px;
}

.reviews-slider::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.reviews-slider::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.review-card {
    flex: 0 0 320px;
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    scroll-snap-align: start;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.stars {
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.review-service {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 3rem;
}

.review-card p {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Subpage Styles */
.page-hero {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.page-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 0;
}

.page-content {
    padding: 4rem 0;
}

.page-content h2,
.page-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.page-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.page-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.page-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.gallery {
    padding-bottom: 4rem;
}

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.02);
}

.btn-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: margin-left 0.3s ease;
}

.service-card-img:hover .btn-link {
    margin-left: 5px;
}

/* Breadcrumbs */
.breadcrumb-nav {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-item.active {
    color: var(--accent);
    cursor: default;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.4);
    margin-right: 0.5rem;
}

/* Quiz Form Styles */
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: left;
    box-shadow: var(--shadow-xl);
}

.quiz-progress-wrapper {
    margin-bottom: 3rem;
}

.quiz-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.4s ease;
}

.quiz-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.quiz-step.active {
    display: block;
}

.quiz-step-title {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.quiz-option {
    position: relative;
    cursor: pointer;
}

.quiz-option input {
    position: absolute;
    opacity: 0;
}

.quiz-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quiz-card i,
.quiz-card-icon {
    font-size: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    object-fit: contain;
}

.quiz-card span {
    color: white;
    font-weight: 500;
}

.quiz-option input:checked+.quiz-card {
    border-color: var(--accent);
    background: rgba(245, 158, 11, 0.1);
}

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

.quiz-form-group label {
    display: block;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.quiz-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.quiz-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 1rem;
}

.btn-quiz-prev {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-quiz-prev:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-quiz-next,
.btn-quiz-submit {
    flex: 1;
}

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

.quiz-checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.quiz-checkbox-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.quiz-checkbox-item input {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
}

.quiz-checkbox-item span {
    color: white;
    font-size: 0.95rem;
}

.quiz-checkbox-item input:checked+span {
    color: var(--accent);
}

.quiz-file-upload {
    border: 2px dashed rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-file-upload:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.03);
}

.quiz-file-upload i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.quiz-file-upload p {
    margin: 0;
    font-size: 0.9rem;
    color: #94a3b8;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 630px) {
    .container {
        padding: 0 0.75rem;
    }

    .quiz-container {
        padding: 1rem;
    }

    .quiz-progress-wrapper {
        margin-bottom: 2rem;
    }

    .quiz-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    /* Override inline styles if any (from quiz.js) */
    .quiz-step.active .quiz-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.5rem !important;
    }

    .quiz-card {
        padding: 0.75rem 0.4rem;
    }

    .quiz-card i,
    .quiz-card-icon {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }

    .quiz-card span {
        font-size: 0.75rem;
        line-height: 1.1;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        display: block;
        width: 100%;
    }

    .quiz-step-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .quiz-navigation {
        flex-direction: column-reverse;
        gap: 0.5rem;
    }

    .btn-quiz-next,
    .btn-quiz-submit,
    .btn-quiz-prev {
        width: 100%;
        margin: 0 !important;
        padding: 10px;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: none;
    animation: slideUpCookie 0.5s ease-out forwards;
}

@keyframes slideUpCookie {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-consent-banner.is-active {
    display: block;
}

.cookie-content h4 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.cookie-content p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    flex: 1;
    min-width: 140px;
    padding: 10px 15px;
    font-size: 0.85rem;
}

.btn-cookie-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cookie-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .cookie-consent-banner {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
        padding: 1.5rem;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }
}