/* 
* Opcs2005 - Main Stylesheet
* Theme: Retro Futurism
* Author: Opcs2005 Team
* Version: 1.0
*/

/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
:root {
    /* Color Palette */
    --primary-color: #FF00FF; /* Neón Magenta */
    --secondary-color: #00FFFF; /* Neón Cian */
    --tertiary-color: #9000FF; /* Neón Púrpura */
    --accent-color: #FFD700; /* Oro */
    --metallic-color: #C0C0C0; /* Plata/Cromo */
    --dark-bg: #0A0A20; /* Azul Oscuro/Negro */
    --text-color: #FFFFFF; /* Blanco */
    --text-secondary: #E0E0E0; /* Gris Claro */
    
    /* Gradients */
    --neon-gradient: linear-gradient(45deg, var(--primary-color), var(--tertiary-color), var(--secondary-color));
    --metallic-gradient: linear-gradient(180deg, #FFFFFF 0%, var(--metallic-color) 50%, #7A7A7A 100%);
    
    /* Shadows */
    --neon-glow: 0 0 10px rgba(255, 0, 255, 0.7), 0 0 20px rgba(255, 0, 255, 0.5), 0 0 30px rgba(255, 0, 255, 0.3);
    --cyan-glow: 0 0 10px rgba(0, 255, 255, 0.7), 0 0 20px rgba(0, 255, 255, 0.5), 0 0 30px rgba(0, 255, 255, 0.3);
    --purple-glow: 0 0 10px rgba(144, 0, 255, 0.7), 0 0 20px rgba(144, 0, 255, 0.5), 0 0 30px rgba(144, 0, 255, 0.3);
    
    /* Spacing */
    --section-spacing: 80px;
    --element-spacing: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(144, 0, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 40% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 30%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
}

span, label {
  color: var(--text-secondary) !important;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.iti {
  width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.text-center {
    text-align: center;
}

section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.alternate-bg {
    background-color: rgba(10, 10, 32, 0.7);
    position: relative;
}

.alternate-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(144, 0, 255, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(144, 0, 255, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(144, 0, 255, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(144, 0, 255, 0.05) 75%);
    background-size: 20px 20px;
    z-index: -1;
}

.chrome-text {
    background: var(--metallic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.chrome-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: blur(8px);
    opacity: 0.5;
}

.highlight {
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
    font-weight: bold;
}

.ui.button {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.glow-button {
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    color: var(--text-color);
    border: none;
    padding: 0.8em 1.5em;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.glow-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--tertiary-color), var(--secondary-color));
    transition: all 0.4s ease;
    z-index: -1;
}

.glow-button:hover {
    color: var(--text-color);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.8), 0 0 30px rgba(255, 0, 255, 0.4);
}

.glow-button:hover::before {
    left: 0;
}

.view-more-container {
    text-align: center;
    margin-top: 3rem;
}

/*--------------------------------------------------------------
# Cookie Banner
--------------------------------------------------------------*/
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 32, 0.95);
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cookie-header h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.cookie-options {
    margin: 20px 0;
}

.cookie-option {
    margin-bottom: 15px;
    padding: 10px;
    background-color: rgba(144, 0, 255, 0.1);
    border-radius: 5px;
}

.cookie-option label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.cookie-option p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.cookie-footer {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-settings-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    color: var(--text-color);
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    transition: all 0.3s ease;
}

.cookie-settings-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.retro-header {
    background-color: rgba(10, 10, 32, 0.9);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    max-width: 200px;
}

.logo {
    width: 100%;
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    text-shadow: 0 0 8px var(--primary-color);
}

.nav-links a:hover::after, 
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(10, 10, 32, 0.8) 0%, rgba(10, 10, 32, 0.95) 100%);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.typed-container {
    height: 50px;
    margin-bottom: 1.5rem;
}

#typed {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    color: var(--secondary-color);
    text-shadow: var(--cyan-glow);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image-container {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 90%;
    width: auto;
    object-fit: cover;
    transform: translateX(20%);
    filter: brightness(0.8) contrast(1.1);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Page Hero (for inner pages) */
.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(10, 10, 32, 0.8) 0%, rgba(10, 10, 32, 0.95) 100%);
    background-size: cover;
    background-position: center;
}

.small-hero {
    min-height: 30vh;
    padding: 60px 0;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
.intro-section {
    position: relative;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(144, 0, 255, 0.1);
    border: 1px solid rgba(144, 0, 255, 0.3);
    border-radius: 5px;
    flex-basis: calc(33.333% - 20px);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(144, 0, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

/*--------------------------------------------------------------
# Operators Section
--------------------------------------------------------------*/
.operators-section {
    position: relative;
}

.operator-card {
    background: rgba(10, 10, 32, 0.8) !important;
    border: 1px solid rgba(144, 0, 255, 0.3) !important;
    overflow: hidden;
    transition: all 0.3s ease !important;
}

.operator-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(144, 0, 255, 0.2) !important;
}

.operator-card .image {
    height: 200px;
    overflow: hidden;
}

.operator-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.operator-card:hover .image img {
    transform: scale(1.1);
}

.operator-card .content,
.operator-card .extra.content {
    background: rgba(10, 10, 32, 0.8) !important;
    border-color: rgba(144, 0, 255, 0.3) !important;
}

.operator-card .header {
    color: var(--text-color) !important;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem !important;
}

.operator-card .meta {
    color: var(--secondary-color) !important;
}

.operator-card .description {
    color: var(--text-secondary) !important;
}

.operator-card .extra.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.operator-card .extra.content span {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.operator-card .extra.content i {
    color: var(--primary-color);
    margin-right: 5px;
}

/*--------------------------------------------------------------
# Benefits Section
--------------------------------------------------------------*/
.benefits-section {
    position: relative;
}

.benefit-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
}

.benefit-icon {
    flex: 0 0 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.benefit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Business Section
--------------------------------------------------------------*/
.business-section {
    position: relative;
}

.business-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.business-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.business-features i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
}

.business-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
# Emerging Tech Section
--------------------------------------------------------------*/
.emerging-tech-section {
    position: relative;
}

.tech-card {
    background: rgba(10, 10, 32, 0.8) !important;
    border: 1px solid rgba(0, 255, 255, 0.3) !important;
    overflow: hidden;
    transition: all 0.3s ease !important;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2) !important;
}

.tech-card .image {
    height: 200px;
    overflow: hidden;
}

.tech-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tech-card:hover .image img {
    transform: scale(1.1);
}

.tech-card .content {
    background: rgba(10, 10, 32, 0.8) !important;
    border-color: rgba(0, 255, 255, 0.3) !important;
}

.tech-card .header {
    color: var(--text-color) !important;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem !important;
}

.tech-card .description {
    color: var(--text-secondary) !important;
}

/*--------------------------------------------------------------
# Smart Home Section
--------------------------------------------------------------*/
.smart-home-section {
    position: relative;
}

.smart-home-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smart-home-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.smart-home-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    flex: 0 0 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--secondary-color), var(--tertiary-color));
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
    position: relative;
    background: linear-gradient(45deg, rgba(10, 10, 32, 0.9), rgba(40, 10, 60, 0.9));
}

