/* Global Reset & Box Sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Palette - Authority Theme */
    --color-primary: #0F172A;
    /* Deep Navy Blue */
    --color-primary-dark: #020617;
    /* Darker Navy */
    --color-accent: #C5A572;
    /* Official Gold */
    --color-accent-light: #D4AF37;
    /* Bright Gold */
    --color-text-main: #334155;
    /* Slate Gray for text */
    --color-text-light: #F8FAFC;
    /* Off-white */
    --color-bg-light: #FFFFFF;
    --color-bg-offwhite: #F1F5F9;
    /* Light Gray Background */
    --color-border: #E2E8F0;
    /* Subtle Border */
    --color-danger: #EF4444;
    --color-success: #10B981;

    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Spacing - Tighter for official look */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;

    /* Transitions */
    --transition-standard: all 0.2s ease-out;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-standard);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    width: 100%;
}

/* Header Styles */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-sm) 0;
    position: relative;
    width: 100%;
    z-index: 1000;
    height: 90px;
    /* Fixed height for consistency */
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    /* Override default container max-width */
    padding: 0 var(--spacing-md);
    /* Add side padding */
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: var(--color-primary);
    /* Dark Navy */
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.logo-accent {
    color: var(--color-accent);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.main-nav ul {
    display: flex;
    gap: var(--spacing-md);
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-main);
    /* Dark text for white background */
    transition: var(--color-primary);
}

.main-nav a:hover {
    color: var(--color-accent);
}

.nav-contact {
    border: 2px solid var(--color-primary);
    /* Thicker border */
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-contact:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.main-nav a.active {
    color: var(--color-accent);
    font-weight: 600;
}

/* Mobile Menu Button - Hidden by default */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
}


/* Language Switcher - Removed */



/* Hero Section Styles - Official Authority Style */
/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-color: #060e1a;
    background-image: url('images/bg_skycity.jpg');
    background-size: cover;
    background-position: center bottom;
    /* Align to bottom to show city skyline */
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Static Dark Overlay for text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark overlay for text contrast against the city lights */
    background: radial-gradient(circle at center, rgba(6, 14, 26, 0.75) 0%, rgba(10, 25, 47, 0.9) 100%);
    z-index: 1;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Atmospheric Mode: Blur and reduced opacity */
    filter: blur(2px);
    opacity: 0.8;
}

#foregroundCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    /* Let clicks pass through */
}

/* Ensure content is above canvas/overlay */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 1rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    /* Square off */
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition-standard);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    border: 1px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: #fff;
    color: var(--color-primary);
    transform: none;
    box-shadow: none;
}

/* Trust Indicators */
.trust-section {
    padding: var(--spacing-xl) 0;
    background-color: #ffffff;
    /* Clean white background */
}

/* Trust Grid - Restored */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

@media (max-width: 600px) {
    .items-grid {
        grid-template-columns: 1fr;
        /* Stack on small screens */
    }
}


/* Authority Indicators (Trust Section) */
.trust-item {
    text-align: left;
    padding: var(--spacing-md);
    /* Clean, borderless look */
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-icon {
    /* Large icons per screenshot */
    margin-bottom: 1.5rem;
    display: block;
    color: #0F172A;
    /* Ensure icons inherit color if used inline, though SVGs control strokes */
}

.trust-icon img {
    width: 48px;
    height: 48px;
    display: block;
}

.trust-item h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0F172A;
    letter-spacing: -0.01em;
}

.trust-item p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    max-width: 320px;
    font-weight: 400;
}

/* Category Section */
.category-section {
    padding: var(--spacing-xl) 0;
    background-color: #f0f2f5;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    /* Tighter */
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--color-accent);
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.category-card {
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
}

.category-card:hover .cat-image {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cat-image {
    width: 100%;
    height: 250px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: var(--transition-standard);
    position: relative;
    overflow: hidden;
    /* Ensure image doesn't overflow */
}

.cat-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Show full image without cropping */
    padding: 10px;
    /* Add breathing room */
    display: block;
}

.cat-image.placeholder {
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cat-label {
    padding: 1rem 0 0 0;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
    border-top: none;
}

/* Regulatory Updates Section */
.updates-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-light);
}

