:root {
    --bg-color: #111;
    --text-color: #fff;
    --neon-blue: #00f3ff;
    --neon-pink: #ff00ff;
    --card-bg: rgba(0, 0, 0, 0.7);
    --shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 18px;
}

/* Background Image - Dark & Blurred */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('imágenes/fondo.png') no-repeat center center/cover;
    z-index: -1;
    filter: brightness(0.4) blur(3px);
    transform: scale(1.05);
}

/* Navigation Tabs */
.tab-nav {
    display: flex;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
    backdrop-filter: blur(10px);
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 10px 24px;
    margin: 0 10px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 15px var(--neon-blue);
}

/* Header & Logo */
header {
    padding: 3rem 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container {
    margin-bottom: 1.5rem;
}

/* Logo Animation */
@keyframes logo-pulse {
    0% {
        filter: drop-shadow(0 0 10px var(--neon-blue));
    }

    50% {
        filter: drop-shadow(0 0 20px var(--neon-pink));
    }

    100% {
        filter: drop-shadow(0 0 10px var(--neon-blue));
    }
}

.logo-3d {
    width: 220px;
    height: auto;
    animation: logo-pulse 3s infinite ease-in-out;
}

/* Title Animation */
@keyframes pulse {
    0% {
        opacity: 0.8;
        text-shadow: 0 0 4px black, 0 0 8px #00ffff;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 4px black, 0 0 16px #00ffff, 0 0 20px #00ffff;
    }

    100% {
        opacity: 0.8;
        text-shadow: 0 0 4px black, 0 0 8px #00ffff;
    }
}

.main-title-3d {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    color: #00ffff;
    /* Animation applied here */
    animation: pulse 3s infinite ease-in-out;
    -webkit-text-stroke: 0;
}

.header-image-container {
    margin-bottom: 2rem;
}

.header-image {
    width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

/* Main Content Container */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Styling */
section {
    background: var(--card-bg);
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

h2,
h3 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.section-title-neon {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 2rem;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 2px solid var(--neon-blue);
    padding-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--neon-blue);
}

/* How It Works Section */
.how-it-works {
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.video-column h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #fff;
}

/* Video Container for YouTube Embeds */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    background: #000;
    border: 1px solid var(--neon-blue);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    margin-bottom: 1rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Hero Section */
.hero {
    text-align: center;
}

.hero-description,
.hero-details {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ddd;
    font-weight: 500;
}

/* Specs Section */
.specs {
    background: rgba(0, 0, 0, 0.8);
}

.specs h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    border-bottom: 2px solid #fff;
}

.specs-list {
    list-style: none;
    font-size: 1.4rem;
    color: #fff;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.specs-list li {
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
}

.specs-list strong {
    color: var(--neon-blue);
    font-weight: 700;
    margin-right: 1rem;
}

/* Pricing Section */
.pricing {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
}

.price-tag {
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 10px var(--neon-blue);
}

.installments {
    display: block;
    font-size: 1.5rem;
    color: var(--neon-blue);
    font-weight: 600;
    margin-top: 0.5rem;
}

.shipping {
    color: #aaa;
    font-size: 1.2rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    background: #000;
    color: #888;
    font-size: 1rem;
    margin-top: 3rem;
    border-top: 1px solid #333;
}

/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    z-index: 100;
}

/* Contact Button (INFO) */
.contact-btn {
    background-color: #000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    /* Initial Blue Glow */
    transition: all 0.3s ease;
    border: 1px solid var(--neon-blue);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px var(--neon-pink);
    /* Pink Glow on Hover */
    border-color: var(--neon-pink);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

.btn-title {
    font-weight: 700;
    font-size: 1rem;
}

/* WhatsApp Button (Pedir) */
.whatsapp-btn {
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 0 10px var(--neon-blue);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--neon-blue);
}

.whatsapp-btn:hover {
    background-color: #111;
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--neon-pink);
    /* Pink Glow on Hover */
    border-color: var(--neon-pink);
}

/* Specs View & Gallery View Containers */
#specs-view,
#gallery-view {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
}

.specs-content,
.gallery-container {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    backdrop-filter: blur(10px);
}

.specs-image-container {
    margin-top: 3rem;
    text-align: center;
}

.specs-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border: 1px solid #333;
    border-radius: 10px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px var(--neon-blue);
    border-color: var(--neon-blue);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

/* Modal - FIXED */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content img,
.modal-content video {
    max-width: 100%;
    max-height: 90vh;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 30px var(--neon-blue);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
}

/* Modal Navigation */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 4rem;
    cursor: pointer;
    z-index: 2002;
    padding: 20px;
    user-select: none;
    transition: color 0.3s;
}

.modal-nav:hover {
    color: var(--neon-blue);
}

