/* ================================================
   SHARED PAGE SECTION UTILITIES
   ================================================ */
.pg-section {
    padding: 6rem 0;
}

.pg-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pg-section-header {
    margin-bottom: 3.5rem;
}

.pg-section-header.center {
    text-align: center;
}

.pg-eyebrow {
    display: inline-block;
    background: var(--sky);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.pg-heading {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.pg-sub {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 560px;
}

.center-sub {
    margin: 0 auto;
}

.pg-accent {
    color: var(--accent);
}


/* ================================================
   WHAT WE DO — 3-Column Card Grid
   ================================================ */
.wwd-section {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.wwd-section::before {
    content: '';
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.wwd-section .pg-section-header {
    margin-bottom: 3rem;
}

.wwd-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.wwd-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: box-shadow var(--dur), transform var(--dur);
    display: flex;
    flex-direction: column;
}

.wwd-card:hover {
    box-shadow: 0 20px 56px rgba(13, 27, 75, 0.1);
    transform: translateY(-5px);
}

/* All three cards are uniform — no featured styling */

.wwd-card-inner {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

/* Ghost number watermark */
.wwd-ghost-num {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-head);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(13, 27, 75, 0.05);
    pointer-events: none;
    user-select: none;
}

.wwd-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background var(--dur), transform var(--dur);
    flex-shrink: 0;
}

.wwd-card:hover .wwd-icon-wrap {
    background: var(--accent);
    transform: scale(1.05);
}

.wwd-icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    transition: stroke var(--dur);
}

.wwd-card:hover .wwd-icon-wrap svg {
    stroke: var(--white);
}

.wwd-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.wwd-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 1.5rem;
}

.wwd-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-head);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    transition: gap var(--dur), color var(--dur);
    margin-top: auto;
}

.wwd-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--dur);
}

.wwd-link:hover {
    gap: 10px;
}

.wwd-link:hover svg {
    transform: translateX(3px);
}


/* ================================================
   WHY CHOOSE US — Light dotted bg, coloured icon cards
   ================================================ */
.why-section {
    background: #f4f7ff;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(13, 27, 75, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    transition: box-shadow var(--dur), transform var(--dur), border-color var(--dur);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background var(--dur);
}

.why-card:hover {
    box-shadow: 0 12px 40px rgba(13, 27, 75, 0.09);
    transform: translateY(-4px);
    border-color: transparent;
}

.why-card:hover::after {
    background: var(--accent);
}

/* Coloured gradient icon boxes */
.why-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform var(--dur);
}

.why-card:hover .why-icon-box {
    transform: scale(1.08) rotate(-3deg);
}

.why-icon-box svg {
    width: 22px;
    height: 22px;
}