.updates-list {
    max-width: 900px;
    margin: 0 auto;
}

.update-item {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid #eee;
    display: flex;
    /* Flex layout */
    gap: var(--spacing-md);
    align-items: flex-start;
}

.update-thumbnail {
    flex-shrink: 0;
    width: 120px;
    height: 90px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f0f0f0;
    border: 1px solid #e0e0e0;
}

.update-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(90%);
    /* Subtle, professional look */
    transition: var(--transition-standard);
}

.update-item:hover .update-thumbnail img {
    filter: grayscale(0%) contrast(100%);
}

.update-content {
    flex-grow: 1;
}

.update-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.update-meta {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.5px;
}

.update-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.update-title a {
    color: var(--color-primary);
    text-decoration: none;
}

.update-title a:hover {
    color: var(--color-accent);
}

.update-excerpt {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.text-left {
    text-align: left !important;
}

.align-left {
    margin: 0 !important;
}

/* Footer */
.site-footer {
    background-color: #050c16;
    /* Darker Navy/Black */
    color: #a0aec0;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    font-size: 0.95rem;
    border-top: 4px solid var(--color-accent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: #ffffff;
    display: block;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.5px;
}

.brand-col p {
    opacity: 0.7;
    line-height: 1.5;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #a0aec0;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Responsive adjustments */
/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
        /* Ensure padding on edges */
    }

    /* Hero: Adjust text size for tablets/small laptops */
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }
}

