/* ============================================
   FOOTER.CSS - Clean White Footer
   Uses theme-system.css variables
   ============================================ */

/* ============================================
   Footer Main Container - Clean White
   ============================================ */
.footer-modern {
    position: relative;
    background: #ffffff;
    color: #334050;
    padding: 4rem 0 2rem;
    margin-top: 0;
    overflow: visible;
    isolation: isolate;
    z-index: 5;
    flex-shrink: 0;
    border-top: 3px solid var(--theme-primary);
}

/* Logo sits on the border - its white background masks the line behind it */
.footer-border-logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    line-height: 0;
}

.footer-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Subtle pattern background */
.footer-pattern {
    display: none;
}

.footer-gradient {
    display: none;
}

.footer-content {
    position: relative;
    z-index: 2;
}

/* ============================================
   Brand Section - Smooth Gradient Logo
   ============================================ */
.footer-brand {
    animation: fadeInUp 0.8s ease-out;
}

.brand-logo-footer {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: var(--theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 25px rgba(110, 180, 255, 0.35);
    transition: all 0.3s ease;
}

.brand-logo-footer:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 12px 35px rgba(110, 180, 255, 0.45);
}

.brand-name-footer {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.brand-tagline {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ============================================
   Social Links - Brand Colors on Hover
   ============================================ */
.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f7fafc !important;
    border: 2px solid #e2e8f0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096 !important;
    font-size: 1.15rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Override any theme styles for social links */
[data-theme] .social-link,
[data-landing-theme] .social-link {
    background: #f7fafc !important;
    border-color: #e2e8f0 !important;
    color: #718096 !important;
}

/* Social media brand colors - consistent across all themes */
/* Facebook - #1877F2 */
.social-link:nth-child(1):hover {
    background: #1877F2 !important;
    border-color: #1877F2 !important;
    color: white !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4) !important;
}

/* Twitter/X - #1DA1F2 */
.social-link:nth-child(2):hover {
    background: #1DA1F2 !important;
    border-color: #1DA1F2 !important;
    color: white !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4) !important;
}

/* LinkedIn - #0A66C2 */
.social-link:nth-child(3):hover {
    background: #0A66C2 !important;
    border-color: #0A66C2 !important;
    color: white !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.4) !important;
}

/* Instagram - Linear gradient from #F58529 to #DD2A7B to #8134AF to #515BD4 */
.social-link:nth-child(4):hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4) !important;
    border-color: #DD2A7B !important;
    color: white !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(221, 42, 123, 0.4) !important;
}

/* Ensure theme overrides don't affect hover states */
[data-theme] .social-link:nth-child(1):hover,
[data-landing-theme] .social-link:nth-child(1):hover {
    background: #1877F2 !important;
    border-color: #1877F2 !important;
    color: white !important;
}

[data-theme] .social-link:nth-child(2):hover,
[data-landing-theme] .social-link:nth-child(2):hover {
    background: #1DA1F2 !important;
    border-color: #1DA1F2 !important;
    color: white !important;
}

[data-theme] .social-link:nth-child(3):hover,
[data-landing-theme] .social-link:nth-child(3):hover {
    background: #0A66C2 !important;
    border-color: #0A66C2 !important;
    color: white !important;
}

[data-theme] .social-link:nth-child(4):hover,
[data-landing-theme] .social-link:nth-child(4):hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4) !important;
    border-color: #DD2A7B !important;
    color: white !important;
}

/* ============================================
   Footer Columns
   ============================================ */
.footer-column {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.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: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

/* Each column title gets a different solid color underline */
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    border-radius: 2px;
}

.footer-column:nth-child(1) .footer-title::after { background: var(--theme-primary); }
.footer-column:nth-child(2) .footer-title::after { background: var(--theme-primary); }
.footer-column:nth-child(3) .footer-title::after { background: var(--theme-primary-light); }
.footer-column:nth-child(4) .footer-title::after { background: var(--theme-primary); }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

/* Links - Different solid color on each column hover */
.footer-links a {
    color: #5a6776;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    bottom: -2px;
    border-radius: 1px;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    transform: translateX(5px);
}

