
/* =========================================================================
    1. Variables CSS Personalizadas (Design Tokens)
    ========================================================================= */
:root {
    --gleted-base: #071952; /* Azul Oscuro (Base) */
    --gleted-light: #E7EDFD; /* Azul Muy Claro */
    --gleted-accent: #B799FF; /* Morado/Lila (Acento Principal) */
    --gleted-accent-hover: #9670ff; /* Morado/Lila para Hover */
    --text-secondary: #9ca3af; /* Gris para textos secundarios */
}

/* Estilos Globales */
body {
    color: #f3f4f6; /* Blanco ligeramente grisáceo */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /*background-color: var(--gleted-base);  Fondo base por defecto */
}

/* Accesibilidad y Marca */
::selection {
    background-color: var(--gleted-accent);
    color: var(--gleted-base);
}

/* Checkbox de Bootstrap (Acento) */
.form-check-input:checked {
    background-color: var(--gleted-accent) !important;
    border-color: white !important;
}
.bg-base{
    background: var(--gleted-base)!important;
}
.bg-accent{
    background: var(--gleted-accent)!important;
}

/* =========================================================================
    2. Estilos de Componentes (Glassmorphism)
    ========================================================================= */

/* Estilo General para Modals y Elementos "Flotantes" */
.glass-pill-base {
    background-color: rgba(7, 25, 82, 0.5); /* Cristal Oscuro */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px; /* Borde redondeado de píldora */
}

.modal-contacto, .modal-content {
    /* Se ha modificado la opacidad de la base para que el modal sea más legible */
    background-color: rgba(7, 25, 82, 0.85); 
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px; /* Reducción a 20px para un modal más estándar */
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* --- NAVBAR --- */
.navbar-custom {
    /* Eliminamos el fondo completo de la barra */
    background-color: transparent !important;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transition: all 0.3s ease;
}

/* Contenedor tipo "Cápsula" para el menú (Usa la clase base) */
.nav-pill-container {
    /* Herencia de estilos base 
    @extend .glass-pill-base;*/
    background-color: rgba(7, 25, 82, 0.5); /* Cristal Oscuro */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px; 
    display: flex;
    align-items: center;
}
.nav-pill-container-dropdown {
    /* Herencia de estilos base 
    @extend .glass-pill-base;*/
    margin-top: 15px !important;
    background-color: rgba(7, 25, 82, 0.5);  /* Cristal Oscuro */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: .75rem .75rem;
    border-radius: 20px; 
    align-items: center;
}
/* Contenedor tipo "Cápsula" para la versión móvil (Usa la clase base) */
.nav-pill {
    /* Herencia de estilos base 
    @extend .glass-pill-base;*/
    background-color: rgba(7, 25, 82, 0.5); /* Cristal Oscuro */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px; 
}

/* Ajustes de enlaces dentro de la cápsula */
.navbar-nav .nav-link {
    color: var(--gleted-light) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    border-radius: 20px;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gleted-base)!important;
    background-color: rgba(255, 255, 255, 0.6);
}

/* Botón de Login (Estilo Pastilla Sólida) */
.btn-login-pill {
    background-color: var(--gleted-accent);
    color: var(--gleted-light);
    font-weight: 700;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-left: 1rem;
    margin-right: 0.5rem;
    border: none;
    transition: all 0.3s;
}

.btn-login-pill:hover {
    background-color: #ffffff;
    color: var(--gleted-base);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(183, 153, 255, 0.4);
}

.search-icon-btn {
    background: none;
    border: none;
    color: #ffffff;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.search-icon-btn:hover {
    opacity: 1;
}

