/* ═══════════════════════════════════════════════════════════════════════════════
   GPS ADDITIONAL STYLES
   Rescued from WordPress Additional CSS (Customizer)
   Contains: 404 Page, Footer
   ═══════════════════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════════════════════
   GPS 404 PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════════ */

.gps-404-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.gps-404-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(17, 24, 39, 0.95) 100%);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 24px;
    padding: 60px 48px;
    text-align: center;
    max-width: 700px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.gps-404-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

.gps-404-card::after {
    content: '404';
    position: absolute;
    top: -15%;
    right: -8%;
    font-size: 280px;
    font-weight: 900;
    color: #22c55e;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -0.05em;
}

.gps-404-content {
    position: relative;
    z-index: 1;
}

.gps-404-visual {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.gps-door-icon-container {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(34, 197, 94, 0.25);
    position: relative;
    animation: gentleKnock 2.5s ease-in-out infinite;
}

@keyframes gentleKnock {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-8deg); }
    20% { transform: rotate(0deg); }
    30% { transform: rotate(-8deg); }
    40%, 100% { transform: rotate(0deg); }
}

.gps-404-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 100px;
    padding: 8px 18px;
    margin-bottom: 20px;
}

.gps-404-badge span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: #f87171;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.gps-404-headline {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #f1f5f9;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.gps-404-green {
    color: #22c55e !important;
}

.gps-404-tagline {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 600;
    color: #94a3b8;
    margin: 0 0 24px 0;
    font-style: italic;
}

.gps-404-subtext {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0 auto 36px auto;
    max-width: 450px;
}

.gps-404-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.gps-404-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.gps-404-btn-primary {
    background: #22c55e;
    color: #020617;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.gps-404-btn-primary:hover {
    background: #4ade80;
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.5);
}

.gps-404-btn-secondary {
    background: transparent;
    color: #e2e8f0;
    border: 1px solid #334155;
}

.gps-404-btn-secondary:hover {
    border-color: #22c55e;
    color: #22c55e;
}

.gps-smoke-container {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.gps-smoke {
    width: 8px;
    height: 8px;
    background: rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    position: absolute;
    filter: blur(4px);
    animation: smokeRise 4s ease-out infinite;
    opacity: 0;
}

.gps-smoke:nth-child(1) { left: 0; animation-delay: 0s; }
.gps-smoke:nth-child(2) { left: 15px; animation-delay: 1s; }
.gps-smoke:nth-child(3) { left: -10px; animation-delay: 2s; }

@keyframes smokeRise {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    20% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-80px) scale(2.5);
    }
}

@media (max-width: 600px) {
    .gps-404-card {
        padding: 44px 28px;
    }
    .gps-door-icon-container {
        width: 100px;
        height: 100px;
    }
    .gps-404-buttons {
        flex-direction: column;
        align-items: center;
    }
    .gps-404-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════════
   GREENPOINT SEEDS FOOTER — Premium v3
   ═══════════════════════════════════════════════════════════════════════════════ */

/* === TOTAL RESET === */
body .footer-widgets,
body .footer-widgets *,
body .footer-widgets *::before,
body .footer-widgets *::after {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    outline: none !important;
    box-sizing: border-box !important;
}

/* === CONTAINER === */
body .footer-widgets.footer-widgets.footer-widgets {
    background: linear-gradient(180deg, #0a0f1a 0%, #020617 100%) !important;
    padding: 48px 24px 40px !important;
    position: relative !important;
}

body .footer-widgets.footer-widgets::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.6) 50%, transparent) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* === ROW GRID === */
body .footer-widgets .row.row.row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

