/* ============================================
   Tshiamo Consulting Services — Revamp Stylesheet
   Colors: #071E93 (Deep Blue), #1BA6DE (Cyan)
   Font: Poppins
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #071E93;
    --blue-dark: #051467;
    --blue-light: #1E35C0;
    --cyan: #1BA6DE;
    --cyan-light: #4DC3F0;
    --white: #ffffff;
    --off-white: #f4f7fb;
    --gray-light: #e8eef5;
    --gray: #4a5568;
    --black: #12203a;
    --font: 'Poppins', sans-serif;
    --max-width: 1200px;
    --radius: 14px;
    --shadow: 0 10px 40px rgba(7, 30, 147, 0.10);
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--black);
    background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(7,30,147,0.06);
    transition: var(--transition);
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
}
.logo img { height: 42px; width: auto; }
nav ul { display: flex; gap: 32px; align-items: center; }
nav { position: relative; }

/* Dropdown */
nav ul li.has-dropdown { position: relative; }
nav ul li.has-dropdown .caret { font-size: 10px; margin-left: 4px; color: var(--cyan); }
nav ul .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(7,30,147,0.15);
    padding: 10px 0;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1000;
    border-top: 3px solid var(--cyan);
}
nav ul li.has-dropdown:hover .dropdown,
nav ul li.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px);
}
nav ul .dropdown li { width: 100%; }
nav ul .dropdown li a {
    display: block;
    padding: 11px 22px;
    font-size: 14px;
    color: var(--black);
    white-space: nowrap;
}
nav ul .dropdown li a:hover { color: var(--cyan); background: var(--off-white); }
nav ul li a { font-size: 15px; font-weight: 500; color: var(--black); }
nav ul li a:hover { color: var(--cyan); }
nav ul li a.active { color: var(--blue); font-weight: 600; }
nav ul li a.btn {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white);
    padding: 11px 26px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(27,166,222,0.35);
}
nav ul li a.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(27,166,222,0.45); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; margin-left: auto; }
.hamburger span { width: 26px; height: 3px; background: var(--blue); border-radius: 3px; transition: var(--transition); }

/* Mobile tap-to-call bar (sticky, below header) */
.mobile-call {
    display: none;
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 16px rgba(27,166,222,0.35);
}
@media (max-width: 991px) {
    .mobile-call { display: block; }
}

/* Hero */
.hero {
    padding: 150px 0 90px;
    background: var(--white);
    color: var(--black);
    position: relative;
    overflow: hidden;
}
.hero-media {
    display: flex;
    justify-content: center;
    line-height: 0;
}
.hero-media img {
    width: 100%;
    height: auto;
    display: block;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    width: 100%;
}
.hero-text { position: relative; }
.hero h1 {
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--blue);
}
.hero h1 span { color: var(--cyan); }
.hero p { font-size: clamp(15px, 1.4vw, 18px); font-weight: 400; max-width: 540px; margin-bottom: 32px; color: var(--gray-dark); }
.hero-badge {
    display: inline-block;
    background: rgba(7, 30, 147, 0.08);
    border: 1px solid rgba(7, 30, 147, 0.25);
    color: var(--blue);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white);
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(27,166,222,0.4);
}
.btn-primary svg, .btn-outline svg, .btn-outline-blue svg, .btn svg, .mobile-call svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: inline-block;
    vertical-align: -3px;
    margin-right: 8px;
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-outline {
    display: inline-block;
    border: 2px solid var(--blue);
    color: var(--blue);
    padding: 13px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
}
.btn-outline:hover { border-color: var(--blue); background: var(--blue); color: var(--white); }

/* Stats bar */
.stats {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}
.stats .container {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 40px 24px;
    text-align: center;
}
.stat-num { font-size: 42px; font-weight: 800; color: var(--blue); }
.stat-num span { color: var(--cyan); }
.stat-label { font-size: 14px; color: var(--gray); margin-top: 6px; }