.modal-nav.prev {
    left: 20px;
}

.modal-nav.next {
    right: 20px;
}

/* Utility */
.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .main-title-3d {
        font-size: 2.2rem;
    }

    section {
        padding: 1.5rem;
    }

    /* Keep video grid side-by-side on mobile */
    .video-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .video-column h3 {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .contact-btn {
        padding: 8px 15px;
    }

    .btn-title {
        font-size: 0.9rem;
    }

    .whatsapp-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .specs-list li {
        flex-direction: column;
    }

    .specs-list strong {
        margin-bottom: 0.2rem;
    }

    /* Hide Marquee on Mobile */
    marquee {
        display: none;
    }
}

/* Special Measures Section */
.special-measures {
    background: rgba(173, 216, 230, 0.15);
    /* Soft Light Blue */
    text-align: center;
    border: 1px solid rgba(173, 216, 230, 0.3);
    box-shadow: 0 0 20px rgba(173, 216, 230, 0.1);
}

.special-measures h2 {
    color: #fff;
    text-shadow: 0 0 10px rgba(173, 216, 230, 0.8);
    margin-bottom: 1rem;
}

.special-measures p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-btn-special {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.contact-btn-special:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Comparison Section */
.comparison {
    text-align: center;
    background: #000;
    border: 1px solid var(--neon-blue);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.comparison-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Remove gap for seamless border look */
    margin-bottom: 2rem;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

.comp-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid #444;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comp-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #333;
    transition: background 0.3s ease;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comp-col {
    color: #aaa;
    font-size: 1rem;
}

.comp-col img {
    width: 100%;
    max-width: 180px;
    /* Slightly larger images */
    border-radius: 8px;
    border: 1px solid #333;
}

.transfit-col {
    color: var(--neon-blue);
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
    font-size: 1.1rem;
    position: relative;
}

/* Highlight Transfit Column Background (Optional, subtle) */
.comp-row .transfit-col::after {
    content: '';
    position: absolute;
    top: -15px;
    bottom: -15px;
    left: -10px;
    right: -10px;
    background: rgba(0, 243, 255, 0.03);
    z-index: -1;
    pointer-events: none;
}

.highlight {
    font-size: 1.3rem;
    /* Larger for emphasis */
}

.comp-footer {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 5px var(--neon-blue);
    border: 1px solid var(--neon-blue);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.comp-cta {
    display: inline-block;
    background: #000;
    color: var(--neon-blue);
    padding: 18px 40px;
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--neon-blue);
    border-radius: 50px;
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.4);
    transition: all 0.3s ease;
}

.comp-cta:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 50px var(--neon-blue);
    transform: scale(1.05);
}

/* Nav Icons Base */
.nav-icon {
    display: none;
}

.mobile-comp-label {
    display: block;
    font-size: 11px;
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.text-gray {
    color: #888;
}

/* Mobile Improvements */
@media (max-width: 768px) {

    /* Mobile Nav */
    .tab-nav {
        justify-content: space-evenly;
        padding: 10px 0;
        overflow: hidden;
    }

    .tab-btn {
        width: 20%;
        padding: 5px;
        margin: 0;
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: transparent;
        box-shadow: none;
    }

    .tab-btn:hover,
    .tab-btn.active {
        background: transparent;
        box-shadow: none;
    }

    .nav-text {
        display: none;
    }

    .nav-icon {
        display: flex;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        background: transparent;
        margin-bottom: 0;
    }

    .nav-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Specific Icon Colors */
    .icon-home {
        border: 2px solid var(--neon-blue);
        /* Cyan */
        box-shadow: 0 0 2px var(--neon-blue);
        color: var(--neon-blue);
    }

    .icon-specs {
        border: 2px solid var(--neon-pink);
        /* Fuchsia */
        box-shadow: 0 0 2px var(--neon-pink);
        color: var(--neon-pink);
    }

    .icon-photos {
        border: 2px solid #ff0000;
        /* Neon Red */
        box-shadow: 0 0 2px #ff0000;
        color: #ff0000;
    }

    .icon-contact {
        border: 2px solid #0055ff;
        /* Blue */
        box-shadow: 0 0 2px #0055ff;
        color: #0055ff;
    }

    /* Comparison Mobile Layout */
    .comp-header {
        display: none;
    }

    .comp-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 5px;
        padding: 10px 5px;
        text-align: center;
        border-bottom: 1px solid #333;
        background: transparent;
        box-shadow: none;
        margin-bottom: 0;
        border-radius: 0;
    }

    .comp-row.images {
        align-items: end;
        padding-top: 20px;
    }

    .comp-col {
        font-size: 0.9rem;
        padding: 0;
        width: auto;
        margin-bottom: 0;
    }

    .comp-col img {
        max-width: 100%;
        height: auto;
    }

    .mobile-only {
        display: none;
    }

    /* Labels above photos */
    .mobile-comp-label {
        font-size: 11px;
    }

    .transfit-col .mobile-comp-label {
        font-size: 14px;
        color: var(--neon-blue);
    }

    /* Hide Marquee */
    marquee {
        display: none;
    }

    /* Popup Fix */
    #contact-popup {
        width: 90% !important;
        left: 50% !important;
        transform: translate(-50%, 0) !important;
        bottom: 20px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .comparison {
        padding: 5px !important;
    }

    .comparison-table {
        width: 100% !important;
        table-layout: fixed;
        font-size: 10px !important;
    }

    .comparison-table th {
        font-size: 11px !important;
        padding: 2px !important;
    }

    .comparison-table td {
        padding: 2px !important;
        font-size: 10px !important;
    }

    .comparison-table img {
        width: 100% !important;
        height: auto;
        border-radius: 5px !important;
    }

    .section-title-neon {
        font-size: 1.8rem !important;
        /* Smaller title on mobile */
    }
}

