﻿/* Modern & Minimalist CSS for M S Library */

:root {
    /* Color Palette */
    --primary: #003B73;
    /* Navy Blue */
    --primary-light: #00509E;
    --accent: #00A8E8;
    /* Light Blue */
    --accent-hover: #008AC2;
    --bg-main: #FFFFFF;
    --bg-light: #F0F8FF;
    /* Alice Blue */
    --text-main: #1A1A1A;
    --text-muted: #555555;
    --text-light: #FFFFFF;
    --border-color: #E2E8F0;

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary);
    color: var(--text-light);
}

.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

/* Utilities */
.w-100 {
    width: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-primary-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--accent);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    border: 2px solid var(--accent);
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--text-muted);
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links li a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
}

.nav-links li a:hover:not(.btn-primary-outline) {
    color: var(--accent);
}

.nav-links li a.active-link {
    color: var(--primary);
    font-weight: 700;
    position: relative;
}

.nav-links li a.active-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

/* Hero Slider Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    /* Offset for navbar */
    background: #003B73;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

/* Background Images for Slides */
.slide-1 {
    background: linear-gradient(rgba(0, 59, 115, 0.4), rgba(0, 59, 115, 0.6)), url('images/hero-bg.png') center/cover no-repeat;
}

.slide-2 {
    background: linear-gradient(rgba(0, 59, 115, 0.4), rgba(0, 59, 115, 0.6)), url('images/gallery-1.png') center/cover no-repeat;
}

.slide-3 {
    background: linear-gradient(rgba(0, 59, 115, 0.4), rgba(0, 59, 115, 0.6)), url('images/gallery-2.png') center/cover no-repeat;
}

.slide-4 {
    background: linear-gradient(rgba(0, 59, 115, 0.4), rgba(0, 59, 115, 0.6)), url('images/slider-4.jpg') center/cover no-repeat;
}