.contact-form {
    background: rgba(10, 10, 32, 0.7);
    padding: 30px;
    border: 1px solid rgba(144, 0, 255, 0.3);
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-form .field label {
    color: var(--text-color);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
    background: rgba(30, 30, 50, 0.8);
    border: 1px solid rgba(144, 0, 255, 0.3);
    color: var(--text-color);
    border-radius: 0;
    padding: 12px;
    font-family: 'Inter', sans-serif;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    background: rgba(40, 40, 70, 0.8);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.contact-form .checkbox label,
.contact-form .radio label {
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}

.contact-info {
    height: 100%;
}

.contact-card {
    background: rgba(10, 10, 32, 0.7);
    padding: 30px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.contact-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
    min-width: 20px;
}

.why-trust-us h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.why-trust-us ul {
    list-style: none;
    padding-left: 0;
}

.why-trust-us li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.why-trust-us li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.retro-footer {
    background-color: rgba(10, 10, 32, 0.95);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.retro-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-logo-container {
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.footer-heading {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Operator Detail Page
--------------------------------------------------------------*/
.operator-detail-section {
    padding: 60px 0;
}

.operator-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.operator-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.operator-name {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.operator-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.operator-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.highlight-icon {
    flex: 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.highlight-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.operator-packages {
    margin-bottom: 2rem;
}

.operator-packages h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.package-item {
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(144, 0, 255, 0.3);
    padding: 20px;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.package-item h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.package-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-item li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.package-item li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.operator-pros-cons {
    display: flex;
    gap: 20px;
}

.pros, .cons {
    flex: 1;
    background: rgba(10, 10, 32, 0.5);
    padding: 20px;
    border-radius: 5px;
}

.pros {
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.cons {
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.pros h3, .cons h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.pros h3 {
    color: var(--secondary-color);
}

.cons h3 {
    color: var(--primary-color);
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li, .cons li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.pros li::before {
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.cons li::before {
    content: '\f068';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.other-operators-section {
    padding: 60px 0;
}

.regional-operator, .virtual-operator {
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(144, 0, 255, 0.3);
    padding: 25px;
    border-radius: 5px;
    height: 100%;
}

.regional-operator h3, .virtual-operator h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.regional-list, .virtual-list {
    margin-top: 1.5rem;
}

.regional-item, .virtual-item {
    margin-bottom: 1.5rem;
}

.regional-item h4, .virtual-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.comparison-section {
    padding: 60px 0;
}

.comparison-table-container {
    margin: 2rem 0;
}

.table-responsive {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    color: var(--text-color);
    text-align: left;
    padding: 15px;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(144, 0, 255, 0.3);
    background: rgba(10, 10, 32, 0.5);
}

.comparison-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
    text-align: center;
}

.tips-section {
    padding: 60px 0;
}

.tips-container {
    margin-top: 2rem;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.tip-number {
    flex: 0 0 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.tip-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Fiabilidad Page
--------------------------------------------------------------*/
.reliability-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reliability-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.methodology-card {
    background: rgba(10, 10, 32, 0.8) !important;
    border: 1px solid rgba(144, 0, 255, 0.3) !important;
    height: 100%;
    transition: all 0.3s ease !important;
}

.methodology-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(144, 0, 255, 0.2) !important;
}

.methodology-card .header {
    color: var(--primary-color) !important;
    font-size: 1.3rem !important;
    font-family: 'JetBrains Mono', monospace;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.methodology-card .header i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.methodology-card .description {
    color: var(--text-secondary) !important;
}

.methodology-card .description ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.methodology-card .description li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
}

.methodology-card .description li::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.speed-results-section, .stability-section, .satisfaction-section {
    padding: 60px 0;
}

.speed-chart-container, .stability-chart-container, .satisfaction-chart-container {
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(144, 0, 255, 0.3);
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.speed-chart-container h3, .stability-chart-container h3, .satisfaction-chart-container h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-align: center;
}

.speed-chart, .stability-chart, .satisfaction-chart {
    margin: 2rem 0;
}

.operator-bar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.operator-name {
    flex: 0 0 100px;
    text-align: right;
    padding-right: 15px;
    font-weight: 500;
}

.bar-container {
    flex: 1;
    height: 30px;
    background: rgba(30, 30, 50, 0.8);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    font-weight: 700;
    color: var(--text-color);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5) inset;
}

.chart-note {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
    margin-top: 1rem;
}

.stability-metrics {
    margin-top: 2rem;
}

.metric-item {
    margin-bottom: 1.5rem;
}

.metric-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.metric-chart {
    height: 40px;
    background: rgba(30, 30, 50, 0.8);
    border-radius: 5px;
    position: relative;
    margin-bottom: 5px;
}

.operator-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.movistar {
    background-color: #019df4;
}

.orange {
    background-color: #ff6600;
}

.vodafone {
    background-color: #e60000;
}

.masmovil {
    background-color: #1eb8e7;
}

.otros {
    background-color: #7a7a7a;
}

.metric-scale {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.7;
}

.speed-insights, .speed-factors, .stability-findings {
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(144, 0, 255, 0.3);
    padding: 25px;
    border-radius: 5px;
    height: 100%;
}

.speed-insights h3, .speed-factors h3, .stability-findings h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.insights-list {
    list-style: none;
    padding-left: 0;
}

.insights-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}

.insights-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.factor-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.factor-icon {
    flex: 0 0 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--tertiary-color), var(--secondary-color));
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.factor-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--accent-color);
}

.finding-item {
    margin-bottom: 1.5rem;
}

.finding-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.satisfaction-categories {
    margin-top: 2rem;
}

.satisfaction-category {
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(144, 0, 255, 0.3);
    padding: 20px;
    border-radius: 5px;
    height: 100%;
}

.satisfaction-category h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.satisfaction-category p {
    margin-bottom: 0.5rem;
}

.satisfaction-category p strong {
    color: var(--secondary-color);
}

.user-testimonials {
    margin-top: 3rem;
}

.testimonials-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary-color);
}

.testimonial {
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(144, 0, 255, 0.3);
    padding: 25px;
    border-radius: 5px;
    height: 100%;
    position: relative;
}

.testimonial::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    color: rgba(144, 0, 255, 0.3);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 500;
    color: var(--secondary-color);
}

.author-rating {
    color: var(--accent-color);
}

.recommendations-section {
    padding: 60px 0;
}

.recommendations-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.recommendation-card {
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(144, 0, 255, 0.3);
    padding: 25px;
    border-radius: 5px;
    height: 100%;
}

.recommendation-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.recommendation-icon {
    flex: 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.recommendation-header h3 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--secondary-color);
}

.recommendation-content p {
    margin-bottom: 1rem;
}

.recommendation-content ul {
    list-style: none;
    padding-left: 0;
}

.recommendation-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.recommendation-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.recommendation-content strong {
    color: var(--accent-color);
}

.tools-section {
    padding: 60px 0;
}

.tools-list {
    margin-bottom: 2rem;
}

.tool-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(144, 0, 255, 0.3);
    padding: 20px;
    border-radius: 5px;
}

.tool-icon {
    flex: 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--tertiary-color), var(--secondary-color));
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.tool-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.tool-content .ui.button {
    margin-top: 10px;
}

.optimization-tips {
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(144, 0, 255, 0.3);
    padding: 25px;
    border-radius: 5px;
    height: 100%;
}

.optimization-tips h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.tip-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.tip-number {
    flex: 0 0 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.tip-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--accent-color);
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(45deg, rgba(10, 10, 32, 0.9), rgba(40, 10, 60, 0.9));
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/*--------------------------------------------------------------
# Predicciones Page
--------------------------------------------------------------*/
.prediction-image-container {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prediction-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.prediction-section {
    padding: 60px 0;
}

.prediction-content {
    margin-bottom: 2rem;
}

.prediction-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.prediction-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.prediction-feature .feature-icon {
    flex: 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.prediction-feature .feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.challenges-list, .convergence-list, .iot-challenges {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.challenges-list li, .convergence-list li, .iot-challenges li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.challenges-list li::before {
    content: '\f071';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.convergence-list li::before {
    content: '\f1e0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.iot-challenges li {
    margin-bottom: 15px;
}

.iot-challenges li strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 5px;
}

.iot-challenges li::before {
    content: '\f0e7';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.prediction-stats {
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(144, 0, 255, 0.3);
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.prediction-stats h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.stat-item {
    margin-bottom: 1.5rem;
    text-align: center;
}

.stat-label {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    opacity: 0.8;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.stat-description {
    font-size: 0.85rem;
    opacity: 0.7;
}

.expert-quote {
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 25px;
    border-radius: 5px;
    position: relative;
}

.expert-quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    color: rgba(0, 255, 255, 0.3);
}

.expert-quote blockquote {
    margin: 0 0 1.5rem;
    padding: 0 0 0 20px;
    border-left: 3px solid var(--secondary-color);
    font-style: italic;
}

.quote-author {
    text-align: right;
}

.quote-author span {
    display: block;
    font-weight: 500;
    color: var(--primary-color);
}

.quote-author small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.fiber-comparison {
    margin-top: 2rem;
}

.fiber-comparison h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-align: center;
}

.fiber-comparison table {
    width: 100%;
}

.fiber-comparison th {
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    color: var(--text-color);
    text-align: left;
    padding: 12px;
}

.fiber-comparison td {
    padding: 12px;
    border-bottom: 1px solid rgba(144, 0, 255, 0.3);
    background: rgba(10, 10, 32, 0.5);
}

.business-models-container {
    margin-bottom: 3rem;
}

.model-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(144, 0, 255, 0.3);
    padding: 25px;
    border-radius: 5px;
}

.model-icon {
    flex: 0 0 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    border-radius: 50%;
    margin-right: 25px;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.model-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.model-content ul {
    list-style: none;
    padding-left: 0;
}

.model-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.model-content li::before {
    content: '\f0da';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.future-landscape {
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 25px;
    border-radius: 5px;
}

.future-landscape h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    text-align: center;
}

.landscape-item {
    margin-bottom: 2rem;
}

.landscape-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.sustainability-section {
    padding: 60px 0;
    background: linear-gradient(45deg, rgba(10, 10, 32, 0.9), rgba(20, 40, 30, 0.9));
}

.sustainability-initiative {
    margin-bottom: 2rem;
}

.sustainability-initiative h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.sustainability-initiative ul {
    list-style: none;
    padding-left: 0;
}

.sustainability-initiative li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.sustainability-initiative li::before {
    content: '\f06c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.impact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.impact-icon {
    flex: 0 0 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-color);
    background: linear-gradient(45deg, #4CAF50, #2196F3);
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.impact-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--accent-color);
}

.conclusion-section {
    padding: 60px 0;
}

.conclusion-card {
    background: rgba(10, 10, 32, 0.8) !important;
    border: 1px solid rgba(144, 0, 255, 0.3) !important;
    height: 100%;
    transition: all 0.3s ease !important;
}

.conclusion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(144, 0, 255, 0.2) !important;
}

.conclusion-card .header {
    color: var(--secondary-color) !important;
    font-size: 1.3rem !important;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 15px;
}

.conclusion-card .description {
    color: var(--text-secondary) !important;
}

.conclusion-list {
    list-style: none;
    padding-left: 0;
}

.conclusion-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.conclusion-list li::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.final-thoughts {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page-section {
    padding: 60px 0;
}

.contact-form-container {
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(144, 0, 255, 0.3);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.contact-intro {
    margin-bottom: 2rem;
}

.contact-info-container {
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.contact-info-items {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-icon {
    flex: 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--secondary-color), var(--tertiary-color));
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-image {
    margin: 2rem 0;
}

.contact-office-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-contact-us h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.why-contact-us ul {
    list-style: none;
    padding-left: 0;
}

.why-contact-us li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.why-contact-us li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.map-section {
    padding: 60px 0;
}

.map-container {
    height: 450px;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    border: none;
}

.map-info {
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(144, 0, 255, 0.3);
    padding: 25px;
    border-radius: 10px;
}

.directions, .surroundings {
    margin-bottom: 1rem;
}

.directions h3, .surroundings h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.directions ul, .surroundings ul {
    list-style: none;
    padding-left: 0;
}

.directions li, .surroundings li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.directions li::before {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.surroundings li::before {
    content: '\f0c8';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.faq-section {
    padding: 60px 0;
}

.faq-accordion {
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(144, 0, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.faq-accordion .title {
    padding: 15px 20px;
    color: var(--text-color);
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    border-bottom: 1px solid rgba(144, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.faq-accordion .title:hover {
    background: rgba(144, 0, 255, 0.1);
}

.faq-accordion .title.active {
    color: var(--secondary-color);
    background: rgba(144, 0, 255, 0.1);
}

.faq-accordion .content {
    padding: 20px;
    color: var(--text-secondary);
    background: rgba(10, 10, 32, 0.3);
}

.faq-accordion .content.active {
    border-bottom: 1px solid rgba(144, 0, 255, 0.3);
}

.faq-accordion .content a {
    color: var(--primary-color);
}

.faq-accordion .content a:hover {
    text-decoration: underline;
}

/*--------------------------------------------------------------
# Thanks Page
--------------------------------------------------------------*/
.thanks-section {
    padding: 80px 0;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 80px;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thanks-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary-color);
}

.steps-list {
    list-style: none;
    padding: 0;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step-number {
    flex: 0 0 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.contact-info-reminder {
    margin: 3rem 0;
    text-align: center;
}

.contact-info-reminder h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.contact-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.contact-method i {
    margin-right: 10px;
    color: var(--primary-color);
}

.back-to-site {
    margin-top: 3rem;
}

.recommended-section {
    padding: 60px 0 80px;
}

.recommended-card {
    background: rgba(10, 10, 32, 0.8) !important;
    border: 1px solid rgba(144, 0, 255, 0.3) !important;
    height: 100%;
    transition: all 0.3s ease !important;
}

.recommended-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(144, 0, 255, 0.2) !important;
}

.recommended-card .header {
    color: var(--secondary-color) !important;
    font-size: 1.2rem !important;
    font-family: 'JetBrains Mono', monospace;
    display: flex;
    align-items: center;
}

.recommended-card .header i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.recommended-card .description {
    color: var(--text-secondary) !important;
}

.recommended-card .extra.content {
    background: rgba(10, 10, 32, 0.6) !important;
    border-top: 1px solid rgba(144, 0, 255, 0.3) !important;
}

/*--------------------------------------------------------------
# Legal Pages
--------------------------------------------------------------*/
.legal-content-section {
    padding: 60px 0;
}

.legal-content {
    background: rgba(10, 10, 32, 0.5);
    border: 1px solid rgba(144, 0, 255, 0.3);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.legal-intro {
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    border-bottom: 1px solid rgba(144, 0, 255, 0.3);
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-section ul, .legal-section ol {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
}

.legal-section strong {
    color: var(--accent-color);
}

.legal-section table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.legal-section th {
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    color: var(--text-color);
    text-align: left;
    padding: 12px;
}

.legal-section td {
    padding: 12px;
    border-bottom: 1px solid rgba(144, 0, 255, 0.3);
    background: rgba(10, 10, 32, 0.3);
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/
@media screen and (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-image-container {
        width: 40%;
    }
    
    .hero-image {
        transform: translateX(15%);
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 991px) {
    :root {
        --section-spacing: 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    #typed {
        font-size: 1.3rem;
    }
    
    .hero-image-container {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-item {
        flex-basis: calc(50% - 20px);
    }
    
    .operator-pros-cons {
        flex-direction: column;
    }
    
    .pros, .cons {
        margin-bottom: 20px;
    }
    
    .recommendations-container {
        grid-template-columns: 1fr;
    }
    
    .model-item {
        flex-direction: column;
    }
    
    .model-icon {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --section-spacing: 50px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 32, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 99;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .typed-container {
        height: 40px;
    }
    
    #typed {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-item {
        flex-basis: 100%;
    }
    
    .benefit-item, .feature-item, .tool-item, .prediction-feature {
        flex-direction: column;
    }
    
    .benefit-icon, .feature-icon, .tool-icon, .prediction-feature .feature-icon {
        margin-bottom: 15px;
    }
    
    .operator-bar {
        flex-direction: column;
    }
    
    .operator-name {
        text-align: center;
        padding-right: 0;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 575px) {
    :root {
        --section-spacing: 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .contact-form, .contact-card {
        padding: 20px;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-actions button {
        width: 100%;
    }
    
    .model-item, .tip-item, .legal-content {
        padding: 20px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}