@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&family=Manrope:wght@200..800&display=swap');

:root {
    --primary: #0c121e; /* Deeper, more premium Midnight */
    --primary-rgb: 12, 18, 30;
    --secondary: #f5a623; /* Warm Amber */
    --secondary-rgb: 245, 166, 35;
    --accent: #f5a623;
    --bg-light: #ffffff;
    --bg-surface: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --font-heading: 'Schibsted Grotesk', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
}

.letter-spacing-2 { letter-spacing: 2px; }

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* Navbar Style 2: Segmented Utility Islands */
.nav-islands {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px;
}

.nav-island {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 12px 25px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-island-cta { background: var(--primary); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.nav-phone-desktop { display: inline-block; }

@media (max-width: 991px) {
    .nav-islands { justify-content: space-between; padding: 0 10px; }
    .nav-island:nth-child(2) { display: none !important; }
    .nav-island { padding: 8px 20px; flex-shrink: 1; }
    .nav-phone-desktop { display: none; }
    .menu-toggle { display: flex; }
}

@media (max-width: 575px) {
    .nav-islands { top: 10px; padding: 0 8px; }
    .brand-logo { height: 35px; }
}

.nav-island:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.nav-island:hover .brand-logo {
    transform: scale(1.02);
}

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    /* transition: var(--transition); */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-cta {
    background: var(--secondary);
    color: var(--primary) !important;
    font-weight: 800;
}

.nav-cta:hover {
    background: var(--primary);
    color: #fff !important;
}

/* Hero Layout 11: Card-Stack Fan-Out + Mesh Gradient */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    background-color: #ffffff;
    background-image: 
        radial-gradient(at 0% 0%, rgba(245, 166, 35, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(12, 18, 30, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(245, 166, 35, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(12, 18, 30, 0.08) 0px, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem); /* Improved fluid scale */
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary);
}

@media (max-width: 575px) {
    .hero-content h1 { font-size: 1.8rem; }
}

.hero-content h1 .accent-text {
    color: var(--secondary);
    display: block;
}

.hero-stack {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .hero { padding: 150px 0 60px; text-align: center; }
    .hero-stack { height: 400px; margin-top: 50px; }
    .hero-card { width: 280px; height: 350px; }
}

@media (max-width: 575px) {
    .hero-stack { height: 350px; }
    .hero-card { width: 220px; height: 300px; }
    .hero-card-1 { transform: rotate(-5deg) translateX(-30px); }
    .hero-card-3 { transform: rotate(5deg) translateX(30px); }
}

.hero-card {
    position: absolute;
    width: 350px;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: bottom center;
    cursor: pointer;
    z-index: 1;
}

.hero-card.active-card {
    z-index: 20 !important; /* Highest z-index */
    transform: rotate(0deg) scale(1.1) translateY(-40px) !important;
    box-shadow: 0 60px 120px rgba(0,0,0,0.4);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stunning Hero HUD Styling */
.hero-hud {
    position: relative;
    z-index: 5;
}

.hud-badges {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: rgba(12, 18, 30, 0.05);
    padding: 30px;
    border-radius: 40px;
    border: 1px solid rgba(12, 18, 30, 0.05);
    backdrop-filter: blur(10px);
}

.hud-badge {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid transparent;
}

.hud-badge:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(245, 166, 35, 0.15);
}

.hud-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.hud-badge:hover .hud-icon {
    background: var(--secondary);
    color: var(--primary);
}

.hud-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
}

.hud-scan {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.1), transparent);
    animation: hud-scan 4s infinite linear;
}

@keyframes hud-scan {
    0% { left: -100%; }
    100% { left: 200%; }
}

@media (max-width: 991px) {
    .hud-badges { flex-wrap: wrap; }
    .hud-badge { flex: 1 1 calc(50% - 20px); }
}

@media (max-width: 575px) {
    .hud-badge { flex: 1 1 100%; }
}

.hero-card-1 { transform: rotate(-10deg) translateX(-50px); z-index: 1; }
.hero-card-2 { transform: rotate(0deg); z-index: 2; }
.hero-card-3 { transform: rotate(10deg) translateX(50px); z-index: 1; }

/* Shared Components */
.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 18px 45px;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(245, 166, 35, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(245, 166, 35, 0.4);
    color: var(--primary);
}

.btn-primary:hover::after {
    left: 100%;
}

/* About Layout 13: Z-Pattern Kinetic Reveal */
.kinetic-section {
    padding: 100px 0;
}

