/* ========================================
   JM System UG - Custom Styles
   Industrial & Modern Design
   ======================================== */

/* ========================================
   CSS Variables (Design System)
   Dark Industrial Steel/Metal Theme
   ======================================== */
:root {
    /* Color Palette - Dark Steel/Metal Theme */
    --primary-color: #1a1d23;
    --primary-dark: #0d0f12;
    --primary-light: #2a2e35;
    --secondary-color: #3d4450;
    --accent-color: #d4af37;
    --accent-hover: #b8951f;
    --accent-dark: #8b7329;

    /* Steel Shades */
    --steel-dark: #1e2228;
    --steel-medium: #2d3139;
    --steel-light: #3f4650;
    --steel-lighter: #545b6a;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f5f5f5;
    --light-bg: #1a1d23;
    --light-gray: #3d4450;
    --medium-gray: #545b6a;
    --dark-gray: #0d0f12;
    --text-primary: #e8e9ea;
    --text-secondary: #b0b3b8;
    --text-muted: #8a8d93;

    /* Spacing */
    --section-padding: 5rem 0;
    --section-padding-sm: 3rem 0;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --heading-font: 'Montserrat', 'Inter', sans-serif;
    --heading-weight: 700;
    --body-weight: 400;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* ========================================
   Global Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background-color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: var(--heading-weight);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: -0.5px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-hover);
    text-shadow: var(--shadow-glow);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: var(--section-padding);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    background: transparent;
    box-shadow: none;
    padding: 0.5rem 0;
    transition: var(--transition-normal);
    border-bottom: none;
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white) !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.navbar.scrolled .navbar-brand {
    color: var(--steel-dark) !important;
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
    text-shadow: none;
}

.navbar-brand i {
    color: var(--accent-color);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 4px;
    transition: var(--transition-fast);
    position: relative;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--steel-dark) !important;
}

.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-normal);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
    background-color: rgba(212, 175, 55, 0.1);
}

/* Logo invert filter for transparent navbar (black logo on dark background) */
.navbar .navbar-brand img {
    filter: brightness(0) invert(1);
    transition: var(--transition-normal);
}

.navbar.scrolled .navbar-brand img {
    filter: none;
}

.navbar-toggler {
    border: 2px solid var(--white);
    padding: 0.5rem;
}

.navbar.scrolled .navbar-toggler {
    border-color: var(--accent-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav .nav-link i {
    opacity: 0.7;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover i {
    opacity: 1;
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 25px !important;
    margin-left: 0.5rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    transition: var(--transition-normal);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-nav-cta::after {
    display: none !important;
}

.btn-nav-cta:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5) !important;
    color: var(--white) !important;
}

/* ========================================
   Hero Section
   ======================================== */
/* ========================================
   Hero Section - Full Viewport Design
   ======================================== */
.hero-section {
    min-height: 100vh;
    background:
        url('../img/hero-section-metal-facade-building.jpg') center center/cover no-repeat fixed;
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(13, 15, 18, 0.85) 0%,
            rgba(26, 29, 35, 0.75) 50%,
            rgba(13, 15, 18, 0.85) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(139, 115, 41, 0.2));
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-badge i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

/* Hero Title */
.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.hero-title-highlight {
    color: var(--accent-color);
    display: inline-block;
    position: relative;
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    animation: slideIn 0.8s ease-out 1s both;
}

/* Hero Description */
.hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description strong {
    color: var(--white);
    font-weight: 600;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-primary {
    background: var(--accent-color);
    border: none;
}

.hero-buttons .btn-primary:hover {
    background: var(--accent-hover);
}

.hero-buttons .btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.hero-scroll-indicator:hover {
    color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   Page Hero Sections (Non-Homepage)
   ======================================== */
.page-hero-section {
    min-height: 60vh;
    background: url('../img/hero-section-metal-facade-building.jpg') center center/cover no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
}

.page-hero-section .hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(13, 15, 18, 0.8) 0%,
            rgba(26, 29, 35, 0.7) 50%,
            rgba(13, 15, 18, 0.8) 100%);
    z-index: 1;
}

.page-hero-section .container {
    position: relative;
    z-index: 3;
}

.page-hero-content {
    position: relative;
    z-index: 3;
}

.page-hero-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8) !important;
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: var(--transition-fast);
}

