/* ========================================
   MZM Trockenbau - Premium Website Styles
   ======================================== */

/* CSS Variables */
:root {
    --primary-red: #D62828;
    --primary-red-dark: #b52222;
    --primary-red-light: #ff4444;
    --dark: #0a0a0a;
    --dark-lighter: #151515;
    --dark-card: #1a1a1a;
    --gray-bg: #f8f9fa;
    --gray-text: #6b7280;
    --gray-light: #e5e7eb;
    --white: #ffffff;
    --gold: #c9a227;
    --font-heading: 'Bebas Neue', cursive;
    --font-body: 'Manrope', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.2);
    --shadow-red: 0 10px 40px rgba(214, 40, 40, 0.3);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title span {
    color: var(--primary-red);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--gray-text);
    max-width: 600px;
    font-weight: 400;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Utility Classes */
.text-red { color: var(--primary-red); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray-text); }
.text-center { text-align: center; }
.bg-dark { background: var(--dark); }
.bg-gray { background: var(--gray-bg); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    background: var(--primary-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(214, 40, 40, 0.4);
}

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

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

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

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

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: var(--dark);
    color: var(--white);
    font-size: 0.875rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .top-bar { display: none; }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
}

.top-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.top-link:hover { color: var(--primary-red); }

.top-bar-right {
    color: rgba(255,255,255,0.6);
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
}

.navbar.navbar-dark {
    background: var(--dark);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: invert(100%);
}

.navbar.scrolled .logo img {
    height: 42px;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .nav-links { display: flex; }
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.nav-cta {
    margin-left: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

@media (min-width: 992px) {
    .mobile-menu-btn { display: none; }
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    padding: 100px 2rem 2rem;
    z-index: 1050;
    flex-direction: column;
}

.mobile-menu.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

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

.mobile-link {
    display: block;
    color: var(--white);
    padding: 1rem 0;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-link:hover { color: var(--primary-red); }

.mobile-cta {
    margin-top: 2rem;
}

.mobile-contact {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
}

.mobile-contact a {
    display: block;
    padding: 0.5rem 0;
}

/* ========================================
   Page Header (for subpages)
   ======================================== */
.page-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    overflow: hidden;
    padding-top: 100px;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 20% 30%, rgba(214, 40, 40, 0.18), transparent 45%),
                radial-gradient(circle at 80% 70%, rgba(214, 40, 40, 0.12), transparent 45%);
    animation: pageHeaderGlow 14s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transform: scale(1.06);
    animation: pageHeaderZoom 18s ease-in-out infinite alternate;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, rgba(10,10,10,0.9) 100%);
    z-index: 2;
}

@keyframes pageHeaderZoom {
    0% { transform: scale(1.06) translateY(0); }
    100% { transform: scale(1.14) translateY(-1.5%); }
}

@keyframes pageHeaderGlow {
    0% { transform: translate3d(-2%, -1%, 0) scale(1); opacity: 0.8; }
    100% { transform: translate3d(2%, 1%, 0) scale(1.05); opacity: 1; }
}

.page-header-content {
    position: relative;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
    z-index: 3;
}

.page-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(214, 40, 40, 0.2);
    color: var(--primary-red);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(214, 40, 40, 0.3);
}

.page-header h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    z-index: 3;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--primary-red);
}

.breadcrumb span {
    color: var(--primary-red);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/bg-construction.png');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, rgba(10,10,10,0.85) 50%, rgba(10,10,10,0.7) 100%);
}

/* Animated particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
    position: relative;
    max-width: 900px;
    padding: 6rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(214, 40, 40, 0.15);
    color: var(--primary-red);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(214, 40, 40, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-text {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 650px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.hero-feature svg {
    color: var(--primary-red);
    width: 24px;
    height: 24px;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-red), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.feature-card {
    background: var(--gray-bg);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

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

.feature-card h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray-text);
    font-size: 0.9375rem;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 8rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.8), transparent 60%);
}

.about-image-text {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: var(--white);
}

.about-image-text .label {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.about-image-text .title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
}

/* Floating stat card */
.about-stat-card {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-red);
}

@media (max-width: 992px) {
    .about-stat-card {
        right: 1rem;
        bottom: -1.5rem;
    }
}

.about-stat-card .number {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1;
}

.about-stat-card .text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.about-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about-content .lead {
    font-size: 1.125rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content p {
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.about-checkpoints {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.checkpoint {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--dark);
    font-weight: 500;
}

.checkpoint svg {
    color: var(--primary-red);
    flex-shrink: 0;
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: 8rem 0;
    background: var(--gray-bg);
}

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

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--dark);
    color: var(--white);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

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

.service-card h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--primary-red);
}

.service-card p {
    color: var(--gray-text);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ========================================
   Projects Section
   ======================================== */
.projects-section {
    padding: 8rem 0;
    background: var(--white);
}

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

@media (min-width: 640px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    background: var(--gray-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--dark-lighter), #2a2a2a);
    overflow: hidden;
}

.project-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
}

.project-placeholder span {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(214, 40, 40, 0.95), rgba(214, 40, 40, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-info {
    padding: 1.5rem;
}

.project-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-info h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--dark);
}

.projects-note {
    text-align: center;
    color: var(--gray-text);
    font-size: 0.9375rem;
    margin-top: 3rem;
}

/* ========================================
   Reviews Section
   ======================================== */
.reviews-section {
    padding: 8rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(214, 40, 40, 0.1) 0%, transparent 50%);
}

.reviews-section .section-header {
    position: relative;
}

