/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

:root {
    /* Backgrounds */
    --bg-primary: #000000;
    --bg-secondary: #09090B;
    --bg-tertiary: #18181B;

    /* Primary Accent: Cian (#06B6D4) */
    --primary-50:  #ECFEFF;
    --primary-100: #CFFAFE;
    --primary-200: #A5F3FC;
    --primary-300: #67E8F9;
    --primary-400: #22D3EE;
    --primary-500: #06B6D4;
    --primary-600: #0891B2;
    --primary-700: #0E7490;
    --primary-800: #155E75;
    --primary-900: #164E63;
    --primary-rgb: 6, 182, 212;

    /* Texts */
    --text-primary: #FFFFFF;
    --text-secondary: #E4E4E7;
    --text-tertiary: #A1A1AA;
    --text-quaternary: #71717A;

    /* Accents */
    --success: #22C55E;
    --info: #3B82F6;
    --warning: #F59E0B;
    
    /* Variables Tipografía */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    background-image: radial-gradient(ellipse at top, rgba(var(--primary-rgb), 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-primary);
}

h1 { font-size: 76px; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: 48px; font-weight: 700; line-height: 1.2; }
h3 { font-size: 24px; font-weight: 600; line-height: 1.3; }
.body-large { font-size: 20px; font-weight: 400; line-height: 1.6; color: var(--text-secondary); }
.label { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-quaternary); }

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

/* -----------------------
   COMPONENTES CORE
------------------------ */
.glass-card {
    background: linear-gradient(
        135deg,
        rgba(var(--primary-rgb), 0.08) 0%,
        rgba(var(--primary-rgb), 0.04) 50%,
        rgba(var(--primary-rgb), 0.08) 100%
    );
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.3),
        0 2px 4px -2px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.35);
    transform: translateY(-4px);
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--primary-600) 0%,
        var(--primary-500) 30%,
        var(--primary-400) 60%,
        var(--primary-500) 100%
    );
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: #ffffff;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 0 1px rgba(var(--primary-rgb), 0.5),
        0 4px 24px rgba(var(--primary-rgb), 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.1);
    box-shadow: 
        0 0 0 2px rgba(var(--primary-rgb), 0.8),
        0 8px 40px rgba(var(--primary-rgb), 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(var(--primary-rgb), 0.5);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: rgba(var(--primary-rgb), 0.1);
    border-color: var(--primary-500);
}

.glow-primary {
    filter: drop-shadow(0 0 20px rgba(var(--primary-rgb), 0.6))
            drop-shadow(0 0 40px rgba(var(--primary-rgb), 0.4))
            drop-shadow(0 0 60px rgba(var(--primary-rgb), 0.3));
}

.glow-text {
    text-shadow: 
        0 0 10px rgba(var(--primary-rgb), 0.8),
        0 0 20px rgba(var(--primary-rgb), 0.6),
        0 0 40px rgba(var(--primary-rgb), 0.4);
}

/* -----------------------
   NAVBAR
------------------------ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--text-primary);
}
.nav-logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(var(--primary-rgb), 0.8));
}
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-500);
    transition: width 0.3s ease;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* -----------------------
   HERO SECTION
------------------------ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 24px 60px;
    overflow: hidden;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
    color: var(--primary-300);
    font-weight: 600;
    font-size: 14px;
}
.hero h1 {
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFF 0%, var(--text-tertiary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    font-size: 64px;
}
.hero-subtitle {
    margin-bottom: 40px;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    animation: scale-in 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.6s forwards;
    opacity: 0;
}
.hero-visual {
    position: relative;
    perspective: 1000px;
}
.sphere {
    width: 450px;
    height: 450px;
    position: relative;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sphere img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(var(--primary-rgb), 0.4);
    box-shadow: 
        0 0 40px rgba(var(--primary-rgb), 0.2),
        inset 0 0 40px rgba(var(--primary-rgb), 0.3);
    animation: fade-in-rotate 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* -----------------------
   PARTICLE SYSTEM
------------------------ */
#particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-400);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-500);
    animation: float-particle 20s infinite ease-in-out;
    opacity: 0;
}

/* -----------------------
   ABOUT ME
------------------------ */
.about-me {
    padding: 120px 24px;
    position: relative;
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.9);
}
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 24px;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.6);
}
.about-content h2 {
    margin-bottom: 24px;
}
.about-content p {
    margin-bottom: 24px;
    color: var(--text-secondary);
}

/* -----------------------
   SERVICES FLIP CARDS
------------------------ */
.services-section {
    padding: 120px 24px;
    background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card-flip {
    perspective: 1000px;
    height: 480px; /* Tamaño rígido para evitar reflows */
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}
.service-card-flip:hover { z-index: 10; } /* Evita empujes accidentales */
.service-card-flip:hover .service-card-inner,
.service-card-flip.is-flipped .service-card-inner {
    transform: rotateY(180deg);
}
.service-card-front, .service-card-back {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 24px;
    overflow: hidden;
}
.service-card-front {
    background: var(--bg-tertiary);
}
.service-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.7;
}
.service-card-flip:hover .service-card-front img {
    transform: scale(1.05);
}
.service-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 24px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
    text-align: left;
}
.service-title-front {
    color: #fff;
    margin: 0;
    font-size: 22px;
}
.service-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    text-align: center;
}
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.feature-tag {
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary-300);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* -----------------------
   SHOWCASE / WORKFLOW