/* Each link column gets different hover color */
.footer-column:nth-child(2) .footer-links a:hover { color: #7b5da0; }
.footer-column:nth-child(2) .footer-links a::before { background: var(--theme-primary); }
.footer-column:nth-child(2) .footer-links a:hover::before { width: 100%; }

.footer-column:nth-child(3) .footer-links a:hover { color: #3d8b3d; }
.footer-column:nth-child(3) .footer-links a::before { background: var(--theme-primary-light); }
.footer-column:nth-child(3) .footer-links a:hover::before { width: 100%; }

.footer-column:nth-child(4) .footer-links a:hover { color: var(--theme-primary); }
.footer-column:nth-child(4) .footer-links a::before { background: var(--theme-primary); }
.footer-column:nth-child(4) .footer-links a:hover::before { width: 100%; }

/* Additional column for 5-column layout */
.footer-column:nth-child(5) .footer-title::after { background: var(--theme-accent); }
.footer-column:nth-child(5) .footer-links a:hover { color: #d63031; }
.footer-column:nth-child(5) .footer-links a::before { background: var(--theme-accent); }
.footer-column:nth-child(5) .footer-links a:hover::before { width: 100%; }

/* ============================================
   Footer Column Spacing - Better Gap Between Columns
   ============================================ */
.footer-content .row.g-4 {
    --bs-gutter-x: 2rem;
}

@media (min-width: 992px) {
    .footer-content .row.g-4 {
        --bs-gutter-x: 2.5rem;
    }
    
    /* Add padding to link columns for better visual separation */
    .footer-column {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (min-width: 1200px) {
    .footer-content .row.g-4 {
        --bs-gutter-x: 3rem;
    }
}

/* ============================================
   Newsletter Section
   ============================================ */
.newsletter-text {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.newsletter-form {
    margin-top: 1rem;
}

.input-group-footer {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.input-group-footer:focus-within {
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 4px rgba(110, 180, 255, 0.15);
}

.form-control-footer {
    flex: 1;
    background: transparent;
    border: none;
    color: #2d3748;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    outline: none;
}

.form-control-footer::placeholder {
    color: #a0aec0;
}

.btn-footer-subscribe {
    background: var(--theme-primary);
    border: none;
    color: white;
    padding: 0 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-footer-subscribe:hover {
    background: #4a9eff;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(110, 180, 255, 0.4);
}

.btn-footer-subscribe i {
    font-size: 1rem;
}

/* ============================================
   Footer Bottom - Clean Divider
   ============================================ */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    position: relative;
}

/* Smooth gradient line above footer bottom */
.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--theme-primary);
    border-radius: 2px;
}

.copyright-text {
    color: #4b5563;
    font-size: 0.875rem;
    margin: 0;
}

.copyright-text strong {
    color: #1e293b;
    font-weight: 700;
}

/* Legal Links - Each gets different solid color hover */
.footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-legal-links li {
    display: inline-block;
}

.footer-legal-links a {
    color: #5a6776;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
    border-radius: 1px;
}

.footer-legal-links a:hover {
    color: #2d3748;
}

.footer-legal-links a:hover::after {
    width: 100%;
}

/* Each legal link different solid color */
.footer-legal-links li:nth-child(1) a::after { background: var(--theme-primary); }
.footer-legal-links li:nth-child(1) a:hover { color: #7b5da0; }

.footer-legal-links li:nth-child(2) a::after { background: var(--theme-primary-light); }
.footer-legal-links li:nth-child(2) a:hover { color: #3d8b3d; }

.footer-legal-links li:nth-child(3) a::after { background: var(--theme-primary); }
.footer-legal-links li:nth-child(3) a:hover { color: var(--theme-primary); }

/* ============================================
   Scroll to Top Button - Sky Blue
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--theme-primary);
    color: white;
    border: none;
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(110, 180, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background: #4a9eff;
    box-shadow: 0 10px 30px rgba(110, 180, 255, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.scroll-to-top i {
    animation: bounceUp 2s ease-in-out infinite;
}

@keyframes bounceUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Wavy Top (Hide old wavy design)
   ============================================ */
.footer-wavy-top {
    display: none;
}

/* ============================================
   Responsive Design - Tablets
   ============================================ */
@media (max-width: 991.98px) {
    .footer-modern {
        padding: 3rem 0 1.5rem;
    }

    .footer-column {
        margin-bottom: 2rem;
    }

    .social-links {
        margin-bottom: 1rem;
    }

    .footer-legal-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .copyright-text {
        margin-bottom: 1rem;
    }
}

/* ============================================
   Responsive Design - Mobile
   ============================================ */
@media (max-width: 767.98px) {
    .footer-modern {
        padding: 2.5rem 0 1.5rem;
    }

    .brand-logo-footer {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .brand-name-footer {
        font-size: 1.5rem;
    }

    .brand-tagline {
        font-size: 0.9rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.25rem;
    }

    .footer-legal-links {
        gap: 1rem;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* ============================================
   Small Mobile Devices
   ============================================ */
@media (max-width: 575.98px) {
.footer-modern {
    padding: 2rem 0 1rem;
}

    .footer-logo-img {
        width: 36px;
        height: 36px;
    }

    

    

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 0.65rem;
        align-items: center;
    }

    .input-group-footer {
        flex-direction: column;
    }

    .form-control-footer {
        padding: 0.65rem 1rem;
    }

    .btn-footer-subscribe {
        padding: 0.65rem;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .footer-modern,
    .scroll-to-top {
        display: none;
    }
}

/* ============================================
   Accessibility
   ============================================ */
.social-link:focus,
.footer-links a:focus,
.footer-legal-links a:focus,
.scroll-to-top:focus {
    outline: 3px solid rgba(110, 180, 255, 0.5);
    outline-offset: 3px;
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .brand-logo-footer,
    .scroll-to-top i,
    .footer-column {
        animation: none;
    }

    .social-link,
    .footer-links a,
    .scroll-to-top {
        transition: none;
    }
}

/* ============================================
 LANDING THEME OVERRIDES (Index only)
 ============================================ */

/* Clean Theme - Professional blue/teal */
body[data-landing-theme="clean"] .footer-modern {
  background: #f7f9fc;
  color: #0f172a;
  border-top-color: var(--theme-primary);
}

body[data-landing-theme="clean"] .footer-pattern {
  background-image:
 radial-gradient(circle at 18% 28%, rgba(37, 99, 235, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(14, 165, 233, 0.06) 0%, transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
}

body[data-landing-theme="clean"] .brand-logo-footer {
  background: var(--theme-primary);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.25);
}

body[data-landing-theme="clean"] .brand-name-footer {
  color: var(--theme-primary);
}

body[data-landing-theme="clean"] .footer-title {
  color: var(--theme-primary);
}

body[data-landing-theme="clean"] .footer-title::after {
  background: var(--theme-primary);
}

body[data-landing-theme="clean"] .footer-links a:hover {
  color: var(--theme-primary);
}

body[data-landing-theme="clean"] .footer-links a::before {
  background: var(--theme-primary);
}

body[data-landing-theme="clean"] .social-link:hover {
  background: var(--theme-primary);
  border-color: var(--theme-primary);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

body[data-landing-theme="clean"] .input-group-footer:focus-within {
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

body[data-landing-theme="clean"] .btn-footer-subscribe {
  background: var(--theme-primary);
}

body[data-landing-theme="clean"] .footer-bottom::before {
  background: var(--theme-primary);
}

body[data-landing-theme="clean"] .footer-legal-links a:hover {
  color: var(--theme-primary);
}

body[data-landing-theme="clean"] .footer-legal-links a::after {
  background: var(--theme-primary);
}

body[data-landing-theme="clean"] .scroll-to-top {
  background: var(--theme-primary);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.35);
}

/* Neo3D Theme - Purple/cyan/pink */
body[data-landing-theme="neo3d"] .footer-modern {
  background: #060616;
  color: rgba(242, 244, 255, 0.85);
  border-top-color: #8b5cf6;
}

body[data-landing-theme="neo3d"] .footer-pattern {
  background-image:
    radial-gradient(circle at 18% 28%, rgba(139, 92, 246, 0.18) 0%, transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(34, 211, 238, 0.15) 0%, transparent 42%),
  radial-gradient(circle at 50% 50%, rgba(251, 113, 133, 0.12) 0%, transparent 50%);
}

body[data-landing-theme="neo3d"] .brand-logo-footer {
  background: linear-gradient(135deg, #8b5cf6 0%, #22d3ee 50%, #fb7185 100%);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.40);
}

body[data-landing-theme="neo3d"] .brand-name-footer {
  color: #22d3ee;
  text-shadow: 0 0 20px rgba(34, 211, 238, 0.40);
}

body[data-landing-theme="neo3d"] .brand-tagline,
body[data-landing-theme="neo3d"] .newsletter-text,
body[data-landing-theme="neo3d"] .copyright-text {
  color: rgba(242, 244, 255, 0.78);
}

body[data-landing-theme="neo3d"] .copyright-text strong {
  color: #22d3ee;
}

body[data-landing-theme="neo3d"] .footer-title {
  color: #22d3ee;
}

body[data-landing-theme="neo3d"] .footer-title::after {
  background: linear-gradient(90deg, #8b5cf6, #22d3ee);
}

body[data-landing-theme="neo3d"] .footer-links a {
  color: rgba(242, 244, 255, 0.70);
}

body[data-landing-theme="neo3d"] .footer-links a:hover {
  color: #22d3ee;
}

body[data-landing-theme="neo3d"] .footer-links a::before {
  background: linear-gradient(90deg, #8b5cf6, #22d3ee);
}

body[data-landing-theme="neo3d"] .social-link {
  background: rgba(139, 92, 246, 0.12);
  border: 2px solid rgba(34, 211, 238, 0.30);
  color: #22d3ee;
}

body[data-landing-theme="neo3d"] .social-link:hover {
  background: linear-gradient(135deg, #8b5cf6, #22d3ee);
  border-color: #22d3ee;
  color: white;
  box-shadow: 0 8px 25px rgba(34, 211, 238, 0.45);
}

body[data-landing-theme="neo3d"] .input-group-footer {
  background: rgba(139, 92, 246, 0.08);
  border: 2px solid rgba(34, 211, 238, 0.30);
}

body[data-landing-theme="neo3d"] .input-group-footer:focus-within {
  border-color: #22d3ee;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.20);
}

body[data-landing-theme="neo3d"] .form-control-footer {
  color: #f2f4ff;
}

body[data-landing-theme="neo3d"] .form-control-footer::placeholder {
  color: rgba(242, 244, 255, 0.50);
}

body[data-landing-theme="neo3d"] .btn-footer-subscribe {
  background: linear-gradient(135deg, #8b5cf6, #22d3ee);
}


/* Cherry Sakura - Dark dramatic footer with vibrant pink accents */
/* ============================================
   SURVEYOR DASHBOARD THEME OVERRIDES
   ============================================ */

/* Arcade Theme - Neon cyan/magenta */
/* Clean Theme - Professional blue/teal */
[data-theme="clean"] .footer-modern {
  background: #f7f9fc;
  color: #0f172a;
  border-top-color: var(--theme-primary);
}

[data-theme="clean"] .footer-pattern {
  background-image:
 radial-gradient(circle at 18% 28%, rgba(37, 99, 235, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(14, 165, 233, 0.06) 0%, transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
}

[data-theme="clean"] .brand-logo-footer {
  background: var(--theme-primary);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.25);
}

[data-theme="clean"] .brand-name-footer {
  color: var(--theme-primary);
}

[data-theme="clean"] .footer-title {
  color: var(--theme-primary);
}

[data-theme="clean"] .footer-title::after {
  background: var(--theme-primary);
}

[data-theme="clean"] .footer-links a:hover {
  color: var(--theme-primary);
}

[data-theme="clean"] .footer-links a::before {
  background: var(--theme-primary);
}

[data-theme="clean"] .social-link:hover {
  background: var(--theme-primary);
  border-color: var(--theme-primary);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

[data-theme="clean"] .input-group-footer:focus-within {
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

[data-theme="clean"] .btn-footer-subscribe {
  background: var(--theme-primary);
}

[data-theme="clean"] .footer-bottom::before {
  background: var(--theme-primary);
}

[data-theme="clean"] .footer-legal-links a:hover {
  color: var(--theme-primary);
}

[data-theme="clean"] .footer-legal-links a::after {
  background: var(--theme-primary);
}

[data-theme="clean"] .scroll-to-top {
  background: var(--theme-primary);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.35);
}

/* Neo3D Theme - Purple/cyan/pink */
[data-theme="3d"] .footer-modern {
  background: #060616;
  color: rgba(242, 244, 255, 0.85);
  border-top-color: #8b5cf6;
}

[data-theme="3d"] .footer-pattern {
  background-image:
    radial-gradient(circle at 18% 28%, rgba(139, 92, 246, 0.18) 0%, transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(34, 211, 238, 0.15) 0%, transparent 42%),
  radial-gradient(circle at 50% 50%, rgba(251, 113, 133, 0.12) 0%, transparent 50%);
}

[data-theme="3d"] .brand-logo-footer {
  background: linear-gradient(135deg, #8b5cf6 0%, #22d3ee 50%, #fb7185 100%);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.40);
}

[data-theme="3d"] .brand-name-footer {
  color: #22d3ee;
  text-shadow: 0 0 20px rgba(34, 211, 238, 0.40);
}

[data-theme="3d"] .brand-tagline,
[data-theme="3d"] .newsletter-text,
[data-theme="3d"] .copyright-text {
  color: rgba(242, 244, 255, 0.78);
}

[data-theme="3d"] .copyright-text strong {
  color: #22d3ee;
}

[data-theme="3d"] .footer-title {
  color: #22d3ee;
}

[data-theme="3d"] .footer-title::after {
  background: linear-gradient(90deg, #8b5cf6, #22d3ee);
}

[data-theme="3d"] .footer-links a {
  color: rgba(242, 244, 255, 0.70);
}

[data-theme="3d"] .footer-links a:hover {
  color: #22d3ee;
}

[data-theme="3d"] .footer-links a::before {
  background: linear-gradient(90deg, #8b5cf6, #22d3ee);
}

[data-theme="3d"] .social-link {
  background: rgba(139, 92, 246, 0.12);
  border: 2px solid rgba(34, 211, 238, 0.30);
  color: #22d3ee;
}

[data-theme="3d"] .social-link:hover {
  background: linear-gradient(135deg, #8b5cf6, #22d3ee);
  border-color: #22d3ee;
  color: white;
  box-shadow: 0 8px 25px rgba(34, 211, 238, 0.45);
}

[data-theme="3d"] .input-group-footer {
  background: rgba(139, 92, 246, 0.08);
  border: 2px solid rgba(34, 211, 238, 0.30);
}

[data-theme="3d"] .input-group-footer:focus-within {
  border-color: #22d3ee;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.20);
}

[data-theme="3d"] .form-control-footer {
  color: #f2f4ff;
}

[data-theme="3d"] .form-control-footer::placeholder {
  color: rgba(242, 244, 255, 0.50);
}

[data-theme="3d"] .btn-footer-subscribe {
  background: linear-gradient(135deg, #8b5cf6, #22d3ee);
}

[data-theme="3d"] .btn-footer-subscribe:hover {
  background: linear-gradient(135deg, #22d3ee, #fb7185);
  box-shadow: 0 5px 20px rgba(34, 211, 238, 0.50);
}

[data-theme="3d"] .footer-bottom {
  border-top: 1px solid rgba(34, 211, 238, 0.20);
}

[data-theme="3d"] .footer-bottom::before {
  background: linear-gradient(90deg, #8b5cf6 0%, #22d3ee 50%, #fb7185 100%);
}

[data-theme="3d"] .footer-legal-links a {
  color: rgba(242, 244, 255, 0.65);
}

[data-theme="3d"] .footer-legal-links a:hover {
  color: #22d3ee;
}

[data-theme="3d"] .footer-legal-links a::after {
  background: linear-gradient(90deg, #8b5cf6, #22d3ee);
}

[data-theme="3d"] .scroll-to-top {
  background: linear-gradient(135deg, #8b5cf6, #22d3ee);
  box-shadow: 0 6px 25px rgba(139, 92, 246, 0.45);
}

/* Pastel Theme - Soft colors */
/* New Year Theme - Midnight/fireworks */
/* Cherry Sakura - Dark dramatic footer with vibrant pink accents */
/* Cyberpunk Theme - Neon noir */
/* Forest Theme - Fresh green */