.kinetic-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.kinetic-block:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 991px) {
    .kinetic-block, .kinetic-block:nth-child(even) { flex-direction: column !important; text-align: center; gap: 40px; }
    .kinetic-img-wrap { width: 100%; height: 300px; }
    .kinetic-text { width: 100%; }
}

.kinetic-block:nth-child(even) {
    flex-direction: row-reverse;
}

.kinetic-img-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
}

.kinetic-img {
    width: 100%;
    transition: transform 1.5s ease;
}

.kinetic-block:hover .kinetic-img {
    transform: scale(1.1);
}

.kinetic-text {
    flex: 1;
}

/* Services Grid Layout 1: 3D Tilt Perspective */
.services-section {
    background: #080c14;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(245, 166, 35, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 166, 35, 0.03) 0%, transparent 50%);
    color: #fff;
    padding: 180px 0; /* Increased Padding */
    perspective: 1200px;
    position: relative;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    pointer-events: none;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tilt-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 40px;
    transition: transform 0.1s, box-shadow 0.3s;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.tilt-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.tilt-card:hover::before {
    opacity: 1;
}

.tilt-card:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.tilt-content {
    transform: translateZ(50px);
}

.tilt-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 25px;
}

/* Detail Style 6: Editorial Magazine Spread */
.editorial-section {
    padding: 180px 0; /* Increased Padding */
    background: #ffffff;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.editorial-main-img {
    grid-column: 1 / 2;
    border-radius: 40px;
    width: 100%;
}

.tech-spec-tag {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.tech-spec-tag.secondary {
    top: 85px;
    right: -40px;
    background: var(--secondary);
    color: var(--primary);
}

.editorial-text {
    grid-column: 2 / 4;
    padding-left: 50px;
}

.editorial-text h2 {
    font-size: 4rem;
    margin-bottom: 30px;
}

.editorial-columns {
    column-count: 2;
    column-gap: 40px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .editorial-columns { column-count: 1; }
    .editorial-text h2 { font-size: 2.5rem; }
    .tech-spec-tag { right: 10px; top: 10px; font-size: 0.6rem; }
    .tech-spec-tag.secondary { right: 10px; top: 50px; }
}

/* Detail Style 12: Geometric Cut */
.geometric-section {
    padding: 180px 0; /* Increased Padding */
    position: relative;
    background: #f8fafc;
}

.geo-cut-container {
    display: flex;
    align-items: center;
}

.geo-img-wrap {
    width: 50%;
    height: 600px;
    clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%);
    overflow: hidden;
}

.geo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.geo-content {
    width: 50%;
    padding: 80px;
    background: #ffffff; /* Brighter white for geometric card */
    margin-left: -100px;
    z-index: 2;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.02);
}