/* Sections */
section { padding: 90px 0; }
.section-tag {
    display: inline-block;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.section-title { font-size: 38px; font-weight: 700; color: var(--blue); margin-bottom: 16px; line-height: 1.2; }
.section-sub { color: var(--gray); max-width: 640px; margin-bottom: 48px; font-size: 17px; }
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* Client logos strip */
.clients-strip { padding: 50px 0; background: var(--white); border-bottom: 1px solid var(--gray-light); }
.clients-label {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}
.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.clients-logos img {
    max-height: 55px;
    width: auto;
    opacity: 0.65;
    filter: grayscale(100%);
    transition: var(--transition);
}
.clients-logos img:hover { opacity: 1; filter: grayscale(0%); }

/* Services */
.services { background: var(--off-white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}
.services-grid > * { min-width: 0; }
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(7,30,147,0.18); }
.service-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.service-body { padding: 28px; flex: 1; display: flex; flex-direction: column; text-align: left; }
.service-body h3 { font-size: 21px; color: var(--blue); margin-bottom: 14px; font-weight: 700; }
.service-body ul { margin-bottom: 22px; }
.service-body ul li {
    padding: 7px 0 7px 26px;
    position: relative;
    font-size: 15px;
    color: var(--gray);
}
.service-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-radius: 50%;
}
.service-link {
    margin-top: auto;
    color: var(--blue);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.service-link:hover { color: var(--cyan); gap: 12px; }

/* About */
.about .container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.about-img img { border-radius: 20px; box-shadow: var(--shadow); }
.about-points { margin-top: 28px; display: grid; gap: 20px; }
.point { display: flex; gap: 18px; }
.point-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}
.point-icon svg { width: 24px; height: 24px; fill: var(--white); }
.point h4 { font-size: 17px; color: var(--blue); margin-bottom: 6px; }
.point p { font-size: 14.5px; color: var(--gray); }

/* Why us */
.why { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); color: var(--white); }
.why .section-title { color: var(--white); }
.why .section-sub { color: rgba(255,255,255,0.75); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 26px; }
.why-grid > * { min-width: 0; }
.why-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.why-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 14px;
    line-height: 1;
}
.why-card h3 { font-size: 18px; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: rgba(255,255,255,0.8); }

/* CTA */
.cta {
    text-align: center;
    background: var(--off-white);
    padding: 90px 0;
}
.cta h2 { font-size: 36px; color: var(--blue); margin-bottom: 14px; }
.cta p { color: var(--gray); margin-bottom: 36px; font-size: 17px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta .btn-primary { background: linear-gradient(135deg, var(--cyan), var(--blue)); box-shadow: 0 10px 30px rgba(27,166,222,0.35); }
.cta .btn-outline-blue {
    border: 2px solid var(--blue);
    color: var(--blue);
    padding: 13px 34px;
    border-radius: 50px;
    font-weight: 600;
}
.cta .btn-outline-blue:hover { background: var(--blue); color: var(--white); }

/* Footer */
footer {
    background: var(--blue-dark);
    color: var(--white);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-grid h4 { color: var(--white); font-size: 16px; margin-bottom: 18px; }
.footer-grid p, .footer-grid li { font-size: 14.5px; line-height: 2; color: var(--white); }
.footer-grid li a { color: var(--white); }
.footer-grid li a:hover { color: var(--cyan); }
.footer-logo img { height: 36px; margin-bottom: 16px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact .icon { color: var(--white); }
.footer-contact .icon svg { width: 17px; height: 17px; fill: var(--white); display: block; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 22px 0;
    text-align: center;
    font-size: 13.5px;
    color: var(--white);
}

/* Contact section (on contact page) */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 50px;
    align-items: start;
}
.contact-grid > * { min-width: 0; }
.contact-form {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-form label { font-size: 14px; font-weight: 600; color: var(--blue); display: block; margin-bottom: 8px; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 15px;
    margin-bottom: 20px;
    outline: none;
    transition: var(--transition);
    background: var(--white);
    color: var(--black);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(27,166,222,0.12);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn-primary { width: 100%; text-align: center; border: none; cursor: pointer; }
.contact-info-cards { display: grid; gap: 20px; min-width: 0; }
.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    min-width: 0;
}
.contact-card .point-icon { width: 46px; height: 46px; font-size: 19px; flex-shrink: 0; }
.contact-card .point-icon svg { width: 21px; height: 21px; fill: var(--white); }
.contact-card h4 { color: var(--blue); font-size: 16px; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 15px; color: var(--gray); word-break: break-word; }
.contact-card a:hover { color: var(--cyan); }
.contact-card > div { min-width: 0; }

/* Page hero (inner pages) */
.page-hero {
    padding: 150px 0 60px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light) 70%, var(--cyan));
    color: var(--white);
    text-align: center;
}
.page-hero h1 { font-size: 44px; font-weight: 800; margin-bottom: 10px; }
.page-hero p { font-size: 17px; opacity: 0.9; max-width: 620px; margin: 0 auto; }
.breadcrumb { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 12px; }
.breadcrumb a:hover { color: var(--cyan); }

/* News / blog list */
.article-meta svg { width: 16px; height: 16px; fill: var(--cyan); display: inline-block; vertical-align: -2px; margin-right: 6px; }
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}
.news-grid > * { min-width: 0; }
.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 44px rgba(7,30,147,0.16); }
.news-card img { width: 100%; height: 210px; object-fit: cover; }
.news-body { padding: 24px; }
.news-date { font-size: 13px; color: var(--cyan); font-weight: 600; margin-bottom: 8px; }
.news-body h3 { font-size: 18px; color: var(--blue); margin-bottom: 10px; line-height: 1.4; }
.news-body p { font-size: 14.5px; color: var(--gray); margin-bottom: 14px; }
.news-body a { color: var(--blue); font-weight: 600; font-size: 14px; }
.news-body a:hover { color: var(--cyan); }