------------------------ */
.showcase {
    padding: 120px 24px;
    background: var(--bg-secondary);
}
.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.showcase-visual {
    position: relative;
    z-index: 10;
}
.showcase-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.showcase-floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--bg-primary);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    animation: float 5s ease-in-out infinite alternate;
}

/* -----------------------
   TESTIMONIALS
------------------------ */
.testimonials {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.testimonial-card {
    position: relative;
}
.quote-icon {
    font-size: 60px;
    color: rgba(var(--primary-rgb), 0.15);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    font-family: serif;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.2);
    border: 2px solid var(--primary-500);
}
.stars {
    color: var(--warning);
    margin-bottom: 12px;
}

/* -----------------------
   CTA FINAL
------------------------ */
.cta-final {
    padding: 160px 24px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.15) 0%, transparent 60%);
}
.cta-final h2 {
    font-size: 64px;
    margin-bottom: 24px;
}
.pulse-btn {
    animation: pulse-glow 3s ease-in-out infinite;
    font-size: 20px;
    padding: 20px 40px;
    margin-top: 40px;
}

/* -----------------------
   FOOTER
------------------------ */
footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 24px 40px;
    background: var(--bg-secondary);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 24px;
}
.footer-logo img {
    height: 32px;
}
.footer-links h4 {
    margin-bottom: 24px;
    color: var(--text-primary);
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--text-tertiary);
}
.footer-links a:hover {
    color: var(--primary-400);
}
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: var(--text-quaternary);
}

/* -----------------------
   ANIMACIONES
------------------------ */
@keyframes fade-in-up {
    0% { transform: translateY(40px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
@keyframes scale-in {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
    75% { transform: translateY(-30px) rotate(1deg); }
}
@keyframes fade-in-rotate {
    0% { transform: scale(0.8) rotate(-10deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes float-particle {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    25% { transform: translate(100px, -100px); opacity: 0.8; }
    50% { transform: translate(-50px, -200px); opacity: 0.6; }
    75% { transform: translate(-100px, -100px); opacity: 0.8; }
}
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 0 0 1px rgba(var(--primary-rgb), 0.5),
            0 4px 24px rgba(var(--primary-rgb), 0.4),
            0 0 60px rgba(var(--primary-rgb), 0.3);
    }
    50% {
        box-shadow: 
            0 0 0 2px rgba(var(--primary-rgb), 0.8),
            0 8px 40px rgba(var(--primary-rgb), 0.6),
            0 0 80px rgba(var(--primary-rgb), 0.5);
    }
}
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Utility Classes for Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}
.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* -----------------------
   RESPONSIVE BREAKPOINTS
------------------------ */
@media (min-width: 1440px) {
    .hero-container, .nav-container, .about-container, .services-grid, .showcase-container, .testimonials-grid, .footer-container {
        max-width: 1300px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .hero h1 { font-size: 54px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { align-items: center; }
    .hero-ctas { justify-content: center; }
    .sphere { width: 350px; height: 350px; margin: 0 auto; }
    .about-container { grid-template-columns: 1fr; text-align: center; }
    .about-image { max-width: 400px; margin: 0 auto; }
    .showcase-container { grid-template-columns: 1fr; }
    .showcase-content { text-align: center; margin-bottom: 40px; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .body-large { font-size: 16px; }
    h2 { font-size: 36px; }
    h3 { font-size: 20px; }
    .hero h1 { font-size: 36px; }
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-toggle { display: flex; padding: 10px; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-content { align-items: center; }
    .hero-ctas { flex-direction: column; width: 100%; gap: 12px; }
    .hero-ctas button, .hero-ctas a { width: 100%; }
    .sphere { width: 280px; height: 280px; margin: 0 auto; }
    .about-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .about-image { max-width: 300px; margin: 0 auto; }
    .services-grid { grid-template-columns: 1fr; gap: 24px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
    .showcase-container { grid-template-columns: 1fr; gap: 40px; }
    .cta-final h2 { font-size: 32px; }
    .footer-container { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer-brand { align-items: center; display: flex; flex-direction: column; }
    .footer-logo { justify-content: center; }
    .particle:nth-child(n+15) { display: none; }
    .service-card-flip { height: 400px; } /* Ajuste de altura en móviles */
    .btn-primary, .btn-outline { padding: 14px 24px; font-size: 15px; } /* Botones más amigables */
}

/* -----------------------
   MODAL FORMULARIO
------------------------ */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    display: none; /* Oculta el formulario por defecto */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
}
.modal-content {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 95%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    padding: 32px 24px;
}
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-track {
    background: transparent;
}
.modal-content::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgb), 0.3);
    border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--primary-rgb), 0.5);
}
.modal-overlay.active .modal-content {
    transform: translateY(0);
}
.close-modal {
    position: absolute;
    top: 16px; right: 16px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}
.close-modal:hover { color: var(--primary-500); }
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
}
.form-group select option {
    background: #1a1a1a;
    color: var(--text-primary);
}
