:root {
    --navy: #0a2a3f;
    --orange: #f68b1e;
    --teal: #1b7f79;
    --white: #ffffff;
    --slate: #f8fafc;
    --text: #1e293b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

/* BRANDING */
.brand { text-decoration: none; display: block; }
.logo-text { font-size: 28px; font-weight: 900; color: var(--navy); letter-spacing: -1.5px; line-height: 1; }
.logo-text span { color: var(--orange); }
.logo-tagline { font-size: 9px; text-transform: uppercase; letter-spacing: 2.5px; color: var(--navy); font-weight: 700; margin-top: 4px; }

/* HEADER */
.main-header { position: fixed; width: 100%; top: 0; z-index: 1000; background: white; height: 90px; display: flex; align-items: center; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.nav-menu { display: flex; align-items: center; gap: 2.5rem; }
.nav-link { text-decoration: none; color: var(--navy); font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 5px; }

/* CONTACT IN HEADER */
.nav-contact-group { display: flex; align-items: center; gap: 1rem; }
.nav-phone { text-decoration: none; color: var(--teal); font-weight: 800; font-size: 0.95rem; display: flex; align-items: center; gap: 8px; background: var(--slate); padding: 0.7rem 1.2rem; border-radius: 6px; border: 1px solid #e2e8f0; transition: 0.3s; }
.nav-phone:hover { background: white; border-color: var(--orange); }
.btn-cta { background: var(--navy); color: white; text-decoration: none; padding: 0.7rem 1.4rem; border-radius: 4px; font-weight: 800; transition: 0.3s; }
.btn-cta:hover { background: var(--orange); }

/* MEGA MENU */
.has-mega { position: relative; padding: 2rem 0; }
.mega-menu { 
    position: absolute; top: 100%; left: -300px; width: 850px; 
    background: white; padding: 3rem; border-top: 4px solid var(--orange); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.12); opacity: 0; visibility: hidden; 
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); transform: translateY(10px);
}
.has-mega:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mega-header { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; border-bottom: 1px solid #f1f5f9; padding-bottom: 0.8rem; }
.mega-header i { color: var(--orange); width: 18px; }
.mega-header h4 { font-size: 0.85rem; text-transform: uppercase; color: var(--navy); letter-spacing: 1px; font-weight: 800; }
.mega-list { list-style: none; }
.mega-list li { margin-bottom: 0.8rem; }
.mega-list a { text-decoration: none; color: var(--text); font-size: 0.95rem; font-weight: 600; transition: 0.2s; display: block; }
.mega-list a:hover { color: var(--teal); padding-left: 5px; }

/* HERO SECTIE */
.hero { height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; background: var(--navy); color: white; }

/* CRUCIALE VIDEO STYLING */
.hero-video-container { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.hero-video { width: 100%; height: 100%; object-fit: cover; } /* Zorgt dat video het hele scherm vult */
.hero-overlay { 
    position: absolute; 
    inset: 0; 
    /* Een zachte zwart/transparante overloop in plaats van groen/blauw */
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%); 
    z-index: 2; 
}
.hero-content { position: relative; z-index: 3; max-width: 850px; } /* Z-index 3 = boven video en overlay */

.logo-text.large { font-size: 64px; color: white; letter-spacing: -3px; }
.logo-tagline.large { color: white; font-size: 14px; letter-spacing: 7px; margin-bottom: 2rem; }
.hero h1 { font-size: 4.8rem; font-weight: 900; line-height: 1.1; margin-bottom: 2rem; letter-spacing: -2px; }
.hero h1 .thin { font-weight: 300; opacity: 0.8; }
.hero p { font-size: 1.4rem; max-width: 650px; margin-bottom: 3rem; opacity: 0.9; }

.btn-primary { background: var(--orange); color: white; text-decoration: none; padding: 1.3rem 2.8rem; border-radius: 4px; font-weight: 800; display: inline-block; transition: 0.3s; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(246, 139, 30, 0.3); }
.btn-secondary { border: 2px solid white; color: white; text-decoration: none; padding: 1.2rem 2.8rem; border-radius: 4px; font-weight: 800; display: inline-block; margin-left: 1rem; transition: 0.3s; }
.btn-secondary:hover { background: white; color: var(--navy); }

/* SERVICES (6 CARDS) */
.services { padding: 8rem 0; background: white; }
.section-title { margin-bottom: 4rem; max-width: 800px; }
.badge { color: var(--orange); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 1rem; display: block; }
.section-title h2 { font-size: 3.5rem; font-weight: 900; color: var(--navy); letter-spacing: -2px; }
.section-title p { font-size: 1.2rem; color: #64748b; margin-top: 1rem; }

.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.card { padding: 3.5rem 2.5rem; background: var(--slate); border-radius: 12px; transition: 0.4s; border-bottom: 4px solid transparent; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-10px); background: white; box-shadow: 0 40px 80px rgba(0,0,0,0.08); border-bottom-color: var(--orange); }
.card i { color: var(--teal); width: 45px; height: 45px; margin-bottom: 2rem; }
.card h3 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.card p { color: #64748b; margin-bottom: 2rem; flex-grow: 1; }
.card-link { text-decoration: none; color: var(--orange); font-weight: 800; display: flex; align-items: center; gap: 8px; font-size: 1rem; margin-top: auto; }
.card-link i { width: 18px; height: 18px; color: var(--orange); margin-bottom: 0; transition: 0.3s; }
.card-link:hover i { transform: translateX(5px); }

/* CONTACT HUB */
.contact-hub { padding-bottom: 10rem; }
.contact-box { display: grid; grid-template-columns: 1fr 1.2fr; background: var(--navy); border-radius: 20px; overflow: hidden; color: white; box-shadow: 0 40px 80px rgba(0,0,0,0.2); }
.contact-left { padding: 5rem; display: flex; flex-direction: column; justify-content: center; }
.contact-left h2 { font-size: 3rem; font-weight: 900; margin-bottom: 1.5rem; line-height: 1.1; }
.contact-methods { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.method-item { color: white; text-decoration: none; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; gap: 15px; }
.btn-calendar { color: var(--orange) !important; border: 2px solid var(--orange); padding: 1.2rem; border-radius: 8px; justify-content: center; transition: 0.3s; }
.btn-calendar:hover { background: var(--orange); color: white !important; }

.contact-right { padding: 5rem; background: white; }
.main-form { display: grid; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.main-form input, .main-form textarea { padding: 1.2rem; border: 1px solid #e2e8f0; border-radius: 6px; font-family: inherit; font-size: 1rem; width: 100%; transition: 0.3s; }
.main-form input:focus, .main-form textarea:focus { border-color: var(--teal); outline: none; }
.btn-submit { background: var(--navy); color: white; padding: 1.3rem; border-radius: 6px; border: none; font-weight: 800; cursor: pointer; text-transform: uppercase; transition: 0.3s; }
.btn-submit:hover { background: var(--orange); }

/* FOOTER */
.footer { background: #020617; color: #94a3b8; padding: 8rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; padding-bottom: 5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.logo-text.light { color: white; }
.logo-tagline.light { color: var(--orange); }
.footer h4 { color: white; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2rem; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 1rem; }
.footer a { color: inherit; text-decoration: none; transition: 0.2s; }
.footer a:hover { color: white; }
.noc-badge { color: #4ade80; font-weight: 800; display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
.pulse { width: 10px; height: 10px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); } 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); } }
.footer-bottom { padding-top: 3rem; font-size: 0.85rem; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 2rem; opacity: 0.6; }

/* ANIMATIES */
.fade-up { animation: fadeUp 1s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .grid-6 { grid-template-columns: repeat(2, 1fr); }
    .contact-box, .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3.5rem; }
}
@media (max-width: 768px) {
    .grid-6, .form-row { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; }
    .contact-left, .contact-right { padding: 3rem 2rem; }
}
/* --- SUB-PAGE STYLING --- */

/* Kleinere Hero voor subpagina's */
.sub-hero {
    background: var(--navy);
    padding: 180px 0 80px; /* Ruimte voor vaste header */
    color: white;
    text-align: center;
}

.sub-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.sub-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.badge.white {
    color: white;
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Content Grid Indeling */
.page-content {
    padding: 80px 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Tekst links breed, kaarten rechts iets smaller */
    gap: 4rem;
    align-items: start;
}

.text-col h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.text-col p {
    margin-bottom: 1.5rem;
    color: #475569;
    font-size: 1.05rem;
}

/* Feature List (Vinkjes lijst) */
.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.feature-list i {
    color: var(--teal);
    width: 20px;
}

/* Feature Cards Rechts */
.visual-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card-highlight {
    background: var(--slate);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--orange);
}

.feature-card-highlight h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card-highlight p {
    font-size: 0.95rem;
    color: #64748b;
}

.mt-4 { margin-top: 2rem; }

/* Responsive voor subpagina */
@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}
.usp-grid {
    display: grid;
    grid-template-columns: 1fr; /* Netjes onder elkaar voor leesbaarheid */
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.usp-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.usp-item:last-child {
    border-bottom: none;
}

.usp-icon {
    background: var(--slate);
    color: var(--teal);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.usp-icon i {
    width: 20px;
    height: 20px;
}

.usp-content h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.2;
}

.usp-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0 !important; /* Overschrijf algemene p-marges */
}
.noc-status-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.noc-status-box .pulse {
    width: 8px;
    height: 8px;
}
/* Inline link styling */
.inline-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: 0.2s;
}

.inline-link i {
    width: 14px !important;
    height: 14px !important;
    margin: 0 !important;
}

.inline-link:hover {
    text-decoration: underline;
    gap: 7px;
}

/* Promo Banner binnen de tekst */
.internal-promo {
    background: var(--slate);
    border: 1px dashed #cbd5e1;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.internal-promo h5 {
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.internal-promo p {
    font-size: 0.9rem;
    margin: 0 !important;
}

.btn-outline-sm {
    border: 2px solid var(--teal);
    color: var(--teal);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.85rem;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-outline-sm:hover {
    background: var(--teal);
    color: white;
}

@media (max-width: 600px) {
    .internal-promo { flex-direction: column; gap: 1rem; text-align: center; }
}
.internal-promo-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.promo-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #edf2f7;
}

.promo-card h5 {
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-weight: 800;
}

.promo-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem !important;
}

@media (max-width: 600px) {
    .internal-promo-box { grid-template-columns: 1fr; }
}
/* AI Bridge op de Telephony pagina */
.ai-bridge-box {
    background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.ai-bridge-box::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--teal);
    filter: blur(100px);
    opacity: 0.2;
}

