.site-footer {
    position: relative;
    background: var(--brand-gradient-dark);
    color: #ffffff;
    padding: calc(var(--spacing-unit) * 4) 0 calc(var(--spacing-unit) * 2.5);
    margin-top: calc(var(--spacing-unit) * 4);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 0%, rgba(249, 115, 22, 0.35), transparent 55%), radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.25), transparent 50%);
    opacity: 0.4;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 3);
    position: relative;
    z-index: 1;
}

.footer-column {
    position: relative;
    padding-right: calc(var(--spacing-unit) * 2);
}

.footer-column::after {
    content: "";
    position: absolute;
    top: 0;
    right: calc(var(--spacing-unit));
    height: 100%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.footer-column:last-child::after {
    display: none;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: calc(var(--spacing-unit) * 1.2);
    color: #ffffff;
}

.footer-column h3 {
    font-size: 1.5rem;
}

.footer-column h4 {
    font-size: 1.125rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-unit);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
}

.footer-column ul a:hover,
.footer-column ul a:focus {
    color: #ffffff;
    outline: none;
}

.footer-column ul a:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-unit);
}

.subscribe-form input {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.2s, background-color 0.2s;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-form input:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.subscribe-form button {
    padding: 0.85rem 1.5rem;
    background: linear-gradient(120deg, #f97316, #fb923c);
    color: #0f172a;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.3);
}

.subscribe-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 40px rgba(249, 115, 22, 0.45);
}

.subscribe-form button:active {
    transform: translateY(0);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: calc(var(--spacing-unit) * 2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-unit);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-unit);
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #ffffff;
    outline: none;
}

.footer-links a:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .site-footer {
        padding: calc(var(--spacing-unit) * 3) 0 calc(var(--spacing-unit) * 2);
    }
    
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: calc(var(--spacing-unit) * 2.5);
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.65rem;
    }
    
    .quick-links-grid a {
        padding: 0.65rem 0.9rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: calc(var(--spacing-unit) * 1.5) 0 calc(var(--spacing-unit) * 1.5);
        margin-top: calc(var(--spacing-unit) * 2);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 1.5);
        margin-bottom: calc(var(--spacing-unit) * 1);
    }
    
    .footer-newsletter {
        display: none;
    }
    
    .footer-column {
        padding-right: 0;
        padding-bottom: calc(var(--spacing-unit) * 1.5);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .footer-column::after {
        display: none;
    }
    
    .footer-column h3 {
        font-size: 1.25rem;
        margin-bottom: calc(var(--spacing-unit) * 0.75);
    }
    
    .footer-column h4 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: calc(var(--spacing-unit) * 0.75);
        letter-spacing: 0.02em;
    }
    
    .footer-links h4 {
        display: none;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-column p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: calc(var(--spacing-unit) * 0.5);
    }
    
    .footer-brand-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }



    .footer-brand h3 {
        font-size: 1.25rem;
    }

    .footer-brand p {
        font-size: 0.875rem;
        max-width: 100%;
    }

    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-top: 0.5rem;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }

    .quick-links-grid a {
        padding: 0.6rem 0.75rem;
        font-size: 0.8125rem;
        min-height: 38px;
        border-radius: 8px;
    }

    .footer-social {
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .footer-social a {
        padding: 0.45rem 0.85rem;
        font-size: 0.8125rem;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.8125rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: calc(var(--spacing-unit) * 0.75);
        padding-top: calc(var(--spacing-unit) * 1);
    }
    
    .footer-bottom p {
        font-size: 0.8125rem;
    }
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
    background: #ffffffd4;
    padding: 8px 20px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-brand h3 {
    margin: 0;
    font-size: 1.5rem;
}

.footer-brand p {
    max-width: 420px;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: inline-flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-1px);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.quick-links-grid li {
    margin-bottom: 0;
}

.quick-links-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
    min-height: 44px;
}

.quick-links-grid a:hover,
.quick-links-grid a:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus {
    color: #ffffff;
    outline: none;
}

.footer-newsletter {
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.btn-glow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0f172a;
    display: inline-block;
    position: relative;
}

.btn-glow-dot::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.5);
    animation: btnPulse 2s ease infinite;
}

@keyframes btnPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
    z-index: 1000;
    padding: 1.25rem 0;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-consent-banner p {
    margin: 0;
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
    min-width: 250px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-consent-banner .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.cookie-consent-banner .btn-primary {
    background: #f97316;
    color: #ffffff;
}

.cookie-consent-banner .btn-primary:hover {
    background: #ea580c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.cookie-consent-banner .btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.cookie-consent-banner .btn-secondary:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1rem 0;
    }
    
    .cookie-consent-banner .container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .cookie-consent-banner p {
        font-size: 0.85rem;
        text-align: center;
        min-width: auto;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-consent-banner .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .cookie-consent-banner .container {
        padding: 0 1.5rem;
    }
    
    .cookie-consent-banner p {
        font-size: 0.875rem;
    }
}

