/* ========================================
   FULLDATA - Bootstrap Migration CSS
   Solo estilos esenciales no cubiertos por Bootstrap
   ======================================== */

/* Custom Fonts */
@font-face {
    font-family: 'Aeonik-Bold';
    src: url('../assets/fonts/Aeonik-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Code-Pro-Black';
    src: url('../assets/fonts/Code-Pro-Black.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Bootstrap Variable Overrides */
:root {
    --bs-primary: #0066FF;
    --bs-secondary: #00D9FF;
    --bs-info: #00D9FF;
    --bs-dark: #0A0E27;
    --bs-body-font-family: 'Aeonik-Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Apply Aeonik-Bold to entire project */
body {
    font-family: 'Aeonik-Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Apply Aeonik-Bold to headings */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
.section-title,
.plan-name,
.navbar-brand {
    font-family: 'Aeonik-Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Gradient Text Utility */
.gradient-text {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Speed Meter Animation */
.speed-progress {
    stroke-dasharray: 565.48;
    stroke-dashoffset: 565.48;
    transition: stroke-dashoffset 2s ease-out;
}

/* Scroll Wheel Animation */
@keyframes scroll {
    0%, 100% { opacity: 0; top: 8px; }
    50% { opacity: 1; top: 16px; }
}

.scroll-wheel {
    animation: scroll 1.5s infinite;
}

/* Card Hover Effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
}

/* Gauge SVG Styles */
.gauge-svg {
    transform: rotate(-90deg);
}

.gauge-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 6;
    stroke-linecap: round;
}

.gauge-progress {
    fill: none;
    stroke: var(--bs-primary);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 565.48px;
    stroke-dashoffset: calc(565.48px - (var(--percentage) * 5.6548px));
    transition: stroke-dashoffset 1s ease-out;
}

.gauge-value {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Toggle Container for PYMES */
.region-toggle-wrapper .toggle-container {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px;
    display: inline-flex;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.region-toggle-wrapper .toggle-btn {
    position: relative;
    background: none;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    border-radius: 50px;
    z-index: 2;
    transition: all 0.3s ease;
    min-width: 160px;
}

.region-toggle-wrapper .toggle-btn.active {
    color: #ffffff;
    font-weight: 700;
}

.region-toggle-wrapper .toggle-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: linear-gradient(135deg, #00D9FF 0%, #0066FF 100%);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
}

/* Tech Overlay */
.tech-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}

.tech-stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.tech-stat .stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar Scroll Effect */
#navbar.scrolled {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Desktop Navbar Layout - Logo | Center Nav | Right Actions */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        justify-content: space-between;
    }
    
    .navbar-nav.mx-auto {
        flex-grow: 0;
    }
}

/* Navbar Links Hover */
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    font-weight: 600;
}

.navbar-nav .nav-link:hover {
    color: #0093ff !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0093ff, transparent);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Navbar Button Styles */
.navbar-nav .btn {
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.navbar-nav .btn-outline-primary {
    color: #0A0E27;
    border-color: rgba(0, 0, 0, 0.2);
    background: transparent;
}

.navbar-nav .btn-outline-primary:hover {
    color: #ffffff;
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

.navbar-nav .btn-primary {
    color: #ffffff;
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

.navbar-nav .btn-primary:hover {
    background: #0052CC;
    border-color: #0052CC;
}

/* Mobile Navbar Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
        backdrop-filter: blur(20px);
        margin-top: 1rem;
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 102, 255, 0.12), 0 0 0 1px rgba(0, 102, 255, 0.08);
        border: 2px solid rgba(0, 102, 255, 0.1);
    }
    
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .navbar-nav {
        gap: 0.5rem;
        align-items: center;
        width: 100%;
        margin-left: 0 !important;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 1rem 1.5rem;
        border-radius: 1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 1rem;
        color: #0A0E27;
        text-align: center;
        width: 100%;
        display: block;
        font-weight: 600;
        position: relative;
        overflow: hidden;
    }

    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 217, 255, 0.08) 100%);
        transition: left 0.3s ease;
        z-index: -1;
    }

    .navbar-nav .dropdown-toggle {
        width: 100%;
        display: block;
        text-align: center;
    }
    
    .navbar-nav .nav-link:hover {
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.12) 0%, rgba(0, 217, 255, 0.12) 100%);
        color: #0066FF;
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
    }

    .navbar-nav .nav-link:hover::before {
        left: 0;
    }
    
    .navbar-nav .btn {
        width: 100%;
        margin-top: 0.5rem;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 1rem;
        box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
        transition: all 0.3s ease;
    }

    .navbar-nav .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 102, 255, 0.3);
    }

    .navbar-nav .btn-outline-primary {
        border-width: 2px;
    }
    
    .dropdown-menu {
        border: none;
        box-shadow: none;
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.06) 0%, rgba(0, 217, 255, 0.06) 100%);
        padding: 0.75rem;
        margin-top: 0.5rem;
        border-radius: 1rem;
        position: static;
        float: none;
        width: 100%;
        inset: auto !important;
        transform: none !important;
    }
    
    .dropdown-item {
        border-radius: 0.75rem;
        padding: 0.875rem 1.25rem;
        margin-bottom: 0.35rem;
        text-align: center;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .dropdown-item:hover {
        background: white;
        color: #0066FF;
        transform: scale(1.02);
        box-shadow: 0 2px 8px rgba(0, 102, 255, 0.1);
    }

    .dropdown-item:last-child {
        margin-bottom: 0;
    }

    .dropdown-divider {
        margin: 0.5rem 0;
        border-color: rgba(0, 102, 255, 0.15);
    }

    /* User icon centered */
    .navbar-nav .nav-item:last-child {
        display: flex;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .navbar-nav .nav-item:last-child a {
        width: auto;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .scroll-wheel {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .navbar, .scroll-indicator {
        display: none;
    }
}

/* ========================================
   PLANS SECTION STYLES
   ======================================== */

/* Plans Section */
.plans {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0A0E27;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Plans Toggle */
.plans-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
}

.plans-toggle .toggle-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.plans-toggle .toggle-btn:hover {
    border-color: #0066FF;
    color: #0066FF;
    transform: translateY(-2px);
}

.plans-toggle .toggle-btn.active {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.plans-toggle .toggle-slider {
    position: absolute;
    height: 100%;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: 0;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Plan Card */
.plan-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.2);
}

.plan-card-popular {
    background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
    color: white;
    border-color: #00D9FF;
}

.plan-card-popular .plan-name,
.plan-card-popular .plan-description,
.plan-card-popular .plan-features li {
    color: white;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

/* Plan Header */
.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0A0E27;
}

.plan-description {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

/* Plan Speed Gauge */
.plan-speed-gauge {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.speed-gauge {
    position: relative;
    width: 150px;
    height: 150px;
}

.speed-gauge svg {
    width: 100%;
    height: 100%;
}

.gauge-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
}

.gauge-unit {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
}

/* Plan Speed Badge */
.plan-speed {
    text-align: center;
    margin-bottom: 1.5rem;
}

.speed-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

/* Plan Features */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.plan-features li {
    padding: 0.75rem 0;
    color: #495057;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.plan-features li i {
    color: #0066FF;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Plan Button */
.plan-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: white;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.plan-btn:hover {
    background: linear-gradient(135deg, #0052CC 0%, #003D99 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
    color: white;
}

.plan-btn-primary {
    background: linear-gradient(135deg, #00D9FF 0%, #0066FF 100%);
}

.plan-btn-primary:hover {
    background: linear-gradient(135deg, #00C4E6 0%, #0052CC 100%);
}

/* PYMES Section */
.pymes-plans {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
    color: white;
}

.pymes-plans .section-title,
.pymes-plans .section-subtitle {
    color: white;
}

.pymes-plans .plan-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pymes-plans .plan-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 217, 255, 0.3);
}

.pymes-plans .plan-name {
    color: white;
}

.pymes-plans .plan-description {
    color: rgba(255, 255, 255, 0.7);
}

.pymes-plans .plan-features li {
    color: rgba(255, 255, 255, 0.9);
}

.pymes-plans .plan-features li i {
    color: #00D9FF;
}

.pymes-plans .gauge-unit {
    color: #00D9FF;
}

/* Region Toggle Wrapper */
.region-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
}

/* ========================================
   TECHNOLOGY SECTION STYLES
   ======================================== */

.technology {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.tech-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-icon i {
    font-size: 1.5rem;
    color: white;
}

.tech-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0A0E27;
}

.tech-info p {
    color: #6c757d;
    margin: 0;
}

.technology-visual {
    position: relative;
}

.tech-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tech-image img {
    width: 100%;
    height: auto;
    display: block;
}

.tech-stat-white {
    background: rgba(255, 255, 255, 0.95) !important;
}

.tech-stat-white .stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* ========================================
   CONTACT SECTION STYLES
   ======================================== */

.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.2);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0A0E27;
}

.contact-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0066FF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #00D9FF;
    gap: 0.75rem;
}

.contact-link i {
    font-size: 1.1rem;
}

.contact-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.contact-btn a {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.footer {
    background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.2));
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    transform: translateY(-3px);
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #00D9FF;
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.badge-item i {
    color: #00D9FF;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 992px) {
    .technology-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .tech-features {
        gap: 1.5rem;
    }
    
    .tech-feature {
        gap: 1rem;
    }
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #09003F 0%, #0093FF 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(9, 0, 63, 0.5), 0 0 0 0 rgba(0, 147, 255, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 147, 255, 0.7), 0 0 0 4px rgba(0, 147, 255, 0.2);
    background: linear-gradient(135deg, #0093FF 0%, #09003F 100%);
    border-color: rgba(0, 147, 255, 0.8);
}

.whatsapp-float i {
    color: white;
    line-height: 1;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: linear-gradient(135deg, #09003F 0%, #0093FF 100%);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(9, 0, 63, 0.4);
    font-family: 'Aeonik-Bold', sans-serif;
    border: 1px solid rgba(0, 147, 255, 0.3);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #09003F;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Pulse Animation */
@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(9, 0, 63, 0.5), 0 0 0 0 rgba(0, 147, 255, 0.6);
    }
    50% {
        box-shadow: 0 4px 20px rgba(9, 0, 63, 0.5), 0 0 0 12px rgba(0, 147, 255, 0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float {
        animation: none;
    }
    
    .whatsapp-float:hover {
        transform: scale(1.05);
    }
}
