/* LMU Engineering Design Center - Inspired by LMU Homepage */

/* CSS Variables - LMU Color Palette from reallmu.css */
:root {
    /* Primary LMU Colors from their CSS */
    --lmu-red: #ab0c2f;
    --lmu-blue: #0076a5;
    --lmu-dark-blue: #004a76;
    --lmu-light-gray: #f3f3f3;
    --lmu-medium-gray: #c8c9c7;
    --lmu-off-white: #eeefea;
    
    /* Extended Palette */
    --white: #ffffff;
    --black: #000000;
    --dark-gray: #333333;
    --light-gray: #f8f9fa;
    --text-gray: #666666;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    
    /* Layout */
    --max-width: 1200px;
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Effects */
    --shadow-small: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-large: 0 8px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Global Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-black);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-extrabold);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--font-weight-bold);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: var(--font-weight-semibold);
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

a {
    color: var(--lmu-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--lmu-red);
}

img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation - Inspired by LMU */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 0;
    box-shadow: var(--shadow-small);
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    min-height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    background: rgba(171, 12, 47, 0.05); /* Subtle background */
    border-radius: 8px;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.brand-text {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: var(--font-weight-bold);
    color: var(--lmu-red);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-shrink: 0;
}

.nav-menu li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: var(--font-weight-medium);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 0;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--lmu-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--lmu-red);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

.nav-cta {
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-semibold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
    min-width: 80px;
}

.nav-cta:not(.secondary) {
    background: var(--lmu-red);
    color: var(--white);
}