/* ============ RESPONSIVE — ALL BREAKPOINTS ============ */

/* Small desktops / laptops (1025–1199px) */
@media (max-width: 1199px) {
    .container { padding: 0 20px; }
    nav ul { gap: 22px; }
    nav ul li a { font-size: 14px; }
    nav ul li a.btn { padding: 10px 20px; font-size: 14px; }
    .hero { padding: 120px 0 70px; }
    .hero .container { grid-template-columns: 1fr 1.05fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 30px; }
}

/* Tablets landscape / small laptops (768–1024px) */
@media (max-width: 991px) {
    .mobile-call { display: block; }
    section { padding: 70px 0; }
    .section-title { font-size: 32px; }
    .hero { padding: 114px 0 0; }
    .hero-media {
        display: flex;
        justify-content: center;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        padding: 0 16px;
    }
    .hero-media img {
        width: auto;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        padding: 0;
        max-width: 100%;
    }
    .hero-media { order: -1; }
    .hero-text { padding: 50px 20px 60px; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }

    nav ul {
        position: fixed;
        top: 114px;
        left: 0;
        right: 0;
        height: auto;
        max-height: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        padding: 0;
        box-shadow: 0 15px 40px rgba(7,30,147,0.12);
        overflow: hidden;
        transition: max-height 0.35s ease;
        z-index: 999;
        border-top: 1px solid var(--gray-light);
    }
    nav ul.open {
        max-height: 620px;
        padding: 10px 0 20px;
    }
    nav ul li { width: 100%; text-align: center; }
    nav ul li a {
        font-size: 17px;
        display: block;
        padding: 14px 20px;
        border-bottom: 1px solid var(--gray-light);
    }
    nav ul li a.btn {
        width: auto;
        display: inline-block;
        margin: 16px auto 0;
        padding: 12px 28px;
        border: none;
    }
    /* Mobile: dropdown shows expanded inside the menu */
    nav ul .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        min-width: 0;
        padding: 0;
        background: var(--off-white);
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    nav ul .dropdown li a {
        font-size: 15px;
        padding: 12px 20px;
        border-bottom: 1px solid var(--gray-light);
        background: var(--off-white);
    }
    nav ul li.has-dropdown .caret { display: none; }
    .hamburger { display: flex; z-index: 1000; }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .about .container { grid-template-columns: 1fr; gap: 40px; }
    .about-img { max-width: 520px; margin: 0 auto; }
    .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
    .page-hero { padding: 130px 0 50px; }
    .stats { margin-top: -30px; }
}