.ai-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 212, 191, 0.2);
    color: var(--teal);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.ai-bridge-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ai-bridge-content p {
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 600px;
    line-height: 1.6;
}

.bridge-stats {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 2rem;
    color: var(--teal);
    line-height: 1;
}

.stat span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.btn-primary.mt-4 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--teal);
    color: var(--navy);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.btn-primary.mt-4:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
/* PBX Integratie Box op AI Pagina */
.pbx-integration-box {
    background: #f8fafc;
    border: 2px solid var(--slate);
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    border-left: 6px solid var(--teal);
}

.integration-badge {
    background: var(--navy);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.pbx-integration-box h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.integration-options {
    margin: 1.5rem 0;
    display: grid;
    gap: 10px;
}

.opt {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #475569;
}

.opt i {
    color: var(--teal);
    width: 18px;
}

.cta-group-mini {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}
/* Support Pagina Specifiek */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: -50px; /* Laat de kaarten deels over de hero vallen */
    margin-bottom: 4rem;
}

.support-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    border-bottom: 4px solid var(--slate);
    transition: transform 0.3s;
}

.support-card:hover {
    transform: translateY(-10px);
}

.chat-card {
    border-bottom-color: var(--teal);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--slate);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.card-icon i { width: 30px; height: 30px; }

