/* ============================================
   NTL ROYAL FOOTER - FINAL VERSION
   Royal Colors Theme
   Version: 4.0 Final
   Colors: Royal Blue #1A7BD5 | Royal Purple #6C3A8A | Burgundy #A52A2A
   ============================================ */

/* === CSS Variables === */
:root {
    /* Royal Colors */
    --royal-blue: #1A7BD5;
    --royal-purple: #6C3A8A;
    --royal-burgundy: #A52A2A;

    /* Derived Colors */
    --royal-blue-light: #2196F3;
    --royal-purple-light: #8E44AD;
    --royal-burgundy-light: #C0392B;

    --royal-blue-dark: #0D1B3E;
    --royal-purple-dark: #1A0F2E;
    --royal-burgundy-dark: #1F0A0A;

    /* Background */
    --tech-footer-bg-primary: #0A0E1A;
    --tech-footer-bg-secondary: #131829;
    --tech-footer-bg-tertiary: #1C2541;

    /* Text */
    --tech-footer-text-primary: #F0F4FF;
    --tech-footer-text-secondary: #C8D6E5;
    --tech-footer-text-muted: #8395B7;

    /* Borders & Effects */
    --tech-footer-border: rgba(131, 149, 183, 0.12);
    --tech-footer-glow: 0 0 30px rgba(26, 123, 213, 0.2);
    --tech-footer-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --tech-footer-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --tech-footer-radius: 14px;
    --tech-footer-radius-sm: 8px;
}

/* ============================================
   BASE
   ============================================ */
.tech-footer {
    position: relative;
    font-family: 'yekanBakhBold', 'Segoe UI', system-ui, sans-serif;
    direction: rtl;
    margin-top: 80px;
    isolation: isolate;
    line-height: 1.6;
}

/* ============================================
   WAVE TOP
   ============================================ */
.tech-footer-wave-wrap {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-bottom: -2px;
    z-index: 1;
    filter: drop-shadow(0 -5px 15px rgba(0, 0, 0, 0.3));
}

.tech-footer-wave {
    width: 100%;
    height: 120px;
    display: block;
}

/* ============================================
   MAIN SECTION
   ============================================ */
.tech-footer-main {
    background: linear-gradient(175deg, var(--tech-footer-bg-secondary) 0%, var(--tech-footer-bg-primary) 40%);
    padding: 60px 0 40px;
    position: relative;
    z-index: 0;
}

.tech-footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(26, 123, 213, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.tech-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
   GLOW LINE
   ============================================ */
.tech-footer-glow-line {
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--royal-blue) 20%,
        var(--royal-purple) 50%,
        var(--royal-burgundy) 80%,
        transparent 100%
    );
    margin-bottom: 50px;
    border-radius: 1px;
    box-shadow:
        0 0 15px rgba(26, 123, 213, 0.4),
        0 0 30px rgba(108, 58, 138, 0.3),
        0 0 45px rgba(165, 42, 42, 0.2);
    animation: techFooterGlow 3s ease-in-out infinite;
    position: relative;
    overflow: visible;
}

@keyframes techFooterGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* ============================================
   BRAND ROW
   ============================================ */
.tech-footer-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--tech-footer-border);
    flex-wrap: wrap;
    gap: 30px;
}

/* ============================================
   BRAND LOGO - LARGE
   ============================================ */
.tech-footer-brand-link {
    display: block;
    text-decoration: none;
    transition: var(--tech-footer-transition);
    position: relative;
}

.tech-footer-brand-icon {
    width: 120px;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    display: block;
    padding: 0;
    transition: all var(--tech-footer-spring);
    position: relative;
    cursor: pointer;
    animation: logoFloat 4s ease-in-out infinite;
}
.tech-footer-brand-icon::before,
.tech-footer-brand-icon::after {
    display: none;
}
/* Inner Glow Effect */
.tech-footer-brand-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg,
        var(--royal-blue) 0%,
        var(--royal-purple) 50%,
        var(--royal-burgundy) 100%
    );
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
    filter: blur(8px);
}

/* Outer Glow Ring */
.tech-footer-brand-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    background: transparent;
    border: 1px solid rgba(26, 123, 213, 0.15);
    z-index: -2;
    transition: all 0.4s ease;
}

/* Logo Image */
.tech-footer-brand-logo {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.5s var(--tech-footer-spring);
}

/* Floating Animation */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
/* Hover: Icon Container */
.tech-footer-brand-link:hover .tech-footer-brand-icon {
    transform: translateY(-6px) scale(1.05);
    animation: none;
    filter: drop-shadow(0 15px 30px rgba(26, 123, 213, 0.4))
            drop-shadow(0 0 50px rgba(108, 58, 138, 0.3));
}
/* Hover: Inner Glow Active */
.tech-footer-brand-link:hover .tech-footer-brand-icon::before {
    opacity: 1;
    animation: logoGlowPulse 2s ease-in-out infinite;
}