/* Tablets portrait / large phones (561–767px) */
@media (max-width: 767px) {
    section { padding: 60px 0; }
    .section-title { font-size: 28px; }
    .section-sub { font-size: 15.5px; margin-bottom: 36px; }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 22px; }
    .why-grid { grid-template-columns: 1fr; gap: 20px; }
    .stats .container { grid-template-columns: 1fr; gap: 24px; padding: 32px 20px; }
    .stat-num { font-size: 36px; }
    .cta { padding: 70px 0; }
    .cta h2 { font-size: 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .hero-text { padding: 40px 20px 50px; }
    .hero h1 { font-size: 30px; }
    .hero p { font-size: 15.5px; }
    .contact-form { padding: 28px; }
    .page-hero h1 { font-size: 30px; }
    .news-grid { grid-template-columns: 1fr; }
    .news-card img { height: 200px; }
}

/* Large phones (401–560px) */
@media (max-width: 560px) {
    .container { padding: 0 16px; }
    .logo img { height: 36px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero h1 { font-size: 26px; }
    .hero p { font-size: 14.5px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn-primary, .hero-cta .btn-outline {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
    .cta h2 { font-size: 25px; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-actions .btn-primary, .cta-actions .btn-outline-blue {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
    .section-title { font-size: 25px; }
    .service-body { padding: 22px; }
    .service-body h3 { font-size: 19px; }
    .page-hero { padding: 120px 0 40px; }
    .page-hero h1 { font-size: 27px; }
    .point-icon { width: 46px; height: 46px; font-size: 19px; }
    .contact-card { padding: 20px; }
    .contact-form { padding: 22px; }
}

/* Small phones (≤400px) */
@media (max-width: 400px) {
    .container { padding: 0 14px; }
    .hero-text { padding: 34px 16px 44px; }
    .hero h1 { font-size: 24px; }
    .hero p { font-size: 14px; }
    .stats .container { padding: 26px 16px; }
    .stat-num { font-size: 32px; }
    .why-card { padding: 24px; }
    .footer-bottom { padding: 18px 10px; font-size: 12.5px; }
}

/* WhatsApp floating button */
.wa-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1001;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(27,166,222,0.45);
    transition: var(--transition);
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(27,166,222,0.6); }
.wa-btn svg { width: 32px; height: 32px; fill: var(--white); }
.wa-btn .wa-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--blue-dark);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.wa-btn:hover .wa-tooltip { opacity: 1; }
@media (max-width: 560px) {
    .wa-btn { bottom: 16px; right: 16px; width: 54px; height: 54px; }
    .wa-btn svg { width: 28px; height: 28px; }
}

/* Cookie consent banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--blue-dark);
    color: var(--white);
    padding: 18px 24px;
    z-index: 2000;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 14px; line-height: 1.6; max-width: 720px; color: rgba(255,255,255,0.9); }
.cookie-banner p a { color: var(--cyan); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
    border: none;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}
.cookie-btn.accept { background: linear-gradient(135deg, var(--cyan), var(--blue)); color: var(--white); }
.cookie-btn.accept:hover { filter: brightness(1.1); }
.cookie-btn.decline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.cookie-btn.decline:hover { border-color: var(--white); }
@media (max-width: 560px) {
    .cookie-banner { flex-direction: column; align-items: flex-start; padding: 16px 20px; }
    .cookie-actions { width: 100%; }
    .cookie-actions .cookie-btn { flex: 1; text-align: center; }
}

/* Extra-large screens (≥1440px) */
@media (min-width: 1440px) {
    .container { max-width: 1320px; }
    .hero h1 { font-size: 56px; }
    .hero p { font-size: 19px; max-width: 580px; }
    .section-title { font-size: 42px; }
}