/* Tablet / Intermediate (600px - 900px) */
@media (max-width: 900px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    /* 2-Column Grid for Tablets */
    .trust-grid,
    .safety-grid,
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Ensure categories stay 2 col */
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        /* 2x2 Footer */
    }

    /* Header optimization for tablets */
    .header-container {
        padding: 1rem;
    }

    .mobile-menu-btn {
        display: flex;
        /* Show hamburger on tablets too if cramped */
    }

    .main-nav {
        display: none;
        /* Hide default nav, use mobile menu logic */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile Devices (Under 600px) */
@media (max-width: 600px) {

    /* Force Single Column for Mobile */
    .category-grid,
    .info-grid,
    .trust-grid,
    .safety-grid,
    .updates-list {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-section {
        min-height: 100vh;
        /* Full height aesthetics for mobile phones */
    }

    .footer-content {
        grid-template-columns: 1fr;
        /* Stack footer */
    }
}

@media (max-width: 480px) {

    /* Mobile Phone Specifics */
    .logo-text {
        font-size: 1.4rem;
        /* Slightly smaller for better fit */
    }

    .hero-section {
        min-height: 100vh;
        /* Full viewport height on mobile */
        padding-top: 60px;
        /* Account for fixed header if needed */
        display: flex;
        align-items: center;
    }

    .hero-content {
        padding: 0 1.5rem;
        /* More side breathing room */
        width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
        /* Impactful but controlled */
        line-height: 1.25;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        opacity: 0.95;
        /* Higher contrast */
    }

    .btn {
        width: 100%;
        /* Full width buttons on mobile are easier to tap */
        padding: 1rem;
        font-size: 1rem;
        display: block;
        /* Stack buttons if there are multiple */
        margin-bottom: 0.5rem;
    }

    .reg-title {
        font-size: 1.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

/* Safety Page Styles */
.safety-content {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-light);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.safety-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    position: relative;
    transition: var(--transition-standard);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.safety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--color-accent);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: var(--color-accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.safety-icon {
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.safety-card h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

/* Regulations Page Redesign - Authoritative Layout */
/* Regulations Page - Simplified "Reader Mode" Layout */
.reg-quick-nav {
    background-color: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.nav-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.nav-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    /* Pill shape */
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-pill:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-pill.news-pill {
    background-color: #fff9e6;
    border-color: #fce7b0;
    color: #b45309;
}

.nav-pill.news-pill:hover {
    background-color: #fef3c7;
    border-color: #f59e0b;
}

.reg-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Individual Regulation Sections */
.reg-section {
    margin-bottom: 4rem;
    scroll-margin-top: 2rem;
    /* Offset for sticky header/spacing */
}

.reg-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    /* Simple bottom border only */
    display: flex;
    align-items: center;
    line-height: 1.2;
}

/* Removed ::before pseudo element to prevent layout glitches */

.reg-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.reg-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.reg-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Authoritative Callout Boxes */
.highlight-box {
    background-color: #f7f9fc;
    border-left: 5px solid var(--color-primary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.highlight-box h4 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

/* Warning Variant (used via inline style originally, but cleaner here) */
.highlight-box.warning {
    background-color: #fff5f5;
    border-left-color: #d32f2f;
}

.highlight-box.warning h4 {
    color: #d32f2f;
}

/* Responsive sidebar */
@media (max-width: 900px) {
    .reg-layout {
        grid-template-columns: 1fr;
    }

    .reg-sidebar {
        position: static;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 2rem;
    }
}


/* Approved List Page Styles - Monochrome Update */
.status-zone {
    padding: var(--spacing-xl) 0;
}

.zone-green,
.zone-red {
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border);
}

.zone-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    border-bottom: 4px solid #000;
    padding-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.zone-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    /* Larger, more architectural */
    margin-bottom: var(--spacing-xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #000;
}

.zone-green .zone-header h2 {
    color: #2e7d32;
}

/* Safe - Green */
.zone-yellow .zone-header h2 {
    color: #f57f17;
}

/* Low Hazard - Amber/Yellow */
.zone-orange .zone-header h2 {
    color: #d84315;
}

/* High Hazard - Deep Orange */
.zone-red .zone-header h2 {
    color: #d32f2f;
}

/* Prohibited - Red */

.zone-green .zone-icon {
    color: #2e7d32;
}

.zone-yellow .zone-icon {
    color: #f57f17;
}

.zone-orange .zone-icon {
    color: #d84315;
}

.zone-red .zone-icon {
    color: #d32f2f;
}

/* Hazard Badges */
.hazard-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.badge-safe {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.badge-low {
    background-color: #fffde7;
    color: #f57f17;
    border: 1px solid #fff9c4;
}

.badge-high {
    background-color: #fbe9e7;
    color: #d84315;
    border: 1px solid #ffccbc;
}

.badge-prohibited {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Safety Note in Card */
.card-safety-note {
    font-size: 0.85rem;
    color: #555;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed #eee;
    line-height: 1.4;
}

.status-zone {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid #eee;
}

.zone-content-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    /* Subtle grey border */
    border-radius: 0;
    /* Sharp corners for dossier look */
    box-shadow: none;
    /* Flat design */
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: none;
    border-color: #000;
    /* Highlight with black border only */
}

.card-image {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
    filter: grayscale(100%);
    /* Force images to B&W always */
}

/* Removed hover color restoration to ensure strict monochrome */
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
    text-align: left;
    /* Architectural technical align */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 700;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 0;
    /* Text only layout generally better for minimal, but user asked for container/outline */
    border: 1px solid #000;
    padding: 0.5rem 1rem;
    border-radius: 0;
    /* Pill shape is distinct, but sharp corners might fit "Architectural" better. User asked for "Pill-shaped badge" initially but now "Container: Use a simple Black or Dark Grey Outline". Let's stick to user choice or simple box. User said "New Badge Style... Container...". Let's use a rectangle for dossier look. */
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    color: #000;
    text-align: center;
    width: 100%;
}

.badge-green,
.badge-red {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}

/* Zone Card Legacy Support - Monochrome */
.zone-note {
    grid-column: 1 / -1;
    text-align: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 0;
    margin-top: 1rem;
    color: #555;
    font-family: var(--font-mono, monospace);
    /* Technical font if available, else standard */
    font-size: 0.9rem;
}

.zone-note.warning-note {
    color: #000;
    background-color: #f8f9fa;
    border-color: #000;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.card-box {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card-box h2 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.intro-text {
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

/* Form Styles */
.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.contact-meta {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

/* Sidebar Styles */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.sidebar-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.emergency-card {
    background-color: #fef2f2;
    border: 1px solid #fee2e2;
}

.sc-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #b91c1c;
}

.sc-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.hotline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hotline-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hotline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hotline-item .label {
    display: block;
    font-weight: 600;
    color: var(--color-primary);
}

.hotline-item .desc {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.hotline-item .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.emergency-card .number {
    color: #b91c1c;
}

.info-card h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}