/* --- Reset & Variables --- */
:root {
    --color-text-main: #111111;
    --color-text-light: #555555;
    --color-primary-green: #4F6F2F;
    --color-button-green: #4A6326;
    --color-bg-cream: #F2F4EF;
    --font-family: 'Inter', sans-serif;
    --nav-height: 72px;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--color-bg-cream);
    color: var(--color-text-main);
    line-height: 1.5;
    overflow-x: hidden;
    /* Prevent horizontal scroll on mobile */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}

/* --- Layout Utility --- */
/* Container is inherited from shared-nav-footer.css */


/* --- Navbar Styling --- */
.navbar {
    background-color: #ffffff;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E5E5E5;
    position: relative;
    z-index: 100;
}

.nav-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    z-index: 101;
    /* Above mobile menu */
}

.bag-icon {
    display: inline-block;
    width: 16px;
    height: 12px;
    background: #000;
    border-radius: 2px;
    position: relative;
    margin: 0 1px;
    top: 2px;
}

.bag-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 4px;
    width: 8px;
    height: 4px;
    border: 2px solid #000;
    border-bottom: none;
    border-radius: 2px 2px 0 0;
}

.bag-icon::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 6px;
    width: 4px;
    height: 4px;
    background: #4F6F2F;
    border-radius: 50%;
}

/* Desktop Nav Menu */
.nav-menu {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    height: var(--nav-height);
    /* Full height for hover */
}

.nav-link:hover {
    color: #000;
}

.chevron {
    width: 14px;
    height: 14px;
    color: #666;
}