/* Hidden state for floating buttons */
.hidden-buttons {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Contact Modal Styles */
.contact-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background: rgba(10, 10, 10, 0.98);
    border: 3px solid #00f3ff;
    border-radius: 15px;
    padding: 40px 20px;
    z-index: 3000;
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.4);
    text-align: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.contact-modal.hidden {
    display: none;
}

.close-modal-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    color: #ff00ff;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s;
}

.close-modal-btn:hover {
    transform: scale(1.2);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.contact-item {
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item strong {
    color: #00f3ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.contact-item a,
.contact-item span {
    color: white;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.contact-item a:hover {
    color: #00f3ff;
    border: 2px solid var(--neon-pink);
    /* Fuchsia */
    box-shadow: 0 0 2px var(--neon-pink);
    color: var(--neon-pink);
}

.icon-photos {
    border: 2px solid #ff0000;
    /* Neon Red */
    box-shadow: 0 0 2px #ff0000;
    color: #ff0000;
}

.icon-contact {
    border: 2px solid #0055ff;
    /* Blue */
    box-shadow: 0 0 2px #0055ff;
    color: #0055ff;
}

/* Comparison Mobile Layout */
.comp-header {
    display: none;
}

.comp-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    padding: 10px 5px;
    text-align: center;
    border-bottom: 1px solid #333;
    background: transparent;
    box-shadow: none;
    margin-bottom: 0;
    border-radius: 0;
}

.comp-row.images {
    align-items: end;
    padding-top: 20px;
}

.comp-col {
    font-size: 0.9rem;
    padding: 0;
    width: auto;
    margin-bottom: 0;
}

.comp-col img {
    max-width: 100%;
    height: auto;
}

.mobile-only {
    display: none;
}

/* Labels above photos */
.mobile-comp-label {
    font-size: 11px;
}

.transfit-col .mobile-comp-label {
    font-size: 14px;
    color: var(--neon-blue);
}

/* Hide Marquee */
marquee {
    display: none;
}

/* Popup Fix */
#contact-popup {
    width: 90% !important;
    left: 50% !important;
    transform: translate(-50%, 0) !important;
    bottom: 20px !important;
    right: auto !important;
}


@media (max-width: 768px) {
    .comparison {
        padding: 5px !important;
    }

    .comparison-table {
        width: 100% !important;
        table-layout: fixed;
        font-size: 10px !important;
    }

    .comparison-table th {
        font-size: 11px !important;
        padding: 2px !important;
    }

    .comparison-table td {
        padding: 2px !important;
        font-size: 10px !important;
    }

    .comparison-table img {
        width: 100% !important;
        height: auto;
        border-radius: 5px !important;
    }

    .section-title-neon {
        font-size: 1.8rem !important;
        /* Smaller title on mobile */
    }
}

/* Hidden state for floating buttons */
.hidden-buttons {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Contact Modal Styles */
.contact-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background: rgba(10, 10, 10, 0.98);
    border: 3px solid #00f3ff;
    border-radius: 15px;
    padding: 40px 20px;
    z-index: 3000;
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.4);
    text-align: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.contact-modal.hidden {
    display: none;
}

.close-modal-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    color: #ff00ff;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s;
}

.close-modal-btn:hover {
    transform: scale(1.2);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.contact-item {
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item strong {
    color: #00f3ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.contact-item a,
.contact-item span {
    color: white;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.contact-item a:hover {
    color: #00f3ff;
    text-shadow: 0 0 15px #00f3ff;
}

@media (max-width: 480px) {

    .contact-item a,
    .contact-item span {
        font-size: 1.1rem;
        word-break: break-word;
    }

    .contact-modal {
        padding: 30px 15px;
    }
}