.reviews-section .section-title {
    color: var(--white);
}

.reviews-section .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.star {
    font-size: 1.5rem;
    color: #4b5563;
}

.star.filled {
    color: #fbbf24;
}

.rating-text {
    color: var(--white);
    font-weight: 600;
    margin-left: 0.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(214, 40, 40, 0.3);
    transform: translateY(-5px);
}

.review-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    color: rgba(214, 40, 40, 0.2);
    font-family: serif;
    line-height: 1;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.review-stars .star {
    font-size: 1rem;
}

.review-text {
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.review-author {
    color: var(--white);
    font-weight: 600;
}

.review-date {
    color: rgba(255,255,255,0.4);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.reviews-link {
    text-align: center;
    margin-top: 3rem;
    position: relative;
}

.reviews-link a {
    color: var(--primary-red);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.reviews-link a:hover {
    color: var(--white);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 8rem 0;
    background: var(--gray-bg);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-info {
    background: var(--dark);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    height: fit-content;
}

.contact-info h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

a.contact-item:hover .contact-icon {
    background: var(--white);
    color: var(--primary-red);
}

a.contact-item:hover .value {
    color: var(--primary-red);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item .label {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-item .value {
    display: block;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
}

.social-links {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-links p {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: var(--dark-card);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.type-toggle {
    display: flex;
    gap: 1rem;
}

.type-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    background: transparent;
    color: var(--gray-text);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.type-btn:hover {
    border-color: var(--dark);
    color: var(--dark);
}

.type-btn.active {
    border-color: var(--primary-red);
    background: rgba(214, 40, 40, 0.05);
    color: var(--primary-red);
}

.input-wrapper {
    position: relative;
}

.input-wrapper svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-text);
    width: 20px;
    height: 20px;
}

.textarea-wrapper svg {
    top: 1rem;
    transform: none;
}

.input-wrapper input,
.input-wrapper textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
    background: var(--white);
}

.form-group select {
    padding-left: 1rem;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus,
.form-group select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(214, 40, 40, 0.1);
}

.input-wrapper textarea {
    resize: none;
    min-height: 120px;
}

.form-error {
    background: #fef2f2;
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    display: none;
}

.form-error.show {
    display: block;
}

.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-text);
    margin-top: 1rem;
}

.consent-check label {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-weight: 500;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.consent-check input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--primary-red);
}

.consent-check a {
    color: var(--primary-red);
    text-decoration: underline;
}

.g-recaptcha {
    margin-top: 0.25rem;
}

.form-success {
    text-align: center;
    padding: 3rem 1rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.form-success h4 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

/* Map */
.map-wrapper {
    margin-top: 4rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/bg-construction.png');
    background-size: cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.cta-buttons .btn-outline {
    border-color: var(--white);
}

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

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
    filter: invert(100%);
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    max-width: 400px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 46px;
    height: 46px;
    background: var(--dark-card);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-nav h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
}

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

.footer-nav a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--primary-red);
    padding-left: 0.5rem;
}

.footer-contact li {
    margin-bottom: 1rem;
}

.footer-contact a,
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--primary-red);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 4rem;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal-links {
    color: rgba(255,255,255,0.7);
}

.footer-legal-links a {
    color: rgba(255,255,255,0.8);
}

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

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ========================================
   Legal Pages
   ======================================== */
.legal-section {
    padding: 6rem 0;
    background: var(--gray-bg);
}

.legal-content {
    max-width: 900px;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.legal-content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #374151;
}

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

/* ========================================
   Cookie Banner
   ======================================== */
.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2500;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.cookie-banner-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
}

.cookie-banner-content a {
    color: var(--primary-red-light);
    text-decoration: underline;
}

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

.cookie-banner-actions .btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

.cookie-banner-actions .btn-outline-dark {
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.cookie-banner-actions .btn-outline-dark:hover {
    background: var(--white);
    color: var(--dark);
}

@media (min-width: 768px) {
    .cookie-banner {
        left: 2rem;
        right: 2rem;
    }

    .cookie-banner-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
        padding: 1.25rem 1.5rem;
    }

    .cookie-banner-content p {
        margin: 0;
    }
}

/* ========================================
   Modal
   ======================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 10;
}

.modal-header h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.25rem;
}

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-bg);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary-red);
    color: var(--white);
}

.modal-body {
    padding: 2rem;
}

.modal-body .form-group {
    margin-bottom: 1.25rem;
}

.modal-body label {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.modal-body input,
.modal-body select,
.modal-body textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
    background: var(--white);
}

.modal-body input:focus,
.modal-body select:focus,
.modal-body textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(214, 40, 40, 0.1);
}

.modal-body textarea {
    resize: none;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-divider {
    border-top: 1px solid var(--gray-light);
    padding-top: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-divider span {
    font-size: 0.9375rem;
    color: var(--gray-text);
}

/* ========================================
   Animations
   ======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.animate-fade-in.animated {
    opacity: 1;
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red-dark);
}

/* Selection */
::selection {
    background: var(--primary-red);
    color: var(--white);
}

/* Wymuszenie większego rozmiaru logo */
.nav-content {
    height: 100px !important; /* Zwiększamy wysokość całego paska, żeby logo miało miejsce */
}

.logo img {
    height: 80px !important; /* Tutaj wpisz pożądaną wysokość logo */
    width: auto !important;
    max-height: none !important;
}

/* Opcjonalnie: dostosowanie rozmiaru po przewinięciu strony */
.navbar.scrolled .logo img {
    height: 60px !important;
}