:root {
    /* Brand Colors - 60-30-10 Rule */
    --primary-dark: #123e0c;
    /* 60% - Primary background */
    --primary-main: #286918;
    /* 30% - Secondary elements */
    --accent-green: #44881e;
    /* 10% - Accents */
    --highlight-lime: #75af22;
    /* Hover states */
    --bright-lime: #c3e132;
    /* CTAs */

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f7;
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;

    /* Typography */
    --font-primary: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: var(--font-primary);
    background: var(--off-white);
    overflow-x: hidden;
    padding-top: 0;
}

/* Header Styles */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-container {
    background: transparent;
    position: relative;
    height: 140px;
    transition: var(--transition-smooth);
}

/* Slim Menu Bar with Notch */
.header-bar {
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 70px;
    background: var(--off-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 0 0 24px 24px;
    box-shadow:
        0 4px 24px rgba(18, 62, 12, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    transition: var(--transition-smooth);
}

.header-wrapper.scrolled .header-bar {
    background: var(--off-white);
    box-shadow:
        0 6px 32px rgba(18, 62, 12, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

/* Logo Bulge/Notch Container */
.logo-bulge-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    z-index: 10;
}

.logo-bulge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 120px;
    background: var(--off-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border-radius: 0 0 24px 24px;
}

.header-wrapper.scrolled .logo-bulge {
    background: rgba(255, 255, 255, 0.95);
}

/* Create the notch cutout effect */
.header-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 75px;
    background: rgba(255, 255, 255, 0.85);
    background: transparent;
    /* border-radius: 0 0 65px 65px; */
    z-index: 5;
}



.navbar {
    padding: 0;
    position: relative;
    height: 140px;
}

.navbar .container-fluid {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding-top: 15px;
}

.navbar-brand {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    padding: 0;
    margin: 0;
    transition: var(--transition-smooth);
}

.navbar-brand:hover {
    transform: translateX(-50%) scale(1.03);
}

/* Logo Styles */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.logo-image-wrapper {
    position: relative;
    width: 100px;
    height: 80px;
    border-radius: 50%;

    transition: var(--transition-smooth);
}

.logo-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;

    transform: rotate(45deg);
    animation: shine 4s infinite;
    z-index: 1;
    pointer-events: none;
}


@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.logo-image {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.logo-image-wrapper:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: -0.3px;
    line-height: 1;
    text-align: center;
    display: none;
}

.logo-tagline {
    display: none;
}

/* Navigation Menu */
.navbar-nav {
    position: relative;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
    justify-content: space-between;
    padding: 0 40px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-center-spacer {
    width: 160px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition-smooth);
    letter-spacing: -0.2px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-main), var(--accent-green));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link.active {
    color: var(--off-white) !important;
    background: var(--accent-green);
}