.page-hero-breadcrumb a:hover {
    color: var(--accent-color) !important;
}

.page-hero-breadcrumb .separator {
    margin: 0 0.75rem;
    color: rgba(255, 255, 255, 0.5) !important;
}

.page-hero-title {
    font-size: 3rem;
    font-family: var(--heading-font);
    font-weight: 800;
    color: var(--white) !important;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

.page-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 2rem;
}

.page-hero-description strong {
    color: var(--accent-color) !important;
    font-weight: 600;
}

/* Services Page Hero - Professional Version */
.page-hero-services-pro {
    min-height: 75vh;
    background: url('../img/hero-section-metal-facade-building.jpg') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.page-hero-services-pro .hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(13, 15, 18, 0.85) 0%,
            rgba(26, 29, 35, 0.75) 50%,
            rgba(13, 15, 18, 0.85) 100%);
    z-index: 1;
}

.page-hero-services-pro .container {
    position: relative;
    z-index: 3;
}

.page-hero-services-pro .page-hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

.page-hero-services-pro .page-hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--white) !important;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.6);
}

.page-hero-services-pro .page-hero-description {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 3rem;
}

.page-hero-services-pro .page-hero-breadcrumb,
.page-hero-services-pro .page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.8);
}

.page-hero-services-pro .title-accent {
    color: var(--accent-color) !important;
    display: inline;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 2px 4px 12px rgba(0, 0, 0, 0.8);
}

/* Services Highlights - Compact Horizontal */
.services-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.service-highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(30, 35, 45, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-highlight-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    background: rgba(30, 35, 45, 0.8);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.service-highlight-icon {
    font-size: 2rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    flex-shrink: 0;
}

.service-highlight-text {
    text-align: left;
}

.service-highlight-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.service-highlight-text span {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-hero-card {
    background: linear-gradient(135deg, rgba(30, 35, 45, 0.95) 0%, rgba(45, 50, 60, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: var(--transition-normal);
}

.service-hero-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.service-hero-card:hover::before {
    opacity: 1;
}

.service-hero-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.service-hero-card h3 {
    font-size: 1.3rem;
    color: var(--white) !important;
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.service-hero-card p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(139, 115, 41, 0.25));
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--accent-color) !important;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Old Services Page Hero - Keep for compatibility */
.page-hero-services {
    text-align: center;
}

.page-hero-services .page-hero-title,
.page-hero-services .page-hero-description,
.page-hero-services .page-hero-breadcrumb {
    color: var(--white) !important;
}

.page-hero-services .page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.8) !important;
}

.page-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color) !important;
    font-family: var(--heading-font);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* About Page Hero */
.page-hero-about .page-hero-content {
    text-align: left;
}

.page-hero-features {
    position: relative;
    z-index: 3;
}

.page-hero-features .feature-item {
    background: linear-gradient(135deg, var(--steel-dark) 0%, var(--steel-medium) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--steel-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-normal);
}

.page-hero-features .feature-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.page-hero-features .feature-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.page-hero-features .feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.page-hero-features .feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Page Hero */
.page-hero-contact .page-hero-content {
    text-align: center;
}

.contact-hero-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.contact-hero-icon i {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.contact-hero-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ========================================
   Buttons
   ======================================== */
}

to {
    width: 100%;
}
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-normal);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-family: var(--heading-font);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: var(--primary-dark);
}

.btn-outline-light {
    border: 2px solid var(--accent-color);
    color: var(--white);
    background: rgba(26, 29, 35, 0.3);
}

.btn-outline-light:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ========================================
   Cards
   ======================================== */
.card {
    border: 1px solid var(--steel-light);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--steel-dark) 0%, var(--steel-medium) 100%);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
    height: 100%;
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-color);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.card-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.card-text {
    color: var(--text-secondary);
}

.card-body {
    padding: 2rem;
}

.card-body ul li {
    color: var(--text-secondary);
}

.card-body ul li strong {
    color: var(--white);
}

.card-body h4,
.card-body h5 {
    color: var(--white);
}

