/* ===================================
   Modern Footer Styles
   Future-Proof Responsive Design
   =================================== */

/* ===================================
   WhatsApp Channel Banner
   =================================== */
.whatsapp-channel-banner {
    background: #ffffff;
    padding: 0 0 40px 0;
    margin: 0;
}

.whatsapp-channel-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.whatsapp-banner-card {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.25);
    min-height: 160px;
}

.whatsapp-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.15;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E") repeat-x;
    animation: wave 15s linear infinite;
}

.wave1 {
    animation-duration: 20s;
    opacity: 0.3;
}

.wave2 {
    animation-duration: 15s;
    opacity: 0.2;
    animation-delay: -5s;
}

.wave3 {
    animation-duration: 25s;
    opacity: 0.15;
    animation-delay: -2s;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.whatsapp-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px 40px;
}

.whatsapp-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.whatsapp-icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.whatsapp-text {
    flex: 1;
    color: #ffffff;
}

.whatsapp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
}

.whatsapp-badge svg {
    width: 16px;
    height: 16px;
}

.whatsapp-text h3 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 8px 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-text p {
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
    opacity: 0.95;
}

.whatsapp-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #25D366;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.whatsapp-join-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

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

.whatsapp-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.whatsapp-join-btn .btn-text,
.whatsapp-join-btn svg {
    position: relative;
    z-index: 1;
}

.whatsapp-join-btn svg {
    transition: transform 0.3s ease;
}

.whatsapp-join-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-banner-card {
        border-radius: 20px;
        min-height: auto;
    }

    .whatsapp-content {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }

    .whatsapp-icon-pulse {
        width: 60px;
        height: 60px;
    }

    .whatsapp-icon {
        width: 60px;
        height: 60px;
    }

    .whatsapp-icon svg {
        width: 32px;
        height: 32px;
    }

    .whatsapp-text h3 {
        font-size: 22px;
    }

    .whatsapp-text p {
        font-size: 14px;
    }

    .whatsapp-join-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-channel-banner .container {
        padding: 0 16px;
    }

    .whatsapp-banner-card {
        border-radius: 16px;
    }

    .whatsapp-content {
        padding: 24px 20px;
        gap: 20px;
    }

    .whatsapp-text h3 {
        font-size: 20px;
    }

    .whatsapp-text p {
        font-size: 13px;
    }

    .whatsapp-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .whatsapp-join-btn {
        font-size: 15px;
        padding: 12px 24px;
    }
}

/* ===================================
   Reviews Call-to-Action Section
   =================================== */
.reviews-cta-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 0;
    margin: 0;
    position: relative;
}

.reviews-cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}

.reviews-cta-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(124, 204, 36, 0.2);
}

.reviews-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7ccc24, #93c33b, #7ccc24);
}

.reviews-stars-bg {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.1;
    font-size: 40px;
    display: flex;
    gap: 8px;
    pointer-events: none;
}

.reviews-stars-bg .star {
    animation: twinkle 3s ease-in-out infinite;
}

.reviews-stars-bg .star:nth-child(1) { animation-delay: 0s; }
.reviews-stars-bg .star:nth-child(2) { animation-delay: 0.2s; }
.reviews-stars-bg .star:nth-child(3) { animation-delay: 0.4s; }
.reviews-stars-bg .star:nth-child(4) { animation-delay: 0.6s; }
.reviews-stars-bg .star:nth-child(5) { animation-delay: 0.8s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.2); }
}

.reviews-content-wrapper {
    position: relative;
    z-index: 1;
}

.reviews-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.reviews-icon-badge {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #7ccc24, #93c33b);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(124, 204, 36, 0.3);
}

.reviews-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.reviews-title p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.reviews-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.review-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.review-button .btn-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.review-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.review-button:hover::before {
    left: 100%;
}

.review-button.google {
    background: #4285F4;
    color: #ffffff;
    border-color: #4285F4;
}

.review-button.google:hover {
    background: #357ae8;
    border-color: #357ae8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
}

.review-button.google:hover .btn-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.review-button.hellopeter {
    background: rgba(0, 166, 81, 0.1);
    color: #00d66e;
    border-color: #00A651;
}

.review-button.hellopeter:hover {
    background: #00A651;
    color: #ffffff;
    border-color: #00A651;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 166, 81, 0.4);
}

.review-button.hellopeter:hover .btn-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-cta-section .container {
        padding: 0 16px 40px 16px;
    }

    .reviews-cta-card {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .reviews-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        margin-bottom: 24px;
    }

    .reviews-icon-badge {
        width: 48px;
        height: 48px;
    }

    .reviews-icon-badge svg {
        width: 24px;
        height: 24px;
    }

    .reviews-title h3 {
        font-size: 20px;
    }

    .reviews-title p {
        font-size: 14px;
    }

    .reviews-buttons {
        flex-direction: column;
        width: 100%;
    }

    .review-button {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .reviews-stars-bg {
        font-size: 24px;
        top: 10px;
        right: 10px;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .reviews-cta-card {
        padding: 24px 20px;
    }

    .reviews-title h3 {
        font-size: 18px;
    }

    .reviews-title p {
        font-size: 13px;
    }

    .review-button {
        font-size: 14px;
        padding: 12px 18px;
    }

    .reviews-stars-bg {
        display: none;
    }
}

/* ===================================
   Core Footer Structure
   =================================== */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7ccc24, transparent);
}