/* CTA Button */
.btn-cta {
    background: linear-gradient(135deg, var(--accent-green), var(--highlight-lime));
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    border: none;
    letter-spacing: -0.2px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(68, 136, 30, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(68, 136, 30, 0.4);
    background: linear-gradient(135deg, var(--highlight-lime), var(--bright-lime));
}

.btn-cta:hover::before {
    width: 300px;
    height: 300px;
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: none;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    position: absolute;
    right: 40px;
    top: 15px;
    z-index: 20;
}

.navbar-toggler:focus {
    box-shadow: none;
    background: rgba(18, 62, 12, 0.06);
}

.navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    display: block;
    position: relative;
    transition: var(--transition-smooth);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-dark);
    left: 0;
    transition: var(--transition-smooth);
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Menu */
@media (max-width: 991px) {
    .header-container {
        height: auto;
        min-height: 140px;
    }

    .header-bar {
        height: 60px;
        left: 12px;
        right: 12px;
        border-radius: 0 0 20px 20px;
    }

    .logo-bulge-wrapper {
        width: 120px;
        height: 120px;
    }

    .logo-bulge {
        width: 100px;
        height: 100px;
    }

    .header-bar::before {
        width: 110px;
        height: 65px;
        border-radius: 0 0 55px 55px;
    }

    .logo-image-wrapper {
        width: 64px;
        height: 64px;
    }

    .navbar-nav {
        flex-direction: column;
        padding: 0;
        margin-top: 80px;
        gap: 8px;
    }

    .nav-left,
    .nav-right {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .nav-center-spacer {
        display: none;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        margin: 80px 20px 20px 20px;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(18, 62, 12, 0.12);
    }

    .nav-link {
        padding: 12px 16px !important;
        width: 100%;
        text-align: center;
    }

    .btn-cta {
        width: 100%;
        margin-top: 8px;
        padding: 12px 20px;
    }

    .navbar-toggler {
        right: 20px;
        top: 10px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .header-bar {
        left: 8px;
        right: 8px;
        border-radius: 0 0 16px 16px;
    }

    .logo-bulge-wrapper {
        width: 100px;
        height: 100px;
    }

    .logo-bulge {
        width: 85px;
        height: 85px;
    }

    .logo-image-wrapper {
        width: 56px;
        height: 56px;
    }

    .header-bar::before {
        width: 95px;
        height: 55px;
        border-radius: 0 0 48px 48px;
    }

    .navbar-toggler {
        right: 15px;
    }
}

/* Tablet Adjustments */
@media (max-width: 1200px) and (min-width: 992px) {
    .nav-link {
        padding: 10px 14px !important;
        font-size: 13px;
    }

    .btn-cta {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-wrapper {
    animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item {
    animation: fadeInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.nav-item:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-item:nth-child(2) {
    animation-delay: 0.15s;
}

.nav-item:nth-child(3) {
    animation-delay: 0.2s;
}

.nav-item:nth-child(4) {
    animation-delay: 0.25s;
}

.nav-item:nth-child(5) {
    animation-delay: 0.3s;
}

.nav-item:nth-child(6) {
    animation-delay: 0.35s;
}

/* Demo Content */
.demo-content {
    margin-top: 160px;
    padding: 80px 20px;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--light-gray) 100%);
}

.demo-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.demo-hero h1 {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.demo-hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-green), var(--highlight-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Powered By Section */
.footer-powered {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.powered-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.powered-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.powered-brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.powered-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(195, 225, 50, 0.1), transparent);
    transition: var(--transition-smooth);
}

.powered-brand:hover::before {
    left: 100%;
}

.powered-brand:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(195, 225, 50, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(195, 225, 50, 0.15);
}

.powered-name {
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--bright-lime), var(--highlight-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.powered-brand i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
}

.powered-brand:hover i {
    color: var(--bright-lime);
    transform: translate(2px, -2px);
}

/* Responsive */
@media (max-width: 576px) {
    .footer-powered {
        padding: 14px 0;
    }

    .powered-text {
        font-size: 11px;
    }

    .powered-name {
        font-size: 12px;
    }

    .powered-brand {
        padding: 5px 12px;
    }

    .powered-brand i {
        font-size: 13px;
    }
}

/* Footer Section */
.footer-section {
    position: relative;
    background: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
}

/* Wave Effect */
.footer-wave {
    position: relative;
    top: -1px;
    width: 100%;
    height: 120px;
    background: var(--off-white);
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-content {
    padding: 80px 0 40px;
    position: relative;
}

/* Main Footer */
.footer-main {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

/* Footer Brand */
.footer-brand {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(195, 225, 50, 0.2);
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--bright-lime);
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

/* Social Media */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-green), var(--highlight-lime));
    opacity: 0;
    transition: var(--transition-smooth);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(195, 225, 50, 0.3);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    font-size: 20px;
    position: relative;
    z-index: 1;
}

/* Footer Columns */
.footer-column {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-column:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.3s;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--bright-lime), transparent);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bright-lime);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--bright-lime);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact i {
    font-size: 20px;
    color: var(--bright-lime);
    flex-shrink: 0;
}

/* Newsletter Section */
.footer-newsletter {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
}