/* Service Card Specific */
.service-card {
    background: linear-gradient(135deg, var(--steel-dark) 0%, var(--steel-medium) 100%);
    border-left: 4px solid var(--accent-color);
    box-shadow: -4px 0 15px rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    border-left-color: var(--accent-hover);
    box-shadow: -4px 0 25px rgba(212, 175, 55, 0.3);
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* Compact List for Service Cards */
.compact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compact-list li {
    padding: 0.35rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.compact-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 0.85rem;
}

/* ========================================
   Section Titles
   ======================================== */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    margin-top: 1.5rem;
}

color: var(--text-secondary);
max-width: 700px;
margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* ========================================
   Background Variations
   ======================================== */
.bg-light-section {
    background: linear-gradient(135deg, var(--steel-medium) 0%, var(--steel-dark) 100%);
    position: relative;
}

.bg-light-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.bg-light-section>.container {
    position: relative;
    z-index: 1;
}

.bg-primary-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.bg-primary-section h2,
.bg-primary-section h3 {
    color: var(--white);
}

.bg-primary-section p {
    color: var(--text-secondary);
}

/* Safety Section */
.safety-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--steel-dark) 100%);
    position: relative;
    overflow: hidden;
}

.safety-content {
    position: relative;
    z-index: 2;
}

.safety-icon-bg {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20rem;
    color: rgba(212, 175, 55, 0.08);
    z-index: 1;
    pointer-events: none;
}

.safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.safety-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* ========================================
   FAQ / Accordion
   ======================================== */
.accordion-item {
    border: 1px solid var(--light-gray);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-secondary);
}

/* ========================================
   Contact Form
   ======================================== */
.contact-form {
    background: linear-gradient(135deg, var(--steel-dark) 0%, var(--steel-medium) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--steel-light);
}

.form-control,
.form-select {
    border: 2px solid var(--steel-light);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition-fast);
    background: var(--steel-medium);
    color: var(--white);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    background: var(--steel-dark);
    color: var(--white);
}

.form-label {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-text {
    color: var(--text-secondary);
}

/* Form Messages */
.alert {
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* ========================================
   Contact Info Boxes
   ======================================== */
.contact-info-box {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: var(--transition-normal);
}

.contact-info-box:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info-box:hover .contact-icon,
.contact-info-box:hover h4,
.contact-info-box:hover p {
    color: var(--white);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--steel-dark) 100%);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 2px solid var(--accent-color);
    box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-family: var(--heading-font);
}

.footer p,
.footer a {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--steel-light);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

/* ========================================
   Features / Value Props
   ======================================== */
.feature-box {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-secondary);
}

/* ========================================
   Stats / Numbers Section
   ======================================== */