/* CTA Strip 1: Hyper-Bold Ticker Ribbon */
.ticker-strip {
    background: var(--secondary);
    padding: 30px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    animation: ticker 30s linear infinite;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-btn {
    background: var(--primary);
    color: #fff;
    padding: 10px 40px;
    border-radius: 100px;
    font-size: 1.5rem;
    margin: 0 50px;
    display: inline-block;
}

/* Area Section Layout 3: Opposing Infinite Marquee */
.area-section {
    padding: 200px 0; /* Increased Padding for separation */
    background: #050505;
    color: #fff;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(245, 166, 35, 0.1);
    border-bottom: 1px solid rgba(245, 166, 35, 0.1);
}

.marquee-row {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.marquee-item {
    font-size: 4rem;
    font-weight: 900;
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    color: transparent;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.marquee-item:hover {
    color: var(--secondary);
    -webkit-text-stroke: 1px var(--secondary);
}

.marquee-left { animation: scroll-left 60s linear infinite; }
.marquee-right { animation: scroll-right 60s linear infinite; }

@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scroll-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.section-padding {
    padding: 180px 0;
}

/* FAQ Style 1: Modular Glass Tiles */
.faq-section {
    padding: 200px 0; /* More top padding */
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .faq-grid { grid-template-columns: 1fr; }
    .faq-section { padding: 100px 0; }
}

.faq-tile {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: 25px;
    transition: var(--transition);
    cursor: pointer;
}

.faq-tile:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-10px);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-tile.active .faq-answer {
    max-height: 200px;
    margin-top: 20px;
}

/* Contact Style 14: Dynamic Status HUD */
.contact-hud {
    padding: 120px 0;
    background: #f8f9fc;
}

.hud-container {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
    display: flex;
    gap: 60px;
}
/* Detailed Service 3 / Process section enhancement */
.restoration-process-section {
    padding: 180px 0;
    background: #ffffff;
}

.hud-info {
    flex: 1;
}

.status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px #00ff00;
}

.hud-map {
    flex: 1.5;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
}

/* Footer Style 4: Bento-Grid Footer */
footer {
    padding: 120px 0 80px; /* Increased Footer Padding */
    background: #05080f;
    color: #fff;
}

.bento-footer {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px; /* Increased Gap */
}

.bento-item {
    background: rgba(255,255,255,0.03);
    padding: 50px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-brand { grid-row: 1 / 3; }
.bento-links { grid-column: 2 / 3; }
.bento-hours { grid-column: 3 / 4; }
.bento-contact { grid-column: 4 / 5; }
.bento-bottom { grid-column: 2 / 5; display: flex; justify-content: space-between; align-items: center; }

/* Responsive */
@media (max-width: 991px) {
    .nav-links { display: none; }
    .editorial-grid { grid-template-columns: 1fr; }
    .editorial-text { grid-column: 1 / 2; padding-left: 0; }
    .geo-cut-container { flex-direction: column; }
    .geo-img-wrap, .geo-content { width: 100%; margin-left: 0; }
    .geo-img-wrap { height: 400px; clip-path: none; }
    .hud-container { flex-direction: column; }
    .bento-footer { grid-template-columns: 1fr 1fr; }
    .bento-bottom { grid-column: 1 / 3; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3.5rem; }
    .service-grid { grid-template-columns: 1fr; }
    .bento-footer { grid-template-columns: 1fr; }
    .bento-bottom { grid-column: 1 / 2; flex-direction: column; gap: 20px; }
}

/* Command Dashboard CTA Redesign */
.command-dashboard {
    background: #080c14;
    padding: 80px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 166, 35, 0.2);
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
    margin-top: 50px;
}

.command-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(245, 166, 35, 0.05) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(245, 166, 35, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.dashboard-glare {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(245, 166, 35, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.radar-ping {
    position: relative;
    width: 24px;
    height: 24px;
}

.ping-circle {
    width: 100%;
    height: 100%;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--secondary);
}

.ping-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    border-radius: 50%;
    animation: ping-wave 2s infinite ease-out;
}

@keyframes ping-wave {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(4); opacity: 0; }
}

.dispatch-stats {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: left;
    display: inline-block;
    min-width: 250px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
}

.stat-row:last-child { margin-bottom: 0; }

.stat-row .label { color: rgba(255,255,255,0.4); }
.stat-row .value { color: var(--secondary); }

/* Global Mobile Adjustments */
@media (max-width: 768px) {
    .section-padding { padding: 100px 0; }
    h2 { font-size: 2.2rem !important; }
    .display-4 { font-size: 2.5rem !important; }
    .geometric-section { padding: 100px 0; }
    .geo-cut-container { flex-direction: column; }
    .geo-img-wrap, .geo-content { width: 100% !important; margin: 0 !important; }
    .geo-img-wrap { height: 300px; clip-path: none !important; }
    .geo-content { padding: 40px 20px !important; margin-top: -30px !important; }
    
    .bento-footer { grid-template-columns: 1fr; }
    .bento-brand, .bento-links, .bento-hours, .bento-contact, .bento-bottom { grid-column: 1 / -1; }
    .bento-item { padding: 30px; }
    .bento-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* Mobile Menu Overlay Styling */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #0c121e;
    z-index: 999;
    transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.mobile-menu.active { right: 0; }

.mobile-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-links li { margin-bottom: 30px; }

.mobile-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Command Dashboard CTA Responsive */
@media (max-width: 991px) {
    .command-dashboard { padding: 50px 30px; text-align: center; }
    .command-dashboard .text-start { text-align: center !important; }
    .command-dashboard .d-flex { justify-content: center; }
    .command-dashboard h2 { font-size: 2rem; }
    .dispatch-stats { min-width: 100%; margin-bottom: 30px; }
}

@media (max-width: 575px) {
    .command-dashboard { padding: 40px 20px; border-radius: 30px; }
    .command-dashboard h2 { font-size: 1.5rem; }
    .command-dashboard .letter-spacing-2 { font-size: 0.7rem; }
}