.newsletter-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.newsletter-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.newsletter-form {
    max-width: 500px;
    margin-left: auto;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px 0 0 16px;
    color: var(--white);
    padding: 14px 20px;
    font-size: 14px;
    height: 56px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--bright-lime);
    box-shadow: 0 0 0 3px rgba(195, 225, 50, 0.1);
    color: var(--white);
    outline: none;
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--accent-green), var(--highlight-lime));
    border: none;
    border-radius: 0 16px 16px 0;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 24px;
    height: 56px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--highlight-lime), var(--bright-lime));
    box-shadow: 0 8px 24px rgba(195, 225, 50, 0.3);
    transform: translateX(3px);
}

.newsletter-btn i {
    font-size: 20px;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover i {
    transform: translateX(4px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bright-lime);
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--bright-lime);
}

.footer-legal a:hover::after {
    width: 100%;
}

/* Certifications */
.footer-certifications {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.certifications-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cert-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.cert-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-content {
        padding: 60px 0 30px;
    }

    .footer-main {
        padding-bottom: 40px;
        margin-bottom: 30px;
    }

    .footer-newsletter {
        padding: 30px 24px;
        margin-bottom: 30px;
    }

    .newsletter-title {
        font-size: 20px;
    }

    .newsletter-form {
        margin-left: 0;
        margin-top: 20px;
    }

    .footer-legal {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .footer-wave {
        height: 80px;
    }

    .footer-content {
        padding: 40px 0 20px;
    }

    .footer-newsletter {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .newsletter-title {
        font-size: 18px;
    }

    .newsletter-subtitle {
        font-size: 13px;
    }

    .newsletter-input,
    .newsletter-btn {
        height: 48px;
        font-size: 13px;
    }

    .newsletter-btn {
        padding: 12px 20px;
    }

    .newsletter-btn span {
        display: none;
    }

    .footer-bottom {
        text-align: center;
    }

    .copyright {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .footer-legal {
        justify-content: center;
        gap: 16px;
        font-size: 13px;
    }

    .certifications-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .cert-badges {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-brand-name {
        font-size: 20px;
    }

    .footer-logo {
        width: 70px;
        height: 70px;
    }

    .footer-logo-img {
        width: 45px;
        height: 45px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link i {
        font-size: 18px;
    }

    .newsletter-input {
        border-radius: 14px 0 0 14px;
        padding: 12px 16px;
    }

    .newsletter-btn {
        border-radius: 0 14px 14px 0;
        padding: 12px 16px;
    }
}

/* Solutions Dropdown Menu */
.mgi-dropdown {
    position: relative;
}

.mgi-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mgi-dropdown-arrow {
    display: inline-flex;
    transition: var(--transition-smooth);
}

.mgi-dropdown:hover .mgi-dropdown-arrow {
    transform: rotate(180deg);
}

.mgi-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 8px;
    box-shadow:
        0 8px 32px rgba(18, 62, 12, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: var(--transition-smooth);
    z-index: 1000;
}

.mgi-dropdown:hover .mgi-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mgi-dropdown-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.mgi-dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-main), var(--accent-green));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.mgi-dropdown-item:hover::before {
    opacity: 0.08;
}

.mgi-dropdown-item:hover {
    transform: translateX(4px);
}

.mgi-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    transition: var(--transition-smooth);
}

.mgi-dropdown-item:hover .mgi-item-title {
    color: var(--primary-dark);
}

.mgi-item-desc {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: -0.2px;
    line-height: 1.4;
}

/* Add subtle divider between items */
.mgi-dropdown-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(18, 62, 12, 0.08) 50%,
            transparent 100%);
}

/* Mobile Dropdown Styles */
@media (max-width: 991px) {
    .mgi-dropdown-toggle {
        justify-content: center;
    }

    .mgi-dropdown-menu {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 8px;
        min-width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mgi-dropdown.mgi-active .mgi-dropdown-menu {
        max-height: 500px;
        padding: 8px;
    }

    .mgi-dropdown-item {
        padding: 14px 16px;
    }

    .mgi-dropdown-item:hover {
        transform: none;
    }
}

/* Tablet adjustments */
@media (max-width: 1200px) and (min-width: 992px) {
    .mgi-dropdown-menu {
        min-width: 280px;
    }

    .mgi-item-title {
        font-size: 13px;
    }

    .mgi-item-desc {
        font-size: 11px;
    }
}