/* === SEGMENT 1 — GLOBAL + HEADER + HERO === */

/* GLOBAL */
:root {
    --blue: #0a2540;
    --blue-light: #113b65;
    --blue-gradient: linear-gradient(135deg, #0a2540, #174a78);
    --gold: #f4c542;
    --gold-light: #ffe08a;
    --white: #ffffff;
    --gray-100: #f7f9fc;
    --gray-200: #edf1f7;
    --gray-300: #d9e1ec;
    --gray-700: #5b6c80;

    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 7px;

    --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.12);
    --shadow-lg: 0 18px 45px rgba(0,0,0,0.18);

    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background: #f5f9ff;
    color: var(--blue);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 92%;
    max-width: 1300px;
    margin: 0 auto;
}

/* HEADER */
.site-header {
    background: var(--blue-gradient);
    color: var(--white);
    padding: .7rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    gap: .6rem;
    align-items: center;
    text-decoration: none;
    color: var(--white);
}

.brand-logo {
    height: 48px;
    width: auto;
}

.brand-name {
    font-size: 1.35rem;
    font-weight: 700;
}

.brand-tagline {
    font-size: .75rem;
    opacity: .8;
}

.main-nav { position: relative; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: 0;
    cursor: pointer;
}

.nav-toggle-line {
    width: 22px;
    height: 2px;
    background: white;
    display: block;
    border-radius: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    opacity: .9;
}

.nav-links a:hover {
    opacity: 1;
    text-shadow: 0 0 12px rgba(255,255,255,.6);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.header-phone {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.header-btn {
    background: var(--gold);
    color: var(--blue);
    padding: .55rem 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
}

.header-btn:hover {
    background: var(--gold-light);
}

/* HERO */
.hero {
    position: relative;
    padding: 5rem 0 6rem;
    color: white;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #0a2540 0%, #123f6e 100%);
    z-index: 1;
}

.hero-overlay-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,215,100,0.3), rgba(0,0,0,0));
    right: -120px;
    top: -120px;
    filter: blur(50px);
    z-index: 1;
}

.hero-inner { 
    position: relative; 
    z-index: 5; 
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.1);
    padding: .4rem .8rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
}

.hero-highlight { color: var(--gold); }

.hero-lead {
    max-width: 480px;
    font-size: 1.05rem;
    opacity: .95;
    margin: 1rem 0;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .85rem 1.4rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--blue);
}
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
    background: rgba(255,255,255,.1);
    color: white;
}
.btn-ghost:hover { background: rgba(255,255,255,.2); }

/* HERO META */
.hero-meta {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
}

.hero-meta-value {
    font-weight: 700;
    color: var(--gold);
}

.hero-meta-divider {
    width: 1px;
    height: 25px;
    background: rgba(255,255,255,.3);
}
/* === SEGMENT 2 — STATYSTYKI + DLACZEGO MY + USŁUGI (PREMIUM) === */

/* SECTION WRAPPER */
.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.4rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: .5rem;
    color: var(--blue);
}

.section-subtitle {
    color: var(--gray-700);
    max-width: 650px;
    margin: 0 auto;
}

/* ======================== */
/* === STATYSTYKI (STATS) === */
/* ======================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.stat-label {
    font-weight: 600;
}

.stat-value {
    font-size: 2.3rem;
    margin: .8rem 0;
    font-weight: 700;
    color: var(--blue-light);
}

.stat-note {
    color: var(--gray-700);
}

/* ======================== */
/* === DLACZEGO MY (WHY US) === */
/* ======================== */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: .25s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* ======================== */
/* === USŁUGI — PREMIUM === */
/* ======================== */

.services-section {
    padding: 6rem 1rem;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    color: #003a7e;
    letter-spacing: .5px;
}

.section-subtitle {
    text-align: center;
    margin-top: .5rem;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #555;
}

/* GRID */
.services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* PREMIUM SERVICE CARD */
.service-card {
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    text-align: center;
    transition: 0.35s ease;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
    border-color: #ffd700;
}

/* Ikony */
.service-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
    transition: 0.3s ease;
}

.service-card:hover .service-icon {
    color: #ffd700;
    transform: scale(1.15);
}

/* Tytuł */
.service-card h3 {
    font-size: 1.5rem;
    margin: 1rem 0 .5rem;
    color: #002a5c;
}

/* Opis */
.service-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

/* Link tekstowy */
.service-more {
    display: inline-block;
    margin-top: 1.2rem;
    font-weight: 600;
    color: #007bff;
    transition: .3s ease;
}

.service-card:hover .service-more {
    color: #ffd700;
}
/* === SEGMENT 3 — O NAS + OPINIE + PORTFOLIO === */

/* ========================= */
/* ======== O NAS ========= */
/* ========================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text h2 {
    margin-top: 0;
    font-size: 2rem;
    color: var(--blue);
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.about-quote {
    font-style: italic;
    margin-top: 1rem;
    color: var(--blue-light);
}

.about-panel {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
}

.about-list li {
    margin: .4rem 0;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--gray-700);
}

.about-panel-inner i {
    color: var(--gold);
}

/* ========================= */
/* ======== OPINIE ========= */
/* ========================= */