/* Hover: Outer Ring Active */
.tech-footer-brand-link:hover .tech-footer-brand-icon::after {
    border-color: rgba(26, 123, 213, 0.4);
    inset: -12px;
    border-width: 2px;
}

/* Hover: Logo Image */
.tech-footer-brand-link:hover .tech-footer-brand-logo {
    filter: brightness(1.2) contrast(1.1);
}
/* Active (Click) State */
.tech-footer-brand-link:active .tech-footer-brand-icon {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}
/* Glow Pulse Animation */
@keyframes logoGlowPulse {
    0%, 100% {
        opacity: 0.7;
        filter: blur(8px);
    }
    50% {
        opacity: 1;
        filter: blur(12px);
    }
}

/* ============================================
   STATS SECTION
   ============================================ */
.tech-footer-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(12, 20, 40, 0.6);
    padding: 24px 36px;
    border-radius: var(--tech-footer-radius);
    border: 1px solid var(--tech-footer-border);
    backdrop-filter: blur(20px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.tech-footer-stat-item {
    text-align: center;
}

.tech-footer-stat-number {
    display: block;
    font-size: 34px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--royal-blue-light) 0%, var(--royal-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.tech-footer-stat-label {
    display: block;
    font-size: 12px;
    color: var(--tech-footer-text-muted);
    margin-top: 6px;
    font-weight: 400;
}

.tech-footer-stat-divider {
    width: 1px;
    height: 45px;
    background: linear-gradient(180deg,
        transparent,
        rgba(26, 123, 213, 0.3),
        rgba(108, 58, 138, 0.3),
        transparent
    );
}

/* ============================================
   MAIN GRID
   ============================================ */
.tech-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--tech-footer-border);
}

/* ============================================
   COLUMNS
   ============================================ */
.tech-footer-col-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--tech-footer-text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-footer-title-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg,
        rgba(26, 123, 213, 0.12) 0%,
        rgba(108, 58, 138, 0.12) 100%
    );
    border: 1px solid rgba(26, 123, 213, 0.15);
    border-radius: var(--tech-footer-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--tech-footer-transition);
}

.tech-footer-col:hover .tech-footer-title-icon {
    background: linear-gradient(135deg,
        rgba(26, 123, 213, 0.2) 0%,
        rgba(108, 58, 138, 0.2) 100%
    );
    border-color: var(--royal-blue);
    box-shadow: 0 0 20px rgba(26, 123, 213, 0.15);
}

.tech-footer-title-icon svg {
    width: 18px;
    height: 18px;
    color: var(--royal-blue-light);
}

/* ============================================
   ABOUT COLUMN
   ============================================ */
.tech-footer-about-text {
    font-size: 13px;
    color: var(--tech-footer-text-secondary);
    line-height: 2;
    margin-bottom: 20px;
}

.tech-footer-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--royal-blue-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--tech-footer-transition);
    padding: 6px 0;
    position: relative;
}

.tech-footer-more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--royal-blue), var(--royal-purple));
    transition: var(--tech-footer-transition);
}

.tech-footer-more-link:hover::after {
    width: 100%;
}

.tech-footer-more-link svg {
    width: 16px;
    height: 16px;
    transition: var(--tech-footer-transition);
}

.tech-footer-more-link:hover svg {
    transform: translateX(-4px);
}

/* ============================================
   LINKS
   ============================================ */
.tech-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tech-footer-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--tech-footer-text-secondary);
    text-decoration: none;
    font-size: 13px;
    padding: 6px 0;
    transition: var(--tech-footer-transition);
    position: relative;
    font-weight: 400;
}

.tech-footer-link-item::before {
    content: '';
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--royal-blue);
    border-radius: 50%;
    opacity: 0;
    transition: var(--tech-footer-transition);
    box-shadow: 0 0 8px rgba(26, 123, 213, 0.6);
}

.tech-footer-link-item:hover {
    color: var(--royal-blue-light);
    padding-right: 14px;
}

.tech-footer-link-item:hover::before {
    opacity: 1;
    right: -8px;
}

.tech-footer-link-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--tech-footer-transition);
    color: var(--royal-blue-light);
    font-size: 11px;
}

.tech-footer-link-item:hover .tech-footer-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.tech-footer-link-more {
    color: var(--royal-blue-light);
    font-weight: 700;
    font-size: 12px;
}

.tech-footer-link-more:hover {
    color: var(--royal-purple-light);
}