.why-icon-1 {
    background: linear-gradient(135deg, #fde68a, #fbbf24);
}

.why-icon-1 svg {
    stroke: #92400e;
}

.why-icon-2 {
    background: linear-gradient(135deg, #6ee7b7, #10b981);
}

.why-icon-2 svg {
    stroke: #064e3b;
}

.why-icon-3 {
    background: linear-gradient(135deg, #93c5fd, #3b82f6);
}

.why-icon-3 svg {
    stroke: #1e3a8a;
}

.why-icon-4 {
    background: linear-gradient(135deg, #f9a8d4, #ec4899);
}

.why-icon-4 svg {
    stroke: #831843;
}

.why-icon-5 {
    background: linear-gradient(135deg, #c4b5fd, #8b5cf6);
}

.why-icon-5 svg {
    stroke: #3b0764;
}

.why-icon-6 {
    background: linear-gradient(135deg, #86efac, #22c55e);
}

.why-icon-6 svg {
    stroke: #14532d;
}

.why-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.why-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
}


/* ================================================
   CERTIFICATIONS — Seamless CSS Marquee
   ================================================ */
.certs-section {
    background: var(--white);
    overflow: hidden;
}

.certs-header-wrap {
    margin-bottom: 3rem;
}

.marquee-outer {
    position: relative;
    overflow: hidden;
    padding: 0.75rem 0;
}

.marquee-fade-left,
.marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 160px;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 36s linear infinite;
    gap: 1.5rem;
    align-items: center;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* All logo tiles — identical size, backgrounds stripped via mix-blend-mode */
.marquee-logo {
    flex-shrink: 0;
    width: 220px;
    height: 130px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 22px;
    transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur);
}

.marquee-logo:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.08);
    transform: translateY(-3px);
}

.marquee-logo img {
    width: 178px;
    height: 90px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: grayscale(15%);
    transition: filter var(--dur);
}

.marquee-logo:hover img {
    filter: grayscale(0%);
}


/* ================================================
   TESTIMONIALS — Clean uniform cards
   ================================================ */
.testi-section {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.testi-section::before {
    content: '';
    position: absolute;
    right: -180px;
    top: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.testi-section .pg-section-header {
    margin-bottom: 3rem;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--dur), transform var(--dur);
}

.testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background var(--dur);
    border-radius: 20px 20px 0 0;
}

.testi-card:hover {
    box-shadow: 0 16px 48px rgba(13, 27, 75, 0.09);
    transform: translateY(-5px);
}

.testi-card:hover::before {
    background: linear-gradient(90deg, var(--accent), #60a5fa);
}

.testi-deco-quote {
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    font-family: Georgia, serif;
    font-size: 7rem;
    line-height: 1;
    color: var(--sky);
    pointer-events: none;
    user-select: none;
    transition: color var(--dur);
}

.testi-card:hover .testi-deco-quote {
    color: #bfdbfe;
}

.testi-stars {
    font-size: 0.85rem;
    color: #f59e0b;
    letter-spacing: 3px;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.testi-text {
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.85;
    flex: 1;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border);
    transition: border-color var(--dur), transform var(--dur);
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testi-card:hover .testi-avatar {
    border-color: var(--accent);
    transform: scale(1.06);
}

.testi-info strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.testi-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}


/* ================================================
   GLOBAL TRADE MAP SECTION
   ================================================ */
.trademap-section {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

/* Two-column layout: copy left, map right */
.trademap-layout {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 4rem;
    align-items: center;
}

/* LEFT — copy column */
.trademap-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trademap-copy .pg-eyebrow {
    align-self: flex-start;
}

.trademap-desc {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.85;
    max-width: 420px;
}

/* 2×2 stats grid */
.trademap-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.trademap-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.trademap-stat:hover {
    box-shadow: 0 6px 24px rgba(13, 27, 75, 0.1);
    transform: translateY(-2px);
}

.trademap-stat-num {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.03em;
}

.trademap-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* RIGHT — map image */
.trademap-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 56px rgba(13, 27, 75, 0.15);
    border: 1px solid var(--border);
}

.trademap-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(13, 27, 75, 0.06) 100%
    );
    pointer-events: none;
}

.trademap-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 420px;
}


/* ================================================
   NEW SECTIONS — RESPONSIVE BREAKPOINTS
   ================================================ */