/* Active State */
.nav-link.active {
    color: #000;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 23px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #9BAD7F;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.login-btn {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.cta-btn {
    background-color: var(--color-button-green);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.cta-btn:hover {
    background-color: #3d5220;
}

/* --- Hamburger Icon (Hidden on Desktop) --- */
.hamburger {
    display: none;
    /* Default hidden */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}

.bar {
    width: 24px;
    height: 2px;
    background-color: #111;
    transition: 0.3s;
}

/* Hamburger Animation when Active */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Menu (Hidden by default) --- */
.mobile-menu {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    max-height: 0;
    /* Animated height */
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-menu.open {
    max-height: 500px;
    /* Expand on open */
    padding: 20px 0;
}

.mobile-link {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    border-left: 3px solid transparent;
}

.mobile-link:hover {
    background-color: #f9f9f9;
}

.mobile-link.active {
    border-left-color: var(--color-button-green);
    color: var(--color-button-green);
    background-color: #f5f7f2;
}

.mobile-actions {
    margin-top: 15px;
    padding: 15px 24px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.full-width {
    width: 100%;
    text-align: center;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 80px 0 120px;
    background: url("./assets/regulatory-hero.png") no-repeat center;
    background-size: cover;
}

.hero-blur-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(79, 111, 47, 0.15) 0%, rgba(242, 244, 239, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 780px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    margin-bottom: 24px;
}

.crumb-icon {
    width: 12px;
    height: 12px;
    color: #999;
}

.crumb-current {
    color: #111;
    font-weight: 500;
}

h1 {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #0F0F0F;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    max-width: 730px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.primary-btn {
    background-color: var(--color-button-green);
    color: white;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s;
}

.primary-btn:hover {
    background-color: #3d5220;
}

.text-btn {
    background: transparent;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 24px;
}

.text-btn:hover {
    text-decoration: underline;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet & Mobile (Below 992px) */
@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

    /* Hide standard nav */
    .hamburger {
        display: flex;
    }

    /* Show hamburger */

    h1 {
        font-size: 42px;
    }

    .hero-blur-bg {
        width: 100%;
        opacity: 0.6;
        background: radial-gradient(circle at 100% 0%, rgba(79, 111, 47, 0.2) 0%, transparent 60%);
    }
}

/* Mobile (Below 600px) */
@media (max-width: 600px) {

    h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .hero-desc {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
    }

    .primary-btn,
    .text-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        box-sizing: border-box;
    }
}

/* --- What We Do Section --- */
.what-we-do-section {
    padding: 100px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    max-width: 1050px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.feature-card:hover,
.feature-card.active {
    border-color: #9BAD7F;
    box-shadow: 0 4px 12px rgba(79, 111, 47, 0.08);
}

.icon-box {
    width: 48px;
    height: 48px;
    background-color: #E8EC67;
    /* Yellow/Green Accent */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-box svg {
    color: #4A6326;
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.4;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* --- Pathways Section (Cream Background) --- */
.pathways-section {
    padding: 100px 0;
    background-color: #FFFEF5;
    /* Cream background from image */
}

.pathway-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
}

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

.pathway-content {
    flex: 1;
    width: 800px;
}

.pathway-image {
    flex: 1;
}

.pathway-image img {
    width: 97%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pathway-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.3;
}

.pathway-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 32px;
}

/* Two-column Check List */
.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 Columns */
    gap: 20px;
    margin-bottom: 32px;
}

.check-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.check-icon {
    min-width: 44px;
    height: 44px;
    background-color: #E8EC67;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.check-icon svg {
    width: 14px;
    height: 14px;
    color: #4A6326;
}

.check-list span {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

.btn-dark {
    display: inline-block;
    background-color: #4F6F2F;
    /* Dark Green */
    color: #fff !important;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    transition: background 0.2s;
}

.btn-dark:hover {
    background-color: #3d5220;
}

/* --- Responsive Breakpoints --- */

/* Tablet (Portrait) */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 for Cards */
    }

    .pathway-row {
        flex-direction: column;
        /* Stack Text and Image */
        gap: 40px;
    }

    .pathway-content,
    .pathway-image {
        width: 100%;
        box-sizing: border-box;
    }

    .reverse-layout {
        flex-direction: column-reverse;
        /* Keep text on top for Row 2 if desired, or standard column to have image first */
        /* Standard column usually better for consistent flow: Text -> Image -> Text -> Image? 
           Actually, the design usually wants Image to break up text. 
           Let's leave standard column for row 1, and row 2. */
        flex-direction: column;
    }

    .pathway-image img {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        /* Stack Cards vertically */
    }

    .what-we-do-section,
    .pathways-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .check-list {
        grid-template-columns: 1fr;
        /* Stack list items vertically */
    }

    .pathway-content h3 {
        font-size: 20px;
    }

    .btn-dark {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

/* --- Expertise Section --- */
.expertise-section {
    padding: 100px 0;
    background-color: #fff;
    /* White background */
}

.expertise-grid {
    display: grid;
    /* 3 Columns equal width */
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Yellow Card Styling */
.expertise-card {
    background-color: #F4F6B9;
    /* The specific light yellow pastel color */
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s ease;
}

.expertise-card:hover {
    transform: translateY(-4px);
    /* Slight lift on hover */
}

/* Icon Box inside Card */
.sector-icon {
    width: 48px;
    height: 48px;
    background-color: #E8EC67;
    /* Slightly darker yellow/green accent */
    border: 1px solid #EBF2AF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.sector-icon svg {
    color: #4A6326;
    /* Dark Olive */
    width: 24px;
    height: 24px;
}

/* Card Typography */
.expertise-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.expertise-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}

/* --- Responsive Breakpoints --- */

/* Tablet (Portrait) */
@media (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 Columns on Tablet */
    }
}

/* Mobile */
@media (max-width: 600px) {
    .expertise-grid {
        grid-template-columns: 1fr;
        /* 1 Column on Mobile */
    }

    .expertise-card {
        padding: 24px;
        /* Slightly tighter padding on small screens */
    }
}

/* --- Certification Process Section --- */
.process-section {
    padding: 100px 0;
    background-color: #fff;
}

.process-grid {
    display: grid;
    /* 4 Columns for the steps */
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Large Grey Number */
.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #E6E6E6;
    /* Very light grey */
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-family);
}

/* The Yellow Divider Line */
.step-divider {
    width: 100%;
    height: 2px;
    background-color: #EBF2AF;
    /* Lime green accent */
    margin-bottom: 24px;
}

/* Dark Green Icon Box */
.step-icon-box {
    width: 48px;
    height: 48px;
    background-color: #4A6326;
    /* Dark Olive */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff !important;
    /* Icon color is white here */
}

.step-icon-box svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Typography */
.process-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* --- Responsive Breakpoints --- */

/* Tablet (Portrait) */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 Layout */
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 48px;
        /* More space between steps on mobile */
    }

    .step-number {
        font-size: 36px;
    }
}