.nav-cta:not(.secondary):hover {
    background: var(--lmu-dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-cta.secondary {
    background: transparent;
    color: var(--lmu-blue);
    border: 2px solid var(--lmu-blue);
}

.nav-cta.secondary:hover {
    background: var(--lmu-blue);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    margin: 3px 0;
    transition: var(--transition);
}

/* Mobile Menu Styles */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-width: 70px;
    }
    
    .brand-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 1100px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 0.8rem 0;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 1rem;
        transition: right 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        gap: 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        font-size: 1.1rem;
        width: 100%;
        height: auto;
        min-height: 50px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-cta {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        min-width: 60px;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-actions {
        gap: 0.4rem;
    }
    
    .nav-cta {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
        min-width: 50px;
    }
    
    .brand-text {
        font-size: 0.8rem;
    }
    
    .nav-logo {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-actions {
        gap: 0.3rem;
    }
    
    .nav-cta {
        padding: 0.3rem 0.5rem;
        font-size: 0.65rem;
        min-width: 45px;
        border-radius: 4px;
    }
    
    .brand-text {
        display: none; /* Hide text on very small screens to save space */
    }
    
    .nav-logo {
        height: 30px;
    }
    
    .hamburger {
        padding: 0.3rem;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
}

@media (max-width: 360px) {
    .nav-cta {
        padding: 0.25rem 0.4rem;
        font-size: 0.6rem;
        min-width: 40px;
    }
    
    .nav-actions {
        gap: 0.2rem;
    }
}

/* Hero Section - LMU Style */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(135deg, var(--lmu-red) 0%, var(--lmu-blue) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') center;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
}

.hero-text {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero-highlight {
    position: relative;
    display: inline-block;
}

.hero-highlight::before {
    display: none;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-semibold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
    min-width: 180px;
    justify-content: center;
}

.hero-btn.primary {
    background: var(--white);
    color: var(--lmu-red);
    border-color: var(--white);
}

.hero-btn.primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.hero-btn.secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.hero-btn.secondary:hover {
    background: var(--white);
    color: var(--lmu-blue);
}

.hero-btn.tertiary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-btn.tertiary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Stats Section */
.stats-section {
    background: var(--lmu-light-gray);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    color: var(--lmu-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Styling */
.section {
    padding: var(--section-padding);
}

.section:nth-child(even) {
    background: var(--lmu-light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lmu-red);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(171, 12, 47, 0.1);
    border-radius: 25px;
}

.section-header h2 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--lmu-red), var(--lmu-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-content h3 {
    color: var(--lmu-blue);
    margin-bottom: 0.5rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-container {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Services Section */
.services-section {
    background: var(--lmu-light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-small);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--lmu-red), var(--lmu-blue));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.service-card.featured {
    border: 2px solid var(--lmu-red);
    transform: scale(1.02);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--lmu-red), var(--lmu-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-badge {
    background: var(--lmu-red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card h3 {
    color: var(--lmu-blue);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.service-features i {
    color: var(--lmu-red);
    font-size: 0.9rem;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--lmu-blue);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.service-cta:hover {
    background: var(--lmu-red);
    transform: translateY(-2px);
}

/* Projects Timeline */
.projects-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.projects-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--lmu-red), var(--lmu-blue));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--lmu-red);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-small);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-small);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.project-year {
    background: var(--lmu-red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
}

.project-category {
    background: var(--lmu-light-gray);
    color: var(--text-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
}

.timeline-content h3 {
    color: var(--lmu-blue);
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: rgba(0, 118, 165, 0.1);
    color: var(--lmu-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
}

/* Booking Section */
.booking-section {
    background: var(--lmu-light-gray);
}

.booking-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.booking-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--lmu-medium-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lmu-blue);
    box-shadow: 0 0 0 3px rgba(0, 118, 165, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--lmu-red);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--lmu-dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Printer Status Panel */
.printer-status-panel {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-small);
    height: fit-content;
}

.printer-status-panel h3 {
    color: var(--lmu-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.status-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.printer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: var(--border-radius);
    background: var(--lmu-light-gray);
    transition: var(--transition);
}

.printer-item:hover {
    transform: translateX(5px);
}

.printer-info h4 {
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.printer-info p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.printer-item.available .status-dot {
    background: #28a745;
}

.printer-item.busy .status-dot {
    background: #dc3545;
}

.status-text {
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-gray);
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Safety Section */
.safety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-small);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--lmu-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
}

.step-content h4 {
    color: var(--lmu-blue);
    margin-bottom: 0.5rem;
}

.step-content p {
    margin: 0;
    font-size: 0.95rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.resource-card {
    display: block;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-small);
    text-align: center;
    transition: var(--transition);
    color: inherit;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    color: var(--lmu-red);
}

.resource-card i {
    font-size: 2rem;
    color: var(--lmu-blue);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.resource-card:hover i {
    color: var(--lmu-red);
}

.resource-card h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.resource-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-small);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--lmu-light-gray);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    color: var(--lmu-blue);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--lmu-red);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.member-description {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.skill {
    background: rgba(0, 118, 165, 0.1);
    color: var(--lmu-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.contact-item i {
    color: var(--lmu-red);
}

/* Contact Section */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-small);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--lmu-red), var(--lmu-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.info-content h4 {
    color: var(--lmu-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 60px;
    height: auto;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--lmu-red);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--lmu-red);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-details i {
    color: var(--lmu-red);
    width: 16px;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 60px;
    height: auto;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--lmu-red);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--lmu-red);
}

.contact-details {
    margin-top: 1rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-details i {
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
    .about-content,
    .booking-layout,
    .safety-content,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 15px;
    }
    
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-btn {
        min-width: auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-timeline::before {
        left: 1rem;
    }
    
    .timeline-item {
        padding-left: 3rem;
    }
    
    .timeline-item::before {
        left: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        gap: 1rem;
    }
    
    .process-step {
        padding: 1rem;
    }
    
    .service-card,
    .booking-form,
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-content {
        text-align: center;
    }
}

/* Notification System */
.notification {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.availability-status {
    padding: 0.5rem;
    border-radius: 4px;
    font-weight: 500;
    margin-top: 0.5rem;
}

.availability-status.available {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.availability-status.unavailable {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Focus States for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--lmu-blue);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-scroll,
    .footer {
        display: none;
    }
    
    .hero {
        min-height: auto;
        background: var(--white);
        color: var(--dark-gray);
    }
    
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
    }
} 
/* Safety Modal Styles */
.safety-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.safety-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #ab0c2f;
    font-size: 1.5em;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #ab0c2f;
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.flowchart-container {
    text-align: center;
}

.flowchart-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}
/* ========================================
   ENHANCED BOOKING SYSTEM STYLES
   Add these to your existing styles.css
   ======================================== */

/* Calendar Modal */
.calendar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calendar-modal.active {
    display: flex;
    opacity: 1;
}

.calendar-modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.calendar-header h2 {
    color: var(--lmu-red);
    margin: 0;
}

.calendar-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.calendar-close:hover {
    color: var(--lmu-red);
}

.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-controls button {
    padding: 0.5rem 1rem;
    background: var(--lmu-blue);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.calendar-controls button:hover {
    background: var(--lmu-red);
}

.calendar-controls h3 {
    margin: 0;
    color: var(--dark-gray);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #ddd;
    border: 1px solid #ddd;
    margin-bottom: 2rem;
}

.calendar-day-header {
    background: var(--lmu-blue);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.calendar-day {
    background: white;
    padding: 1rem;
    min-height: 80px;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}

.calendar-day:hover {
    background: #f0f8ff;
}

.calendar-day.empty {
    background: #f5f5f5;
    cursor: default;
}

.calendar-day.today {
    background: #fff3cd;
}

.calendar-day.has-bookings {
    background: #d4edda;
}

.day-number {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.booking-count {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--lmu-red);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.calendar-bookings-list {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.calendar-bookings-list h3 {
    color: var(--lmu-blue);
    margin-bottom: 1rem;
}

.no-bookings {
    text-align: center;
    color: #666;
    padding: 2rem;
}

.day-bookings {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.booking-status {
    background: var(--lmu-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
}

/* Admin Dashboard */
.admin-dashboard {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-dashboard.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.dashboard-content {
    background: white;
    border-radius: 12px;
    width: 95%;
    max-width: 1400px;
    max-height: 95vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 2px solid #eee;
    background: var(--lmu-red);
    color: white;
    border-radius: 12px 12px 0 0;
}

.dashboard-header h2 {
    color: white;
    margin: 0;
}

.dashboard-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: opacity 0.3s;
}

.dashboard-close:hover {
    opacity: 0.7;
}

.dashboard-tabs {
    display: flex;
    background: #f8f9fa;
    padding: 0 2rem;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--lmu-blue);
}

.tab-btn.active {
    color: var(--lmu-red);
    border-bottom-color: var(--lmu-red);
}

.dashboard-main {
    padding: 2rem;
    flex: 1;
}

.bookings-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.bookings-controls input,
.bookings-controls select {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.bookings-controls input {
    flex: 1;
}

.bookings-table {
    overflow-x: auto;
}

.bookings-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bookings-table th,
.bookings-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.bookings-table th {
    background: var(--lmu-blue);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.bookings-table tr:hover {
    background: #f8f9fa;
}

.bookings-table button {
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.bookings-table button:first-of-type {
    background: var(--lmu-blue);
    color: white;
}

.bookings-table button:first-of-type:hover {
    background: var(--lmu-dark-blue);
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
}

.btn-danger:hover {
    background: #c82333 !important;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-card h3 {
    color: var(--lmu-blue);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--lmu-red);
}

.printer-usage {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.printer-usage h3 {
    color: var(--lmu-blue);
    margin-bottom: 1.5rem;
}

.usage-bar {
    display: grid;
    grid-template-columns: 150px 1fr 50px;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.printer-name {
    font-weight: 600;
}

.bar-container {
    background: #e9ecef;
    border-radius: 50px;
    overflow: hidden;
    height: 30px;
}

.bar {
    background: linear-gradient(90deg, var(--lmu-blue), var(--lmu-red));
    height: 100%;
    transition: width 0.5s ease;
}

.usage-count {
    text-align: right;
    font-weight: 600;
    color: var(--lmu-red);
}

/* Booking History Modal */
.booking-history-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-history-modal.active {
    display: flex;
    opacity: 1;
}

.history-modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 2px solid #eee;
    background: var(--lmu-blue);
    color: white;
    border-radius: 12px 12px 0 0;
}

.history-header h2 {
    color: white;
    margin: 0;
}

.history-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: opacity 0.3s;
}

.history-close:hover {
    opacity: 0.7;
}

.history-content {
    padding: 2rem;
}

.bookings-section {
    margin-bottom: 3rem;
}

.bookings-section h3 {
    color: var(--lmu-red);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.booking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.booking-card {
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.booking-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.booking-card.confirmed {
    border-left: 4px solid #28a745;
}

.booking-card.completed {
    border-left: 4px solid var(--lmu-blue);
}

.booking-card.cancelled {
    border-left: 4px solid #dc3545;
    opacity: 0.7;
}

.booking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.booking-id {
    font-weight: 700;
    color: var(--lmu-blue);
    font-family: monospace;
}

.booking-status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.booking-card.confirmed .booking-status-badge {
    background: #d4edda;
    color: #155724;
}

.booking-card.completed .booking-status-badge {
    background: #cce5ff;
    color: #004085;
}

.booking-card.cancelled .booking-status-badge {
    background: #f8d7da;
    color: #721c24;
}

.booking-card-body {
    margin-bottom: 1rem;
}

.booking-detail {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.booking-detail strong {
    color: var(--dark-gray);
}

.booking-card-actions {
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.btn-cancel {
    width: 100%;
    padding: 0.75rem;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cancel:hover {
    background: #c82333;
}

/* Action Buttons */
.booking-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.booking-actions button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-secondary {
    background: var(--lmu-blue);
    color: white;
}

.btn-secondary:hover {
    background: var(--lmu-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 118, 165, 0.3);
}

.btn-admin {
    background: var(--lmu-red);
    color: white;
}

.btn-admin:hover {
    background: #8a0a26;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(171, 12, 47, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .calendar-grid {
        font-size: 0.85rem;
    }
    
    .calendar-day {
        min-height: 60px;
        padding: 0.5rem;
    }
    
    .bookings-table {
        font-size: 0.85rem;
    }
    
    .bookings-table th,
    .bookings-table td {
        padding: 0.5rem;
    }
    
    .booking-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .usage-bar {
        grid-template-columns: 100px 1fr 40px;
        gap: 0.5rem;
    }
    
    .dashboard-tabs {
        flex-direction: column;
        padding: 0;
    }
    
    .tab-btn {
        padding: 0.75rem 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .calendar-modal-content,
    .dashboard-content,
    .history-modal-content {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .bookings-controls {
        flex-direction: column;
    }
}