/* ============================================
   SKELETON LOADING
   ============================================ */
.tech-footer-skeleton {
    pointer-events: none;
}

.tech-footer-skeleton-line {
    display: block;
    height: 18px;
    background: linear-gradient(90deg,
        var(--tech-footer-bg-tertiary) 0%,
        rgba(26, 123, 213, 0.1) 50%,
        var(--tech-footer-bg-tertiary) 100%
    );
    background-size: 200% 100%;
    border-radius: 4px;
    animation: techFooterSkeleton 1.5s ease-in-out infinite;
}

@keyframes techFooterSkeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   NEWSLETTER
   ============================================ */
.tech-footer-newsletter-text {
    font-size: 12px;
    color: var(--tech-footer-text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.tech-footer-newsletter-form {
    margin-bottom: 24px;
}

.tech-footer-input-group {
    display: flex;
    position: relative;
    border-radius: var(--tech-footer-radius-sm);
    overflow: hidden;
    border: 1.5px solid var(--tech-footer-border);
    transition: var(--tech-footer-transition);
    background: rgba(10, 14, 26, 0.6);
}

.tech-footer-input-group:focus-within {
    border-color: var(--royal-blue);
    box-shadow:
        0 0 0 4px rgba(26, 123, 213, 0.08),
        0 0 20px rgba(26, 123, 213, 0.1);
}

.tech-footer-input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--tech-footer-text-primary);
    font-size: 13px;
    font-family: inherit;
    outline: none;
    direction: ltr;
    text-align: left;
}

.tech-footer-input::placeholder {
    color: var(--tech-footer-text-muted);
    font-size: 11px;
}

.tech-footer-input-error {
    animation: techFooterShake 0.5s ease-in-out;
    border-color: var(--royal-burgundy) !important;
    box-shadow: 0 0 15px rgba(165, 42, 42, 0.3) !important;
}

@keyframes techFooterShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.tech-footer-input-btn {
    width: 48px;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-purple) 100%);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tech-footer-transition);
    position: relative;
    overflow: hidden;
}

.tech-footer-input-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.2) 0%,
        rgba(255,255,255,0.05) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s;
}

.tech-footer-input-btn:hover {
    background: linear-gradient(135deg, var(--royal-blue-light) 0%, var(--royal-purple-light) 100%);
    box-shadow: 0 5px 20px rgba(26, 123, 213, 0.3);
}

.tech-footer-input-btn:hover::before {
    opacity: 1;
}

.tech-footer-input-btn svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

.tech-footer-input-btn-loading svg {
    animation: techFooterSpin 0.8s linear infinite;
}

@keyframes techFooterSpin {
    to { transform: rotate(360deg); }
}

.tech-footer-form-success {
    font-size: 12px;
    color: #4ADE80;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--tech-footer-transition);
    height: 0;
    overflow: hidden;
    font-weight: 600;
}

.tech-footer-form-success-visible {
    opacity: 1;
    transform: translateY(0);
    height: auto;
}

/* ============================================
   SOCIAL ICONS
   ============================================ */
.tech-footer-social {
    display: flex;
    gap: 14px;
}

.tech-footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(131, 149, 183, 0.06);
    border: 1px solid var(--tech-footer-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tech-footer-text-secondary);
    transition: var(--tech-footer-transition);
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.tech-footer-social-btn:hover {
    background: linear-gradient(135deg,
        var(--royal-blue) 0%,
        var(--royal-purple) 100%
    );
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow:
        0 12px 28px rgba(26, 123, 213, 0.35),
        0 0 0 4px rgba(26, 123, 213, 0.1);
}

.tech-footer-social-btn svg {
    width: 20px;
    height: 20px;
    transition: var(--tech-footer-transition);
}

.tech-footer-social-btn:hover svg {
    transform: scale(1.15);
}

/* ============================================
   TOOLTIP
   ============================================ */
.tech-footer-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translate(-50%, 0);
    background: linear-gradient(135deg, var(--royal-blue-dark) 0%, var(--royal-purple-dark) 100%);
    color: var(--tech-footer-text-primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: var(--tech-footer-transition);
    border: 1px solid rgba(26, 123, 213, 0.3);
    font-weight: 500;
}

.tech-footer-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--royal-blue-dark);
}

/* ============================================
   TRUST ROW
   ============================================ */
.tech-footer-trust-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-top: 1px solid var(--tech-footer-border);
    border-bottom: 1px solid var(--tech-footer-border);
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

/* Trust Badges */
.tech-footer-trust-badges {
    display: flex;
    gap: 30px;
    align-items: center;
}