.stat-box {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: var(--heading-weight);
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Legal Pages (Impressum, Datenschutz)
   ======================================== */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.legal-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content strong {
    color: var(--primary-color);
}

.legal-placeholder {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 0.5rem 1rem;
    display: inline-block;
    font-weight: 600;
    color: #856404;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-accent {
    color: var(--accent-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons .btn {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .page-hero-services-pro {
        min-height: auto;
        padding: 7rem 0 4rem;
    }

    .page-hero-services-pro .page-hero-title {
        font-size: 2.5rem;
    }

    .services-highlights {
        gap: 1rem;
        margin: 2rem 0;
    }

    .service-highlight-item {
        padding: 0.85rem 1.25rem;
    }

    .service-highlight-icon {
        font-size: 1.75rem;
    }

    .services-hero-grid {
        margin-top: 3rem;
    }

    .service-hero-card {
        padding: 1.5rem;
    }

    .hero-cta-buttons {
        gap: 0.75rem;
    }

    .page-hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    section {
        padding: var(--section-padding-sm);
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 100vh;
        background-attachment: scroll;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0.9rem 2rem;
    }

    .page-hero-section {
        min-height: auto;
        padding: 6rem 0 3rem;
        background-attachment: scroll;
    }

    .page-hero-services-pro {
        min-height: auto;
        padding: 6rem 0 3rem;
        background-attachment: scroll;
    }

    .page-hero-services-pro .page-hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .page-hero-services-pro .page-hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .page-hero-services-pro .page-hero-content {
        margin-bottom: 2rem;
    }

    .services-highlights {
        flex-direction: column;
        gap: 0.75rem;
        margin: 2rem 0;
    }

    .service-highlight-item {
        width: 100%;
        padding: 1rem;
    }

    .service-highlight-icon {
        font-size: 1.5rem;
    }

    .service-highlight-text h4 {
        font-size: 0.95rem;
    }

    .service-highlight-text span {
        font-size: 0.8rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .hero-cta-buttons .btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .services-hero-grid {
        margin-top: 2rem;
        gap: 1rem;
    }

    .service-hero-card {
        padding: 1.5rem;
    }

    .service-hero-icon {
        font-size: 2rem;
    }

    .service-hero-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .service-hero-card p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .service-hero-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.85rem;
    }

    .page-hero-title {
        font-size: 1.75rem;
    }

    .page-hero-description {
        font-size: 1rem;
    }

    .page-hero-breadcrumb {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .page-hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .page-hero-features .feature-item {
        padding: 1rem;
    }

    .page-hero-features .feature-item i {
        font-size: 2rem;
    }

    .page-hero-features .feature-item h4 {
        font-size: 1rem;
    }

    .contact-hero-icon {
        font-size: 3rem;
    }

    .contact-hero-cta {
        flex-direction: column;
    }

    .contact-hero-cta .btn {
        width: 100%;
    }

    .hero-scroll-indicator {
        font-size: 1.2rem;
        bottom: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    .card-body {
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.65rem 1.5rem;
    }

    .service-card ul {
        padding-left: 1.25rem;
    }

    .service-card ul li {
        margin-bottom: 0.6rem;
        font-size: 0.95rem;
    }

    /* Mobile Navigation */
    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
    }

    .navbar-nav .nav-link i {
        margin-right: 0.5rem;
        width: 20px;
        display: inline-block;
    }

    .btn-nav-cta {
        margin: 0.5rem 0 0 0 !important;
        text-align: center;
        display: block;
    }

    /* Mobile Footer */
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3,
    .footer .col-md-6 {
        margin-bottom: 2rem;
    }

    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        services-highlights {
            margin: 1.5rem 0;
        }

        .service-highlight-item {
            padding: 0.85rem;
            gap: 0.75rem;
        }

        .service-highlight-icon {
            font-size: 1.35rem;
        }

        .service-highlight-text h4 {
            font-size: 0.9rem;
        }

        .service-highlight-text span {
            font-size: 0.75rem;
        }

        . font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-buttons .btn {
        font-size: 0.95rem;
    }

    .page-hero-services-pro {
        padding: 5rem 0 2.5rem;
    }

    .page-hero-services-pro .page-hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .page-hero-services-pro .page-hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .page-hero-breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .hero-cta-buttons .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .services-hero-grid {
        margin-top: 1.5rem;
        gap: 0.85rem;
    }

    .service-hero-card {
        padding: 1.25rem;
    }

    .service-hero-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .service-hero-card h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .service-hero-card p {
        font-size: 0.85rem;
        margin-bottom: 0.65rem;
    }

    .service-hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }

    .page-hero-title {
        font-size: 1.5rem;
    }

    .page-hero-description {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    .card-icon {
        font-size: 2rem;
    }

    .card-body {
        padding: 1.25rem;
    }

    .service-card ul li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .feature-icon {
        font-size: 2rem !important;
        margin-bottom: 0.75rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    /* Mobile Container Padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Mobile Navigation Adjustments */
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .navbar-brand i {
        font-size: 1rem;
    }

    /* Mobile CTA Buttons Layout */
    .lead {
        font-size: 1rem;
    }

    /* Mobile Footer Spacing */
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3,
    .footer .col-md-6 {
        margin-bottom: 1.5rem;
    }

    .footer h5 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer p {
        font-size: 0.9rem;
    }

    .footer-links li {
        margin-bottom: 0.4rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1rem;
        font-size: 0.85rem;
    }

    /* Safety Section Mobile */
    .safety-icon-bg {
        font-size: 12rem;
        right: -30px;
        opacity: 0.6;
    }

    .safety-section h2 {
        font-size: 1.5rem !important;
    }

    .safety-section p {
        font-size: 0.95rem !important;
        margin-bottom: 2rem !important;
    }

    .safety-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        padding-left: 1.75rem;
    }

    .safety-list li::before {
        font-size: 1.25rem;
    }
}

/* ========================================
   Animation Enhancements (for AOS)
   ======================================== */
[data-aos] {
    pointer-events: auto;
}

/* ========================================
   Print Styles
   ======================================== */
@media print {

    .navbar,
    .footer,
    .btn {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }
}