.section-reviews {
    background: var(--gray-100);
}

.reviews-header {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-stars i {
    color: var(--gold);
    margin-right: 2px;
}

.reviews-score-text {
    font-weight: 700;
    margin-left: .4rem;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.review-card {
    background: white;
    padding: 1.6rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-meta {
    margin-top: 1rem;
}

.review-name {
    font-weight: 600;
}

.review-city {
    font-size: .85rem;
    color: var(--gray-700);
}

/* ========================= */
/* ======= PORTFOLIO ======= */
/* ========================= */

.section-portfolio {
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 1.4rem;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.portfolio-item img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.portfolio-item figcaption {
    margin-top: .6rem;
    font-size: .95rem;
    text-align: center;
    color: var(--gray-700);
}
/* === SEGMENT 4 — FAQ + KONTAKT === */

/* ========================= */
/* ========= FAQ =========== */
/* ========================= */

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: .9rem;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.faq-question {
    background: none;
    border: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    padding: 0;
    color: var(--blue);
}

.faq-answer {
    display: none;
    padding-top: .7rem;
    color: var(--gray-700);
    line-height: 1.55;
}

/* Ikonka FAQ */
.faq-icon i {
    color: var(--blue-light);
    transition: transform .25s ease;
}

.faq-question[aria-expanded="true"] .faq-icon i {
    transform: rotate(180deg);
}

/* ========================= */
/* ======== KONTAKT ======== */
/* ========================= */

.section-contact {
    padding-bottom: 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Lewa kolumna */
.contact-info h2 {
    font-size: 2rem;
    color: var(--blue);
}

.contact-box {
    background: white;
    padding: 1.8rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-top: 1.4rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.contact-list li {
    margin: .6rem 0;
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 1rem;
    color: var(--gray-700);
}

.contact-list li i {
    color: var(--gold);
    width: 20px;
}

.contact-hours {
    margin-top: 1rem;
    font-size: .95rem;
    color: var(--gray-700);
}

.contact-highlight {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin-top: 1.4rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--gray-100);
    color: var(--blue-light);
}

.contact-highlight i {
    color: var(--blue-light);
    font-size: 1.2rem;
}

/* Formularz */
.contact-form-wrap {
    background: white;
    padding: 1.8rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: var(--blue);
}

.form-field {
    margin-bottom: 1.1rem;
}

.form-field label {
    font-weight: 600;
    margin-bottom: .3rem;
    display: block;
    color: var(--blue);
}

input,
textarea {
    width: 100%;
    padding: .9rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color .2s ease;
}

input:focus,
textarea:focus {
    border-color: var(--blue-light);
    outline: none;
}

textarea {
    resize: vertical;
}

.form-footer {
    margin-top: 1.2rem;
}

.form-msg {
    margin-top: .6rem;
    font-size: .9rem;
    color: var(--blue);
}

.map-wrap {
    margin-top: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
/* === SEGMENT 5 — FOOTER PREMIUM + COOKIE BANNER PREMIUM === */

/* ========================= */
/* ======== FOOTER ========= */
/* ========================= */

.footer {
    background: linear-gradient(to right, #00316b, #001e3c);
    padding: 4rem 2rem 2rem;
    color: #e9eef7;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    background: url('images/tlo.jpg') center/cover;
    opacity: 0.08;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.footer-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
}

.footer-col h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: .5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: .8rem;
    font-size: 0.95rem;
    opacity: .9;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.footer-col ul li i {
    color: #ffd700;
    width: 20px;
    font-size: 1rem;
}

.footer a {
    color: #ffd700;
    text-decoration: none;
    transition: .25s ease;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-logo {
    width: 160px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.4));
}

.footer-brand p {
    max-width: 260px;
    line-height: 1.5;
    margin-top: .5rem;
}

.footer-bottom {
    margin-top: 2.3rem;
    padding-top: 1.2rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: .75;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 2;
    position: relative;
}

/* Responsywność footer */
@media(max-width: 600px) {
    .footer-wrapper {
        text-align: center;
    }
    .footer-col ul li i {
        display: none;
    }
}

/* ============================= */
/* === COOKIE BANNER PREMIUM === */
/* ============================= */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 340px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    padding: 1.8rem;
    z-index: 5000;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
    font-family: inherit;
    display: none;
}

.cookie-banner.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cookie-inner h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
    color: #003a7e;
}

.cookie-inner p {
    font-size: 0.9rem;
    color: #555;
}

.cookie-buttons {
    margin-top: 1.2rem;
    display: flex;
    gap: .5rem;
    justify-content: flex-end;
}

.cb-btn {
    padding: .6rem 1rem;
    border: none;
    font-size: .85rem;
    cursor: pointer;
    border-radius: 8px;
    transition: .25s ease;
}

.cb-accept {
    background: #007bff;
    color: white;
}

.cb-accept:hover {
    background: #005fcc;
}

.cb-reject {
    background: #ddd;
}

.cb-settings {
    background: #ffd700;
    color: #003a7e;
}

/* ============================= */
/* === COOKIE SETTINGS PANEL === */
/* ============================= */

.cookie-settings {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: none;
    place-items: center;
    z-index: 6000;
}

.cookie-settings.show {
    display: grid;
}

.cookie-settings-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 420px;
    max-width: 90%;
    box-shadow: var(--shadow-lg);
}

.cookie-settings-box h3 {
    margin-top: 0;
    color: var(--blue);
    font-size: 1.4rem;
}

.cookie-opt {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: .6rem;
    font-size: 1rem;
}

.cookie-settings-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: .5rem;
}

.cookie-settings-actions button {
    padding: .6rem 1.2rem;
    font-size: .9rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: .25s ease;
}

#cookieSave {
    background: var(--blue);
    color: white;
}

#cookieClose {
    background: #ddd;
}
/* === SEGMENT 6 — MODAL PREMIUM + ANIMACJE + RESPONSYWNOŚĆ === */