.support-link {
    display: block;
    margin-top: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
    font-size: 1.1rem;
}

.btn-chat-trigger {
    background: var(--teal);
    color: var(--navy);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 800;
    margin-top: 1.5rem;
    cursor: pointer;
    width: 100%;
}

.status-indicator {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #64748b;
}

.sla-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 8px;
    color: var(--navy);
}

.form-select {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: white;
}
.highlight-nav {
    color: var(--teal) !important;
    font-weight: 700;
}
/* Opvallende Support Knop in Navigatie */
.support-nav-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: rgba(45, 212, 191, 0.1); /* Zacht teal achtergrondje */
    color: var(--teal) !important;       /* Teal tekst */
    padding: 8px 16px !important;
    border-radius: 50px;                 /* Pil-vorm */
    border: 1px solid rgba(45, 212, 191, 0.3);
    transition: all 0.3s ease !important;
    font-weight: 700 !important;
}

.support-nav-btn i {
    width: 16px;
    height: 16px;
    transition: transform 0.4s ease;
}

.support-nav-btn:hover {
    background: var(--teal) !important;  /* Volledig teal bij hover */
    color: var(--navy) !important;       /* Donkere tekst bij hover */
    border-color: var(--teal);
    transform: translateY(-1px);
}

.support-nav-btn:hover i {
    transform: rotate(180deg);           /* Draaiend reddingsboei effect */
}

