/* ============================================
   RITSCHER ENTSORGUNG - Modern Design System

   Design Tokens:
   --steel-blue: #1B4B6C (Primary - industrial)
   --rust-orange: #D35F2D (Accent - from fleet)
   --concrete: #F4F5F7 (Light bg)
   --asphalt: #1E2328 (Dark)
   --chrome: #E8EAED (Borders)
   --safety-yellow: #F5B800 (CTA highlight)

   Signature: Diagonal cuts referencing container dumps
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors */
    --steel-blue: #1B4B6C;
    --steel-blue-dark: #143a54;
    --steel-blue-light: #2a6a94;
    --rust-orange: #D35F2D;
    --rust-orange-dark: #b54d22;
    --rust-orange-light: #e8714a;
    --concrete: #F4F5F7;
    --asphalt: #1E2328;
    --asphalt-light: #2d343b;
    --chrome: #E8EAED;
    --chrome-dark: #d1d5db;
    --safety-yellow: #F5B800;
    --white: #ffffff;
    --text-primary: #1E2328;
    --text-secondary: #5f6b7a;
    --text-muted: #8b95a3;

    /* Typography */
    --font-display: 'DM Sans', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

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

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(30, 35, 40, 0.08);
    --shadow-md: 0 4px 12px rgba(30, 35, 40, 0.1);
    --shadow-lg: 0 8px 30px rgba(30, 35, 40, 0.12);
    --shadow-xl: 0 20px 50px rgba(30, 35, 40, 0.15);

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h4 {
    font-size: 1.125rem;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

a {
    color: var(--steel-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--rust-orange);
}

a:focus-visible {
    outline: 2px solid var(--steel-blue);
    outline-offset: 2px;
}

/* Utility text */
.mono {
    font-family: var(--font-mono);
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rust-orange);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container--narrow {
    max-width: 960px;
}

.section {
    padding: var(--space-2xl) 0;
}

.section--concrete {
    background-color: var(--concrete);
}

.section--asphalt {
    background-color: var(--asphalt);
    color: var(--white);
}

.section--asphalt h2,
.section--asphalt h3,
.section--asphalt h4 {
    color: var(--white);
}

.section--asphalt p {
    color: rgba(255, 255, 255, 0.8);
}

/* Diagonal section divider */
.section--diagonal {
    position: relative;
    margin-top: 60px;
}

.section--diagonal::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: inherit;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background-color: var(--asphalt);
    color: var(--white);
    padding: var(--space-xs) 0;
    font-size: 0.8125rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.top-contact {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.top-contact a,
.top-contact span {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
}

.top-contact a:hover {
    color: var(--safety-yellow);
}

.top-contact svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo .logo-mobile {
    display: none;
}

.logo .logo-desktop {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xs);
}

.nav-menu a {
    display: block;
    padding: var(--space-xs) var(--space-sm);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--steel-blue);
    background-color: var(--concrete);
}

.nav-menu a.active {
    color: var(--white);
    background-color: var(--steel-blue);
}

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition-fast);
}

.menu-toggle:hover span {
    background-color: var(--steel-blue);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    margin-top: 80px;
    overflow: hidden;
    background-color: var(--asphalt);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27, 75, 108, 0.92) 0%,
        rgba(30, 35, 40, 0.85) 100%
    );
}

.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 var(--space-md);
}

.hero-slide-content .container {
    max-width: 900px;
}

.hero-slide-content .eyebrow {
    color: var(--safety-yellow);
    margin-bottom: var(--space-sm);
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .eyebrow {
    animation: slideUp 0.6s ease forwards 0.2s;
}

.hero-slide-content h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active h1 {
    animation: slideUp 0.6s ease forwards 0.35s;
}

.hero-slide-content .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .lead {
    animation: slideUp 0.6s ease forwards 0.5s;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .hero-buttons {
    animation: slideUp 0.6s ease forwards 0.65s;
}

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

/* Slider controls */
.slider-nav {
    position: absolute;
    bottom: var(--space-lg);
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    z-index: 20;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
    background: var(--safety-yellow);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: all var(--transition-fast);
    z-index: 20;
}

.slider-arrow:hover {
    background: var(--rust-orange);
    border-color: var(--rust-orange);
}

.slider-arrow.prev {
    left: var(--space-md);
}

.slider-arrow.next {
    right: var(--space-md);
}

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--safety-yellow);
    z-index: 20;
    transition: width 0.1s linear;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--safety-yellow);
    outline-offset: 2px;
}