.tech-footer-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--tech-footer-transition);
    opacity: 0.7;
    cursor: pointer;
}

.tech-footer-badge:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.tech-footer-badge-img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    border: 1px solid var(--tech-footer-border);
    transition: var(--tech-footer-transition);
}

.tech-footer-badge:hover .tech-footer-badge-img {
    border-color: var(--royal-blue);
    box-shadow: 0 8px 24px rgba(26, 123, 213, 0.2);
}

.tech-footer-badge-icon {
    width: 60px;
    height: 60px;
    color: #4ADE80;
    background: rgba(74, 222, 128, 0.05);
    border-radius: 8px;
    padding: 8px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    transition: var(--tech-footer-transition);
}

.tech-footer-badge:hover .tech-footer-badge-icon {
    border-color: #4ADE80;
    box-shadow: 0 8px 24px rgba(74, 222, 128, 0.2);
}

.tech-footer-badge-text {
    font-size: 11px;
    color: var(--tech-footer-text-muted);
    text-align: center;
    font-weight: 500;
}

/* Contact Mini */
.tech-footer-contact-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(12, 20, 40, 0.5);
    padding: 20px 28px;
    border-radius: var(--tech-footer-radius);
    border: 1px solid var(--tech-footer-border);
    backdrop-filter: blur(10px);
}

.tech-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--tech-footer-text-secondary);
    font-size: 13px;
}

.tech-footer-contact-item svg {
    color: var(--royal-blue-light);
    flex-shrink: 0;
}

/* ============================================
   BOTTOM BAR
   ============================================ */
.tech-footer-bottom {
    background: linear-gradient(180deg,
        rgba(10, 14, 26, 0.98) 0%,
        rgba(8, 10, 20, 1) 100%
    );
    padding: 20px 0;
    border-top: 1px solid var(--tech-footer-border);
}

.tech-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.tech-footer-copyright {
    font-size: 12px;
    color: var(--tech-footer-text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-footer-copyright strong {
    background: linear-gradient(135deg, var(--royal-blue-light) 0%, var(--royal-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.tech-footer-bottom-sep {
    color: var(--royal-purple);
    font-size: 10px;
    opacity: 0.5;
}

.tech-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tech-footer-bottom-links a {
    font-size: 12px;
    color: var(--tech-footer-text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.tech-footer-bottom-links a:hover {
    color: var(--royal-blue-light);
}

/* ============================================
   RESPONSIVE - TABLET (1024px)
   ============================================ */
@media (max-width: 1024px) {
    .tech-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .tech-footer-brand-row {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .tech-footer-brand-icon {
        width: 80px;
        height: 80px;
        padding: 14px;
        border-radius: 18px;
        margin: 0 auto;
    }

    .tech-footer-brand-icon::before {
        border-radius: 20px;
    }

    .tech-footer-brand-icon::after {
        border-radius: 24px;
    }

    .tech-footer-stats {
        width: 100%;
        justify-content: center;
        gap: 30px;
    }

    .tech-footer-trust-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tech-footer-contact-mini {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
    .tech-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .tech-footer-brand-icon {
        width: 70px;
        height: 70px;
        padding: 12px;
        border-radius: 16px;
        margin: 0 auto;
    }

    .tech-footer-brand-icon::before {
        border-radius: 18px;
    }

    .tech-footer-brand-icon::after {
        border-radius: 22px;
    }

    .tech-footer-brand-link:hover .tech-footer-brand-icon {
        transform: translateY(-4px) scale(1.03);
    }

    .tech-footer-stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .tech-footer-stat-divider {
        width: 60%;
        height: 1px;
    }

    .tech-footer-trust-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .tech-footer-contact-mini {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .tech-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .tech-footer-bottom-links {
        justify-content: center;
    }

    .tech-footer-container {
        padding: 0 20px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
    .tech-footer-brand-icon {
        width: 65px;
        height: 65px;
        padding: 10px;
        border-radius: 14px;
    }

    .tech-footer-stat-number {
        font-size: 26px;
    }

    .tech-footer-wave {
        height: 60px;
    }

    .tech-footer-copyright {
        flex-direction: column;
        gap: 4px;
    }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
.tech-footer::-webkit-scrollbar {
    width: 6px;
}

.tech-footer::-webkit-scrollbar-track {
    background: var(--tech-footer-bg-primary);
}

.tech-footer::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--royal-blue), var(--royal-purple));
    border-radius: 3px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .tech-footer-wave-wrap,
    .tech-footer-newsletter-form,
    .tech-footer-social {
        display: none;
    }

    .tech-footer {
        background: #fff;
        color: #000;
    }

    .tech-footer a {
        color: #000;
        text-decoration: underline;
    }
}