/* --- Why Us Section --- */
.why-us-section {
    padding: 100px 0;
    /* Light grey/green background to contrast with white cards */
    background-color: #F0F2EB;
}

.why-us-grid {
    display: grid;
    /* 3 Columns equal width */
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* White Card Style */
.why-us-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    /* Very subtle shadow */
    transition: transform 0.2s ease;
}

.why-us-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

/* Dark Green Icon Box */
.why-icon-box {
    width: 48px;
    height: 48px;
    background-color: #4A6326;
    /* Dark Olive */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff !important;
    /* White icon */
}

.why-icon-box svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Typography */
.why-us-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-us-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* --- Responsive Breakpoints --- */

/* Tablet (Portrait) */
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 Columns */
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        /* 1 Column */
    }

    .why-us-card {
        padding: 24px;
    }
}

/* --- Final CTA Section --- */
.cta-section {
    padding: 80px 0 100px;
    background-color: #fff;
}

.cta-card {
    /* The specific bright pastel yellow from the image */
    background-color: #E8EC67;
    border-radius: 24px;
    padding: 80px 24px;
    text-align: center;
    max-width: 100%;
    /* Spans the width of container */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: 650px;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Primary Green Button */
.cta-actions .btn-primary {
    background-color: #4A6326;
    /* Dark Olive */
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.2s;
}

.cta-actions .btn-primary:hover {
    background-color: #3d5220;
}

/* Text Link Button */
.cta-actions .btn-link {
    color: #4A6326 !important;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 14px 30px;
    /* Slight padding for hit area */
    border: 1px solid #4A6326;
    border-radius: 8px;
}

.cta-actions .btn-link:hover {
    text-decoration: underline;
    /* Optional hover effect */
}

/* --- Responsive --- */
@media (max-width: 600px) {
    .cta-card {
        padding: 60px 20px;
        border-radius: 16px;
    }

    .cta-card h2 {
        font-size: 26px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 16px;
    }

    .cta-actions .btn-primary,
    .cta-actions .btn-link {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .cta-actions .btn-link {
        border: none;
        padding: 14px 20px;
    }
}

/* --- Main Footer Styles --- */
.main-footer {
    background-color: #F0F2EB;
    /* Matches the light beige/green bg */
    padding: 80px 0 40px;
    font-size: 14px;
    color: #333;
    position: relative;
}

/* Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

/* Brand Column */
.footer-brand-col {
    max-width: 300px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    display: block;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 15px;
    color: #111;
    margin-bottom: 24px;
}

.contact-info {
    margin-bottom: 24px;
}

.contact-item {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

.contact-item strong {
    color: #111;
    font-weight: 700;
}

.contact-item a {
    color: #555;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: #111;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #4A6326;
}

/* Navigation Grid */
.footer-nav-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.nav-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.nav-col ul li {
    margin-bottom: 12px;
}

.nav-col ul li a {
    color: #555;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-col ul li a:hover {
    color: #4A6326;
}

/* Divider Lines */
.footer-divider {
    border: none;
    border-top: 1px solid #D1D5CB;
    /* Subtle darker line */
    margin: 40px 0;
}

/* Newsletter Section */
.footer-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.newsletter-text {
    max-width: 500px;
}

.newsletter-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.newsletter-text p {
    color: #555;
    line-height: 1.5;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.input-wrapper {
    position: relative;
    width: 300px;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    /* Space for icon */
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.mail-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.newsletter-form button {
    background-color: #4F6F2F;
    /* Dark Olive */
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background-color: #3d5220;
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 12px;
    color: #777;
}

.footer-badges {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-badges img {
    height: 32px;
    opacity: 0.8;
}

/* Floating Chat Button */
.chat-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.2s;
}

.chat-float:hover {
    transform: scale(1.1);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-nav-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-nav-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* 2 cols on mobile */
    }

    .footer-newsletter {
        flex-direction: column;
        align-items: flex-start;
    }

    .input-wrapper {
        width: 100%;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        /* Badges on top of copyright usually looks better on mobile, or bottom. */
        align-items: flex-start;
    }
}