/* Diagonal cut on buttons - signature element */
.btn--cut {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
    padding-right: 36px;
}

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

.btn--primary:hover {
    background-color: var(--rust-orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 95, 45, 0.35);
}

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

.btn--secondary:hover {
    background-color: var(--steel-blue-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 75, 108, 0.35);
}

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

.btn--outline:hover {
    background-color: var(--white);
    color: var(--steel-blue);
    border-color: var(--white);
}

.btn--ghost {
    background-color: transparent;
    color: var(--steel-blue);
    border: 2px solid var(--chrome-dark);
}

.btn--ghost:hover {
    background-color: var(--steel-blue);
    color: var(--white);
    border-color: var(--steel-blue);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    max-width: 700px;
    margin-bottom: var(--space-xl);
}

.section-header.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-header .eyebrow {
    margin-bottom: var(--space-xs);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: 1.125rem;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.service-card {
    position: relative;
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    overflow: hidden;
}

/* Diagonal accent - signature element */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--chrome);
    transition: all var(--transition-base);
}

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

.service-card:hover::before {
    background: var(--rust-orange);
    width: 6px;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--concrete);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    font-size: 24px;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--steel-blue);
    color: var(--white);
}

.service-card h3 {
    margin-bottom: var(--space-xs);
}

.service-card p {
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

.service-card .btn {
    margin-top: auto;
}

/* ============================================
   STATS ROW
   ============================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
}

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

.stat-number {
    font-family: var(--font-mono);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--rust-orange);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-sm);
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(27, 75, 108, 0.95) 0%,
        rgba(27, 75, 108, 0.4) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--steel-blue) 0%, var(--steel-blue-dark) 100%);
    overflow: hidden;
}

/* Diagonal pattern - signature */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    transform: skewX(-15deg);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-lg);
    justify-content: center;
}

.cta-phone span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.cta-phone a {
    color: var(--safety-yellow);
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 500;
}

.cta-phone a:hover {
    color: var(--white);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--concrete);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    font-size: 20px;
    color: var(--steel-blue);
}

.contact-item h4 {
    margin-bottom: 4px;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-item p {
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-item a {
    color: var(--steel-blue);
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--chrome);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--steel-blue);
    box-shadow: 0 0 0 3px rgba(27, 75, 108, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--asphalt);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-top: var(--space-md);
    max-width: 280px;
}

.footer h4 {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--safety-yellow);
    padding-left: 4px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact .phone {
    font-family: var(--font-mono);
    font-size: 1.125rem;
    color: var(--safety-yellow);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */
.page-header {
    position: relative;
    padding: calc(80px + var(--space-2xl)) 0 var(--space-xl);
    background: linear-gradient(135deg, var(--steel-blue) 0%, var(--asphalt) 100%);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -5%;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    transform: skewX(-15deg);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header .eyebrow {
    color: var(--safety-yellow);
    margin-bottom: var(--space-xs);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

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

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

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   CONTENT PAGES
   ============================================ */
.content-page {
    padding: var(--space-2xl) 0;
}

.content-page h2 {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--chrome);
}

.content-page h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.content-page h3 {
    margin-top: var(--space-lg);
    color: var(--steel-blue);
}

.content-page h4 {
    margin-top: var(--space-md);
}

.content-page ul,
.content-page ol {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-md);
    color: var(--text-secondary);
}

.content-page li {
    margin-bottom: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 3rem;
        --space-2xl: 4rem;
    }

    .top-bar {
        display: none;
    }

    .header-inner {
        min-height: 70px;
    }

    .hero-slider {
        margin-top: 70px;
        height: 100vh;
        min-height: 500px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-sm);
        box-shadow: var(--shadow-lg);
        gap: 4px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: var(--space-sm);
    }

    .menu-toggle {
        display: flex;
    }

    .logo .logo-mobile {
        display: block;
    }

    .logo .logo-desktop {
        display: none;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

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

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-arrow.prev {
        left: var(--space-xs);
    }

    .slider-arrow.next {
        right: var(--space-xs);
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Alert styles for contact form */
.alert {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    display: none;
    font-size: 0.9375rem;
}

.alert.show {
    display: block;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-warning {
    background-color: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

/* Icons placeholder - replace with actual SVG icons */
.icon-phone::before { content: "📞"; }
.icon-email::before { content: "✉️"; }
.icon-location::before { content: "📍"; }
.icon-container::before { content: "🚛"; }
.icon-toilet::before { content: "🚽"; }
.icon-house::before { content: "🏠"; }
.icon-recycle::before { content: "♻️"; }