.slide-5 {
    background: linear-gradient(rgba(0, 59, 115, 0.4), rgba(0, 59, 115, 0.6)), url('images/slider-5.jpg') center/cover no-repeat;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 20;
    transform: translateY(-50%);
    padding: 0 5%;
    pointer-events: none;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    transition: background 0.3s ease;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 20;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dots .dot.active {
    background: white;
    transform: scale(1.2);
}

.hero-content {
    max-width: 800px;
    z-index: 20;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Section Title */
.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-title .line {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.subtitle {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Modern About Section */
.about-modern-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-badge {
    background-color: #FFF8E1;
    color: #F59E0B;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.about-title {
    font-size: 2.2rem;
    color: #0F172A;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-title span {
    color: #334155;
    font-weight: 500;
}

.about-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FACC15;
    border: 2px solid #FACC15;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    line-height: 1;
    flex-shrink: 0;
}

.feature-item span:last-child {
    color: #1E293B;
    font-size: 0.95rem;
    font-weight: 500;
}

.btn-yellow {
    display: inline-block;
    background-color: #FACC15;
    color: #1E3A8A;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.3);
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.4);
}

.about-modern-image {
    position: relative;
    padding-right: 20px;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
}

.main-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: #FACC15;
    color: #1E3A8A;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.3);
    z-index: 2;
}

.stats-card {
    position: absolute;
    bottom: -30px;
    left: 5%;
    right: 5%;
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 1.5rem;
    color: #0F172A;
    margin-bottom: 4px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.stat-item h3 span {
    font-size: 1.2rem;
}

.stat-item p {
    color: #64748B;
    font-size: 0.85rem;
    font-weight: 500;
}


/* Why Choose Section */
.why-choose-section {
    background-color: #F8FAFC;
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-icon-wrapper {
    background-color: rgba(250, 204, 21, 0.1);
    color: #EAB308;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.15rem;
    color: #0F172A;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Facilities Section */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.facility-card {
    background-color: var(--bg-main);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.facility-card .icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.facility-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.facility-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Our Library Facilities (Pictures) */
.our-facilities-title {
    font-size: 2rem;
    font-weight: 800;
    color: #003366;
    /* Deep blue */
    text-transform: uppercase;
    margin-bottom: 40px;
}

.our-facilities-title span {
    color: #cc0000;
    /* Dark red */
}

.our-facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.facility-pic-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.f-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f1f5f9;
}

.f-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.f-content {
    padding: 16px 20px;
    border-top: 1px solid #e5e7eb;
}

.f-content h4 {
    color: #003366;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

/* Membership */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-card .features {
    margin-bottom: 40px;
}

.pricing-card .features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.pricing-card .features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    margin-right: 12px;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-info>p {
    color: #94A3B8;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.info-item h4 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.info-item p {
    color: #94A3B8;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    color: var(--text-main);
}

.contact-form h3 {
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
footer {
    border-top: none;
    padding: 60px 0;
    background: #0a0a0a;
    color: #ffffff;
}

footer h2,
footer h3 {
    color: #ffffff !important;
}

footer .footer-brand p,
footer .footer-location ul,
footer .footer-copyright {
    color: #a3a3a3 !important;
}

footer a {
    color: #e5e5e5;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent) !important;
}

footer .container[style*="border-top"] {
    border-top: 1px solid #333333 !important;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h2 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.footer-brand span {
    font-weight: 300;
}

.footer-brand p {
    color: #a3a3a3;
    font-size: 0.9rem;
}

.footer-copyright {
    color: #a3a3a3;
    font-size: 0.9rem;
}

/* Welcome Section */
.welcome-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.welcome-badge {
    background-color: rgba(250, 204, 21, 0.1);
    color: #FACC15;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid rgba(250, 204, 21, 0.2);
}

.welcome-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
}

.welcome-title span {
    color: #FACC15;
}

.welcome-desc {
    color: #94A3B8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.welcome-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.play-icon {
    font-size: 0.8rem;
    border: 1px solid white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-stats-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    width: 90%;
}

.welcome-stats {
    display: flex;
    gap: 60px;
}

.w-stat-item h3 {
    font-size: 2rem;
    color: #FACC15;
    margin-bottom: 4px;
    font-weight: 700;
}

.w-stat-item p {
    color: #64748B;
    font-size: 0.9rem;
}

.welcome-image-wrapper {
    position: relative;
    border-radius: 20px;
}

.welcome-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.icon-top-left {
    top: -20px;
    left: -20px;
    background-color: #FACC15;
    color: #000;
}

.icon-bottom-right {
    bottom: -20px;
    right: -20px;
    background-color: white;
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 4rem;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image-placeholder {
        display: none;
    }

    .our-facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .our-facilities-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }

    .nav-links.active {
        left: 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* Learn About Section */
.learn-about-section {
    padding: 100px 0;
    background-color: var(--bg-main);
}

.learn-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: stretch;
}

.la-poster {
    background-color: #8fcf74;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.la-poster-top {
    padding: 40px;
    text-align: center;
}

.la-poster-top p {
    color: #33691E;
    font-size: 1.2rem;
    font-weight: 500;
}

.la-poster-arch {
    flex: 1;
    background-color: #316744;
    border-radius: 50% 50% 0 0 / 15% 15% 0 0;
    margin-top: -20px;
    padding: 60px 40px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 400px;
}

.la-poster-arch h2 {
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 50px;
    font-weight: 500;
}

.la-poster-circle {
    background-color: #9cd27f;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    position: absolute;
    bottom: -60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.poster-book-svg {
    width: 60%;
    height: 60%;
}

.la-content {
    display: flex;
    flex-direction: column;
}

.la-heading-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.la-badge {
    color: #0ea5e9;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.la-line {
    flex: 0 0 50px;
    height: 2px;
    background-color: #0ea5e9;
    border: none;
}

.la-title {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 30px;
    font-weight: 600;
}

.la-text p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.la-text p:last-child {
    margin-bottom: 40px;
}

.la-bottom-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}

.la-img-box {
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}

.la-img-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.la-checklist {
    list-style: none;
}

.la-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
    font-size: 1.05rem;
}

.la-checklist li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.check-icon-svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .learn-about-grid {
        grid-template-columns: 1fr;
    }

    .la-poster {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .la-bottom-grid {
        grid-template-columns: 1fr;
    }

    .la-poster-arch h2 {
        font-size: 2rem;
    }
}

/* Shift Grid Redesign */
.shift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.shift-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shift-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.shift-card.morning::before { background: #F59E0B; }
.shift-card.noon::before { background: #0EA5E9; }
.shift-card.night::before { background: #6366F1; }
.shift-card.all-day::before { background: #10B981; }

.shift-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.shift-card:hover::before {
    transform: scaleY(1);
    transform-origin: center;
}

.shift-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.shift-header h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.3;
}

.shift-duration {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.morning .shift-duration { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
.noon .shift-duration { background: rgba(14, 165, 233, 0.1); color: #0EA5E9; }
.night .shift-duration { background: rgba(99, 102, 241, 0.1); color: #6366F1; }
.all-day .shift-duration { background: rgba(16, 185, 129, 0.1); color: #10B981; }

.shift-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 1.05rem;
    font-weight: 500;
    background: #f8fafc;
    padding: 12px 16px;
    border-radius: 8px;
}

.shift-info svg {
    flex-shrink: 0;
}
.morning .shift-info svg { stroke: #F59E0B; }
.noon .shift-info svg { stroke: #0EA5E9; }
.night .shift-info svg { stroke: #6366F1; }
.all-day .shift-info svg { stroke: #10B981; }

/* Nav Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    /* Deep blue */
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}

.nav-logo-highlight {
    font-size: 0.85rem;
    font-weight: 600;
    color: #EAB308;
    /* Golden/yellow accent */
    letter-spacing: 2px;
}