/* ========================= */
/* ======= MODAL =========== */
/* ========================= */

/* Tło (overlay) */
#modalOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 1000;
}

#modalOverlay.show {
    opacity: 1;
    visibility: visible;
}

/* Pudełko modala */
#serviceModal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.95);
    background: white;
    width: 95%;
    max-width: 700px;
    border-radius: var(--radius-lg);
    padding: 2rem;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    box-shadow: var(--shadow-lg);
}

#serviceModal.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Zamknij */
#modalClose {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: 0;
    font-size: 1.4rem;
    color: var(--blue);
    cursor: pointer;
}

.modal-title {
    margin-top: 0;
    font-size: 1.7rem;
    color: var(--blue);
}

.modal-desc {
    margin: 1rem 0 1.5rem;
    font-size: 1.05rem;
    color: var(--gray-700);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
}

.modal-btn {
    padding: .8rem 1.2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
}

.modal-btn.main {
    background: var(--gold);
    color: var(--blue);
}

.modal-btn.main:hover {
    background: var(--gold-light);
}

.modal-btn:not(.main) {
    background: var(--gray-200);
    color: var(--blue);
}

.modal-btn:not(.main):hover {
    background: var(--gray-300);
}

/* ========================= */
/* ===== ANIMACJE SCROLL === */
/* ========================= */

.section,
.service-card,
.info-card,
.stat-card {
    opacity: 0;
    transform: translateY(25px);
    transition: 0.6s ease;
}

.section.visible,
.service-card.visible,
.info-card.visible,
.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================= */
/* ===== BACK TO TOP ======= */
/* ========================= */

.backtop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    border: 0;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 900;
    transition: .25s ease;
}

.backtop.show {
    display: flex;
}

.backtop:hover {
    background: var(--blue-light);
}

/* ========================= */
/* ===== RESPONSYWNOŚĆ ===== */
/* ========================= */

@media(max-width: 1050px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-card-wrap {
        margin-top: 2rem;
    }
}

@media(max-width: 900px) {
    /* Menu mobilne */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 45px;
        right: 0;
        background: #0a2540;
        padding: 1.2rem;
        border-radius: var(--radius-md);
        flex-direction: column;
        gap: .9rem;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    /* Siatki */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media(max-width: 600px) {
    .hero-text h1 {
        font-size: 1.9rem;
    }

/* === CUSTOM MODIFICATIONS === */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("images/tlo.jpg") center/cover no-repeat;
    opacity: 0.3;
    filter: blur(2px);
    z-index: -1;
}
.footer {
/* === CUSTOM MODIFICATIONS GLOBAL === */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("images/tlo.jpg") center/cover no-repeat;
    opacity: 0.3;
    filter: blur(2px);
    z-index: -1;
}
.footer {
/* Custom fog background and footer adjustments */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("images/tlo.jpg") center/cover no-repeat;
    opacity: 0.3;
    filter: blur(2px);
    z-index: -1;
}
.footer {
    background: linear-gradient(to right, #002a57, #00172e);
    padding: 2rem 1.5rem;
    color: #e9eef7;
}
.footer-wrapper {
    gap: 2rem;
}
.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 0.8rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

    background: linear-gradient(to right, #002a57, #00172e);
    padding: 2rem 1.5rem;
    color: #e9eef7;
}
.footer-wrapper {
    gap: 2rem;
}
.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 0.8rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

    background: linear-gradient(to right, #002a57, #00172e);
    padding: 2rem 1.5rem;
    color: #e9eef7;
}
.footer-wrapper {
    gap: 2rem;
}
.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 0.8rem;
    font-size: 0.8rem;
    opacity: 0.7;
}
/* custom overrides */
body::before{content:"";position:fixed;inset:0;background:url("images/tlo.jpg") center/cover no-repeat;opacity:0.3;filter:blur(2px);z-index:-1;}
.footer{background:linear-gradient(to right,#002a57,#00172e)!important;padding:2rem 1.5rem!important;color:#e9eef7!important;}
.footer-wrapper{gap:2rem!important;}
.footer-bottom{margin-top:1.5rem!important;padding-top:0.8rem!important;font-size:0.8rem!important;opacity:0.7!important;}

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem 1.2rem;
    }

    .footer-logo {
        margin: 0 auto;
    }
}