.footer-wrapper {
    position: relative;
    z-index: 1;
}

/* Container */
.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Footer Top Section
   =================================== */
.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.footer-logo-wrapper {
    max-width: 500px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1;
}

.logo-edu {
    color: #7ccc24;
}

.logo-syms {
    color: #ffffff;
}

.logo-dot {
    color: #7ccc24;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.2); 
    }
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-mission {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===================================
   Newsletter Section
   =================================== */
.footer-newsletter h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #7ccc24;
    font-weight: 700;
}

.footer-newsletter p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

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

.newsletter-form input:focus {
    border-color: #7ccc24;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(124, 204, 36, 0.1);
}

.newsletter-form button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #7ccc24, #70bc30);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 204, 36, 0.3);
}

.newsletter-form button:active {
    transform: translateY(0);
}

/* ===================================
   Main Footer Grid
   =================================== */
.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column {
    min-width: 0;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.heading-icon {
    font-size: 20px;
}

.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: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7ccc24;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #7ccc24;
    transform: translateX(4px);
}

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

/* ===================================
   Contact Info
   =================================== */
.contact-info {
    margin-bottom: 24px;
}

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

.contact-icon {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #7ccc24;
}

/* ===================================
   Social Media Links
   =================================== */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.social-link:hover {
    background: #7ccc24;
    border-color: #7ccc24;
    transform: translateY(-4px);
    color: #ffffff;
}

/* Social Link Platform Colors */
.social-link.tiktok:hover {
    background: #000000;
    border-color: #000000;
}

.social-link.disqus:hover {
    background: #2E9FFF;
    border-color: #2E9FFF;
}

.social-link.whatsapp-channel:hover {
    background: #25D366;
    border-color: #25D366;
}

.social-link.hellopeter:hover {
    background: #00A651;
    border-color: #00A651;
}

.social-link.google:hover {
    background: #4285F4;
    border-color: #4285F4;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   Legal Links Mobile
   =================================== */
.footer-legal-mobile {
    display: none;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.legal-links li {
    margin: 0;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #7ccc24;
}

/* ===================================
   Footer Bottom
   =================================== */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 14px;
    background: rgba(124, 204, 36, 0.1);
    border: 1px solid rgba(124, 204, 36, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #7ccc24;
    white-space: nowrap;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .footer-brand-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-logo-wrapper {
        max-width: 100%;
    }
    
    .newsletter-form {
        margin: 0 auto;
    }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    .site-footer {
        margin-top: 60px;
    }
    
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-legal-mobile {
        display: block;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .contact-info {
        text-align: left;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .site-footer {
        margin-top: 40px;
    }
    
    .footer-logo {
        font-size: 24px;
    }
    
    .footer-tagline {
        font-size: 14px;
    }
    
    .footer-mission {
        font-size: 13px;
    }
    
    .footer-heading {
        font-size: 14px;
    }
    
    .footer-links a,
    .contact-item {
        font-size: 13px;
    }
    
    .badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .footer-brand-section {
        gap: 30px;
    }
    
    .footer-newsletter h4 {
        font-size: 18px;
    }
    
    .footer-newsletter p {
        font-size: 13px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        font-size: 13px;
        padding: 10px 14px;
    }
    
    .legal-links {
        gap: 12px;
    }
    
    .copyright p {
        font-size: 12px;
    }
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7ccc24, #93c33b);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(124, 204, 36, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #93c33b, #7ccc24);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(124, 204, 36, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .site-footer {
        background: #ffffff;
        color: #000000;
    }
    
    .footer-newsletter,
    .footer-social,
    .footer-badges,
    .back-to-top {
        display: none;
    }
    
    .footer-links a {
        color: #000000;
    }
}

/* ===================================
   Dark Mode Support (Optional)
   =================================== */
@media (prefers-color-scheme: dark) {
    .site-footer {
        background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    }
}

/* ===================================
   Accessibility Enhancements
   =================================== */
.footer-links a:focus,
.social-link:focus,
.newsletter-form input:focus,
.newsletter-form button:focus {
    outline: 2px solid #7ccc24;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .logo-dot {
        animation: none;
    }
}

/* ===================================
   High Contrast Mode
   =================================== */
@media (prefers-contrast: high) {
    .site-footer {
        background: #000000;
        color: #ffffff;
    }
    
    .footer-links a,
    .contact-item a {
        color: #ffffff;
    }
    
    .footer-links a:hover,
    .contact-item a:hover {
        color: #7ccc24;
        text-decoration: underline;
    }
}