/* Zorg dat de normale nav-links ruimte houden */
.nav-link {
    margin: 0 5px;
	/* 24/7 Support Styling */
.hero-247-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(239, 68, 68, 0.15); /* Zacht rood */
    color: #ef4444;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.pulse-red {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-red-effect 2s infinite;
}

@keyframes pulse-red-effect {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.emergency-bar {
    background: var(--navy);
    color: white;
    padding: 1rem 0;
    margin-top: -30px;
    position: relative;
    z-index: 20;
}

.bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.95rem;
}

.btn-emergency {
    background: #ef4444;
    color: white;
    padding: 6px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-emergency:hover { background: #dc2626; }

.emergency-highlight {
    border-top: 5px solid #ef4444 !important;
    background: #fffcfc !important;
}

.phone-display {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
    text-decoration: none;
    display: block;
    margin: 1rem 0;
}

.availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #059669;
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-cta-outline {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--slate);
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    margin-top: 1rem;
    color: var(--navy);
    transition: 0.3s;
}

.btn-cta-outline:hover { background: var(--slate); }

@media (max-width: 768px) {
    .bar-content { flex-direction: column; text-align: center; gap: 10px; }
}
}
/* --- COMPLETE FOOTER STYLING --- */
.main-footer {
    background: #0f172a; /* Deep Navy */
    color: #cbd5e1;
    padding: 5rem 0 0 0;
    margin-top: 4rem;
    border-top: 4px solid var(--teal);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.brand-col .logo-text {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Status Card in Footer */
.footer-status-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-dot-pulse {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
    animation: pulse-green-footer 2s infinite;
}

@keyframes pulse-green-footer {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.status-text strong {
    display: block;
    color: white;
    font-size: 0.85rem;
}

.status-text span {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.2s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--teal);
    padding-left: 5px;
}

/* Contact Info */
.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}

.footer-contact-info i {
    color: var(--teal);
    width: 20px;
    margin-top: 3px;
}

.footer-contact-info a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.emergency-link {
    color: #ef4444 !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Bottom Bar */
.footer-bottom {
    background: #020617;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links, .social-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.legal-links a, .social-links i {
    color: #64748b;
    text-decoration: none;
    transition: 0.3s;
}

.legal-links a:hover, .social-links i:hover {
    color: white;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .bottom-wrapper { flex-direction: column; gap: 1rem; text-align: center; }
}
