.footer { background: var(--gray-900, #0f172a); color: rgba(255,255,255,0.7); }
[data-theme="dark"] .footer { background: #020b1a; }
.footer-top { padding: 5rem 0 3rem; }
.footer .container {
max-width: 1200px !important;
margin: 0 auto !important;
padding-left: 1.5rem !important;
padding-right: 1.5rem !important;
}
.footer-grid {
display: grid;
grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
gap: 2.5rem;
}
.footer-brand {}
.footer-logo { display: inline-block; margin-bottom: 1.1rem; }
.footer-tagline {
font-size: 0.875rem; line-height: 1.7;
color: rgba(255,255,255,0.5);
margin-bottom: 1.5rem; max-width: 280px;
}
.footer-socials { display: flex; gap: 0.6rem; }
.footer-social {
width: 36px; height: 36px;
border-radius: var(--radius-sm, 0.375rem);
background: rgba(255,255,255,0.07);
border: 1px solid rgba(255,255,255,0.1);
display: flex; align-items: center; justify-content: center;
color: rgba(255,255,255,0.6);
transition: all var(--transition, .3s cubic-bezier(.4,0,.2,1));
}
.footer-social:hover {
background: var(--primary, #06259C);
border-color: var(--primary, #06259C);
color: white; transform: translateY(-2px);
}
.footer-col-title {
font-family: var(--font-display, 'Google Sans', sans-serif);
font-size: 0.85rem; font-weight: 700; color: white;
margin-bottom: 1.1rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; list-style: none; margin: 0; padding: 0; }
.footer-links li { list-style: none; }
.footer-links a {
font-size: 0.85rem; color: rgba(255,255,255,0.5);
transition: all 0.2s; text-decoration: none;
}
.footer-links a:hover { color: var(--accent, #FF914C); padding-left: 4px; }
.footer-newsletter-desc {
font-size: 0.82rem; color: rgba(255,255,255,0.5);
line-height: 1.6; margin-bottom: 1rem;
}
.footer-newsletter-form { display: flex; gap: 0.5rem; margin-bottom: 0.6rem; }
.footer-email-input {
flex: 1; padding: 0.65rem 1rem;
border-radius: var(--radius-md, 0.75rem);
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.15);
color: white; font-size: 0.85rem; outline: none;
font-family: var(--font-sans, 'Google Sans', sans-serif);
transition: border-color var(--transition, .3s cubic-bezier(.4,0,.2,1));
}
.footer-email-input::placeholder { color: rgba(255,255,255,0.35); }
.footer-email-input:focus { border-color: var(--accent, #FF914C); }
.footer-email-btn {
width: 42px; height: 42px;
border-radius: var(--radius-md, 0.75rem); flex-shrink: 0;
background: linear-gradient(135deg, var(--primary, #06259C), var(--accent, #FF914C));
color: white; display: flex; align-items: center; justify-content: center;
transition: all var(--transition, .3s cubic-bezier(.4,0,.2,1));
}
.footer-email-btn:hover { transform: scale(1.08); box-shadow: 0 4px 16px rgba(255,145,76,0.4); }
.footer-newsletter-note {
font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-bottom: 1.25rem;
}
.footer-certifications { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-cert {
display: flex; align-items: center; gap: 0.35rem;
font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.4);
padding: 0.25rem 0.65rem;
border-radius: var(--radius-full, 9999px);
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom {
background: rgba(0,0,0,0.3);
border-top: 1px solid rgba(255,255,255,0.07);
padding: 1.25rem 0;
}
.footer-bottom-inner {
display: flex; align-items: center;
justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copyright { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
font-size: 0.78rem; color: rgba(255,255,255,0.35);
transition: color 0.2s; text-decoration: none;
}
.footer-bottom-links a:hover { color: var(--accent, #FF914C); }
.footer-made-with {
display: flex; align-items: center; gap: 0.5rem;
font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-status-dot {
width: 7px; height: 7px; border-radius: 50%;
background: var(--success, #22c55e);
box-shadow: 0 0 8px rgba(34,197,94,0.6);
animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
0%   { box-shadow: 0 0 0 0   rgba(255,145,76,0.6); }
70%  { box-shadow: 0 0 0 8px rgba(255,145,76,0);   }
@media (max-width: 1000px) {
.footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-brand { grid-column: 1 / -1; }
.footer-newsletter { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
.footer-grid { grid-template-columns: 1fr; }
.footer-bottom-inner { flex-direction: column; gap: .75rem; text-align: center; }
}