@media (min-width: 600px) {
    body .footer-widgets .row.row.row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (min-width: 1024px) {
    body .footer-widgets .row.row.row {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0 !important;
    }
}

/* === COLUMNS === */
body .footer-widgets .col.col.col,
body .footer-widgets .widget_block,
body .footer-widgets .widget {
    min-width: 0 !important;
}

body .footer-widgets .col-inner.col-inner.col-inner {
    padding: 16px !important;
}

@media (min-width: 1024px) {
    body .footer-widgets .col.col.col {
        border-right: 1px solid rgba(51, 65, 85, 0.4) !important;
    }
    
    body .footer-widgets .col.col.col:last-child {
        border-right: none !important;
    }
    
    body .footer-widgets .col-inner.col-inner.col-inner {
        padding: 0 32px !important;
    }
}

/* === MENU GROUPS === */
body .footer-widgets .wp-block-group.wp-block-group.wp-block-group {
    margin: 0 0 32px 0 !important;
    padding: 0 !important;
}

body .footer-widgets .wp-block-group.wp-block-group.wp-block-group:last-child {
    margin-bottom: 0 !important;
}

/* === HEADINGS === */
body .footer-widgets h1,
body .footer-widgets h2,
body .footer-widgets h3,
body .footer-widgets h4,
body .footer-widgets h5,
body .footer-widgets h6,
body .footer-widgets .widget-title,
body .footer-widgets .wp-block-heading,
body .footer-widgets [class*="title"] {
    all: unset !important;
    display: block !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: #f1f5f9 !important;
    margin-bottom: 16px !important;
    padding-bottom: 12px !important;
    position: relative !important;
    line-height: 1.3 !important;
}

body .footer-widgets h3::after,
body .footer-widgets h4::after,
body .footer-widgets .widget-title::after,
body .footer-widgets .wp-block-heading::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 28px !important;
    height: 2px !important;
    background: #22c55e !important;
    border-radius: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4) !important;
    transition: width 0.3s ease !important;
}

body .footer-widgets .wp-block-group:hover h3::after,
body .footer-widgets .wp-block-group:hover h4::after,
body .footer-widgets .wp-block-group:hover .wp-block-heading::after {
    width: 100% !important;
}

body .footer-widgets h1::before,
body .footer-widgets h2::before,
body .footer-widgets h3::before,
body .footer-widgets h4::before,
body .footer-widgets h5::before,
body .footer-widgets h6::before,
body .footer-widgets .widget-title::before,
body .footer-widgets .wp-block-heading::before,
body .footer-widgets [class*="title"]::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* === NAVIGATION === */
body .footer-widgets nav,
body .footer-widgets .wp-block-navigation,
body .footer-widgets .wp-block-navigation__container,
body .footer-widgets ul,
body .footer-widgets .menu {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    list-style: none !important;
}

body .footer-widgets li,
body .footer-widgets .wp-block-navigation-item,
body .footer-widgets .menu-item {
    list-style: none !important;
}

/* === LINKS === */
body .footer-widgets a,
body .footer-widgets .wp-block-navigation-item__content {
    all: unset !important;
    display: block !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #94a3b8 !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3) !important;
    cursor: pointer !important;
    transition: color 0.2s ease, padding-left 0.2s ease !important;
    position: relative !important;
    line-height: 1.5 !important;
}

body .footer-widgets li:last-child a,
body .footer-widgets .wp-block-navigation-item:last-child .wp-block-navigation-item__content {
    border-bottom: none !important;
}

body .footer-widgets a:hover,
body .footer-widgets .wp-block-navigation-item__content:hover {
    color: #22c55e !important;
    padding-left: 12px !important;
}

body .footer-widgets a::before,
body .footer-widgets .wp-block-navigation-item__content::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    width: 3px !important;
    height: 0 !important;
    background: #22c55e !important;
    border-radius: 2px !important;
    transform: translateY(-50%) !important;
    transition: height 0.2s ease !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

body .footer-widgets a:hover::before,
body .footer-widgets .wp-block-navigation-item__content:hover::before {
    height: 50% !important;
}

/* === MOBILE === */
@media (max-width: 599px) {
    body .footer-widgets.footer-widgets.footer-widgets {
        padding: 32px 16px !important;
    }
    
    body .footer-widgets .row.row.row {
        gap: 12px !important;
    }
    
    body .footer-widgets .col.col.col {
        background: rgba(15, 23, 42, 0.6) !important;
        border: 1px solid rgba(51, 65, 85, 0.4) !important;
        border-radius: 16px !important;
        overflow: hidden !important;
    }
    
    body .footer-widgets .col-inner.col-inner.col-inner {
        padding: 20px !important;
    }
}

/* === FOCUS === */
body .footer-widgets a:focus-visible {
    outline: 2px solid #22c55e !important;
    outline-offset: 2px !important;
}