/* Tablet: 960px */
@media (max-width: 960px) {
    .pg-section {
        padding: 4.5rem 0;
    }

    /* What We Do */
    .wwd-cards {
        grid-template-columns: 1fr;
    }

    /* Why Us */
    .why-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-sub {
        text-align: left;
        max-width: 100%;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials */
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Marquee */
    .marquee-logo {
        width: 190px;
        height: 115px;
    }

    .marquee-logo img {
        width: 155px;
        height: 78px;
    }

    /* Trade Map — stack to single column on tablet */
    .trademap-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .trademap-img {
        max-height: 340px;
        object-fit: cover;
        object-position: center;
    }
}

/* Large mobile: 680px */
@media (max-width: 680px) {
    .pg-section {
        padding: 4rem 0;
    }

    /* What We Do */
    .wwd-cards {
        grid-template-columns: 1fr;
    }

    .wwd-card-inner {
        padding: 1.75rem 1.5rem;
    }

    /* Why Us */
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-card {
        padding: 1.5rem 1.25rem;
    }

    /* Testimonials — single column */
    .testi-grid {
        grid-template-columns: 1fr;
    }

    /* Marquee */
    .marquee-logo {
        width: 165px;
        height: 100px;
        padding: 14px 16px;
    }

    .marquee-logo img {
        width: 135px;
        height: 68px;
    }

    .marquee-fade-left,
    .marquee-fade-right {
        width: 80px;
    }

    /* Trade Map */
    .trademap-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .trademap-stat {
        padding: 1rem 1.1rem;
    }

    .trademap-img {
        max-height: 260px;
    }

    .trademap-img-wrap {
        border-radius: 14px;
    }
}

/* Small mobile: 420px */
@media (max-width: 420px) {
    .pg-section {
        padding: 3rem 0;
    }

    .pg-heading {
        font-size: 1.75rem;
    }

    /* Why Us */
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Certs header */
    .certs-header-wrap {
        margin-bottom: 2rem;
    }

    /* Marquee */
    .marquee-logo {
        width: 140px;
        height: 86px;
        padding: 10px 12px;
    }

    .marquee-logo img {
        width: 112px;
        height: 60px;
    }

    .marquee-track {
        gap: 1rem;
    }

    .marquee-fade-left,
    .marquee-fade-right {
        width: 50px;
    }

    /* Testimonials */
    .testi-card {
        padding: 2rem 1.5rem 1.5rem;
    }

    .testi-deco-quote {
        font-size: 5rem;
    }
}


/* ================================================
   CTA BANNER — Full-width Ship Image
   ================================================ */
.cta-banner {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

/* Background image layer */
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.04);
    transition: transform 8s ease;
    display: block;
}

.cta-banner:hover .cta-bg-img {
    transform: scale(1.0);
}

/* Gradient overlay — navy → transparent */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(13, 27, 75, 0.82) 0%,
            rgba(13, 27, 75, 0.65) 50%,
            rgba(13, 27, 75, 0.5) 100%);
}

/* Content */
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: 5rem 2rem;
}

.cta-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.cta-heading {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* White solid button */
.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.btn-white:hover {
    background: var(--sky);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
}

.btn-white svg {
    width: 17px;
    height: 17px;
    transition: transform var(--dur);
}

.btn-white:hover svg {
    transform: translateX(3px);
}

/* White outline button */
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* CTA banner responsive */
@media (max-width: 680px) {
    .cta-banner {
        min-height: 420px;
    }

    .cta-content {
        padding: 4rem 1.5rem;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .cta-banner {
        min-height: 360px;
    }

    .cta-heading {
        font-size: 1.75rem;
    }
}


/* ================================================
   SITE FOOTER
   ================================================ */
.site-footer {
    background: #ffffff;
    color: var(--text-body);
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top section: 4-column grid */
.footer-top {
    padding: 4.5rem 0 3rem;
    border-bottom: none;
}

.footer-top .footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
    gap: 3rem;
}

/* Brand column */
.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.83rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

/* Contact list */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-body);
}

.fc-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}

.fc-icon svg {
    width: 100%;
    height: 100%;
}

.footer-contact-list a {
    color: var(--text-body);
    text-decoration: none;
    transition: color var(--dur);
}

.footer-contact-list a:hover {
    color: var(--accent);
}

/* Column headings */
.footer-col-title {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

/* Footer nav links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.875rem;
    position: relative;
    padding-left: 0;
    transition: color var(--dur), padding-left var(--dur);
    display: inline-block;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -1.2rem;
    opacity: 0;
    transition: opacity var(--dur), left var(--dur);
    color: var(--accent);
    font-size: 0.75rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 1.2rem;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}


.footer-social {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    text-decoration: none;
    transition: background var(--dur), border-color var(--dur), color var(--dur), transform var(--dur);
}

.social-btn svg {
    width: 16px;
    height: 16px;
}

.social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* Bottom bar */
.footer-bottom {
    padding: 1.25rem 0;
    background: var(--navy);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    width: 100%;
}

/* Footer responsive */
@media (max-width: 960px) {
    .footer-top .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 2rem;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }

    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 580px) {
    .footer-top {
        padding: 3rem 0 2rem;
    }

    .footer-top .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-copy {
        text-align: center;
    }
}