/* Input Styles */
.input-dark {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.input-dark::placeholder {
    color: #4b5563;
}

.input-dark:focus {
    outline: none;
    border-color: var(--gleted-accent);
    box-shadow: 0 0 0 3px rgba(183, 153, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

.input-dark option {
    background-color: #1f2937;
    color: white;
}


/* Ajustes Mobile para la cápsula */
@media (max-width: 991px) {
    .nav-pill-container {
        flex-direction: column;
        border-radius: 20px;
        padding: 1.5rem;
        margin-top: 1rem;
        width: 100%;
        align-items: flex-start;
    }
    
    .navbar-collapse {
        width: 100%;
    }

    .btn-login-pill {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
}

/* --- ANIMACIONES SCROLL (Reveal) --- */

/* Estado inicial: invisible y desplazado hacia abajo */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform; /* Optimización de rendimiento */
}

/* Estado activo: visible y en su posición original */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Retardos para efecto cascada (staggering) */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Navbar Sticky (Scroll) - Usaremos clases de Bootstrap en JS */
/*
.navbar-custom.scrolled {
    backdrop-filter: blur(12px);
    background-color: rgba(7, 25, 82, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
*/

/* Botones de Acción Globales */
.btn-custom {
    background-color: var(--gleted-accent);
    color: var(--gleted-base);
    font-weight: bold;
    transition: all 0.3s;
}

.btn-custom:hover {
    background-color: #ffffff;
    color: var(--gleted-base);
    box-shadow: 0 0 20px rgba(183, 153, 255, 0.3);
}

.btn-custom-b {
    padding: 0.5rem;
    background-color: var(--gleted-base);
    color: #ffffff;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-custom-b:hover {
    background-color: var(--gleted-light);
    color: var(--gleted-base);
    box-shadow: 0 0 20px rgba(183, 153, 255, 0.3);
}

/* =========================================================================
    3. Hero Section y Efectos Visuales
    ========================================================================= */

/* Fondo Gradiente Principal */
.gradient-bg {
    background: radial-gradient(circle at top right, #1e3a8a 0%, #071952 40%, #050f33 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}
.gradient-bg-footer {
    background: radial-gradient(circle at top right, #B799FF 0%, #071952 40%, #050f33 100%);
    position: relative;
    overflow: hidden;
}

/* Efecto de Resplandor Flotante */
.glow-effect {
    position: absolute;
    top: 80px;
    right: -80px;
    width: 384px;
    height: 384px;
    background-color: var(--gleted-accent);
    border-radius: 50%;
    mix-blend-mode: screen; /* Efecto de luz */
    filter: blur(100px);
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.3; }
}

/* Badge/Etiqueta Superior */
.badge-custom {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gleted-accent);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Título con Gradiente de Color */
.text-gradient {
    background: linear-gradient(to right, var(--gleted-accent), #bfdbfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(183, 153, 255, 0.4);
}

/* Botón Principal (Acento) */
.btn-primary-custom {
    background-color: var(--gleted-accent);
    color: var(--gleted-base);
    font-weight: bold;
    box-shadow: 0 0 20px rgba(183, 153, 255, 0.3);
    border: none;
}

.btn-primary-custom:hover {
    background-color: #ffffff;
    color: var(--gleted-base);
}

/* Botón Secundario (Outline Glass) */
.btn-outline-custom {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-outline-custom:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Tarjeta Estilo Terminal (Hero) */
.terminal-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.terminal-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}
.dots{
    display: flex;
    height: 30px;
    /*gap: 8px;
    padding: 10px;
    width: fit-content;
    border-radius: 8px;*/
}
.dot-close {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    font-size: 14px; /* Tamaño de fuente para que quepa en 12px */
    font-weight: bold;
    color: transparent; /* Oculto por defecto */
    border: 1px solid rgba(0, 0, 0, 0.1); /* Borde sutil para profundidad */
    cursor: default;
    user-select: none; /* Evita que se seleccione el texto */
    transition: color 0.1s ease-in;
    background-color: #FF321B;
    border-color: #FF321B;
    margin: 10px 5px 0px 5px;
}

.dot-close:hover {
    color: rgba(0, 0, 0, 0.6);
}

/* Efecto de Esqueleto (Simulación de código) */
.skeleton-line {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-bottom: 12px;
}

.skeleton-accent {
    background-color: rgba(183, 153, 255, 0.5);
}

.terminal-box {
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.box-blue {
    background-color: rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

.box-purple {
    background-color: rgba(88, 28, 135, 0.3);
    border: 1px solid rgba(183, 153, 255, 0.3);
    color: var(--gleted-accent);
}

/* =========================================================================
    4. Servicios (Ecosistema)
    ========================================================================= */

.service-card {
    background: radial-gradient(circle at top right, #1e3a8a 0%, #071952 40%, #050f33 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    transition: all 0.3s;
    margin: 8px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
}

.service-card:hover {
    transform: scale(1.03) translate(-1%, -1%); /* Reducción de escala para menos agresividad */
    cursor: pointer;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.icon-purple {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--gleted-accent);
}

.service-link {
    color: var(--gleted-accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.service-link:hover {
    color: #ffffff;
}

/* =========================================================================
    5. Testimonios
    ========================================================================= */

.testimonial-split-card {
    background: linear-gradient(145deg, rgba(10, 35, 112, 0.4) 0%, rgba(7, 25, 82, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--gleted-accent); /* Acento lateral */
    border-radius: 12px;
    overflow: hidden;
}

.testimonial-img-container {
    height: 100%;
    min-height: 250px;
    position: relative;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
}

/* Indicadores estilo "puntos" personalizados */
.carousel-indicators [data-bs-target] {
    background-color: var(--gleted-accent);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* =========================================================================
    6. CTA y Parallax
    ========================================================================= */

/* CTA Section */
.cta-section {
    background-color: var(--gleted-accent);
    padding: 5rem 0;
}

/* Parallax */
.parallax-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    z-index: 1;
}
.parallax-container{
    position: relative;
    height:40vh; 
    overflow: hidden; 
}
.parallax {
    position: absolute;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    margin: 0 auto;
}
.parallax-content{
    background-color: rgba(231, 237, 253, 0.92);
    height: 40vh;
    width: 100%;
    position: absolute;
    z-index: 2;
    display: flex; /* Añadido para centrar contenido */
    align-items: center;
}

/* =========================================================================
    7. Footer y Botón Flotante
    ========================================================================= */


/* Bottom float WA */
.float-wa{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    z-index:100;
    box-shadow: 0 0 0 0 rgba(183, 153, 255, 0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(183, 153, 255, 1); }
    70% { box-shadow: 0 0 0 10px rgba(183, 153, 255, 0); }
    100% { box-shadow: 0 0 0 20px rgba(183, 153, 255, 0); } /* Reducción a 20px */
}
.map-container {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 256px;
    position: relative;
    background-color: #1f2937;
}
.map-filter {
    filter: grayscale(100%) invert(90%) hue-rotate(200deg) contrast(90%);
    opacity: 0.7;
    transition: opacity 0.5s;
}

.map-filter:hover {
    opacity: 1;
}

/* =========================================
    Variables de Diseño GLETED
    ========================================= */
:root {
    --gleted-base: #071952;
    --gleted-dark: #050f33;
    --gleted-accent: #B799FF;
    --gleted-accent-hover: #9670ff;
    --gleted-light: #E7EDFD;
    --gleted-text-muted: #9ca3af;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f3f4f6; /* Solo para visualización si está aislado */
}

/* =========================================
    Footer GLETED (Estructura Adaptada)
    ========================================= */
footer {
    background-color: var(--gleted-dark);
    /* Gradiente sutil para profundidad */
    background: radial-gradient(circle at top right, #1e3a8a 0%, #050f33 60%, #020617 100%);
    color: #ffffff;
    padding: 5rem 0 2rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Efecto de luz ambiental (Glow) */
footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(183, 153, 255, 0.08) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Títulos de Sección */
footer h3, footer h4 {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

footer h3 { font-size: 1.5rem; }
footer h4 { 
    font-size: 1.1rem; 
    text-transform: uppercase;
    color: var(--gleted-accent); /* Acento en subtítulos */
    border-bottom: 2px solid rgba(183, 153, 255, 0.3);
    display: inline-block;
    padding-bottom: 0.5rem;
}

/* Listas y Enlaces */
footer ul {
    padding-left: 0;
    list-style: none;
}

footer ul li {
    margin-bottom: 0.8rem;
}

footer a {
    color: var(--gleted-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

footer a:hover {
    color: var(--gleted-accent);
    padding-left: 5px; /* Efecto de desplazamiento */
}

/* Iconos de Información */
.info-list li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--gleted-text-muted);
}

.info-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--gleted-accent);
}

/* Botón Personalizado (Reemplazo del Red Btn) */
.btn-gleted {
    background-color: var(--gleted-accent);
    color: var(--gleted-base);
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s;
    margin-top: 1rem;
    display: inline-block;
}

.btn-gleted:hover {
    background-color: #ffffff;
    color: var(--gleted-base);
    box-shadow: 0 0 15px rgba(183, 153, 255, 0.5);
}

/* Redes Sociales */
.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-icon:hover {
    background: var(--gleted-accent);
    color: var(--gleted-base);
    transform: scale(1.1);
}

/* Tabla de Horarios */
.table-hours {
    width: 100%;
    color: var(--gleted-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.table-hours td {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-hours td:first-child {
    color: #ffffff;
    font-weight: 500;
}

.table-hours td:first-child i {
    color: var(--gleted-accent);
    margin-right: 8px;
}

.table-hours td:last-child {
    text-align: right;
}

/* Logos Footer */
.footer-logos img {
    opacity: 0.5;
    transition: opacity 0.3s;
    filter: grayscale(100%);
    max-width: 50px;
    margin-right: 5px;
}

.footer-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Copyright Section */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: var(--gleted-text-muted);
}

.footer-bottom a {
    color: var(--gleted-text-muted);
}

.footer-bottom a:hover {
    color: #fff;
    text-decoration: underline;
}


/*Desarrollo*/


body {
    background-color: var(--gleted-base);
    color: #e5e7eb;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}



.btn-quote {
    background-color: var(--gleted-accent);
    color: white;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-quote:hover {
    background-color: var(--gleted-accent-hover);
    color: white;
}

/* Header */
.header-section {
    padding-top: 8rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, #1f2937 1px, transparent 1px),
        linear-gradient(to bottom, #1f2937 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
}

.glow-blob {
    position: absolute;
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background-color: var(--gleted-accent);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
}

.badge-area {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gleted-accent);
    background-color: rgba(183, 153, 255, 0.1);
    border: 1px solid rgba(183, 153, 255, 0.2);
    border-radius: 50px;
}

.text-gradient {
    background: linear-gradient(to right, var(--gleted-accent), #d8b4fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(183, 153, 255, 0.5);
}

/* Tech Stack Section */
.tech-section {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
}

.tech-stack {
    opacity: 0.7;
    filter: grayscale(1);
    transition: all 0.5s;
}

.tech-stack:hover {
    opacity: 1;
    filter: grayscale(0);
}

.tech-item {
    font-size: 1.25rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Glass Panel */
.glass-panel {
    background: rgba(14, 42, 122, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
}

.glass-panel:hover {
    border-color: rgba(183, 153, 255, 0.5);
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(183, 153, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gleted-accent);
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.glass-panel:hover .service-icon {
    transform: scale(1.1);
}

/* Timeline Section */
.timeline-section {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 5rem 0;
}

.timeline {
    position: relative;
    border-left: 2px solid rgba(183, 153, 255, 0.3);
    margin-left: 1.5rem;
}

@media (min-width: 768px) {
    .timeline {
        margin-left: 0;
    }
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .timeline-item {
        padding-left: 0;
    }
}

.timeline-dot {
    position: absolute;
    left: -10px;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--gleted-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gleted-accent);
}

.timeline-dot-outline {
    background-color: var(--gleted-base);
    border: 2px solid var(--gleted-accent);
    box-shadow: none;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-color: rgba(30, 58, 138, 0.2);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.btn-cta {
    background-color: var(--gleted-accent);
    color: var(--gleted-base);
    font-weight: bold;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-cta:hover {
    box-shadow: 0 0 20px var(--gleted-accent);
    transform: scale(1.05);
    color: var(--gleted-base);
}


