:root {
    --black: #0a0a0a;
    --dark-gray: #121212;
    --neon-pink: #ff00ff;
    --neon-blue: #00bfff;
    --neon-pink-shadow: rgba(255, 0, 255, 0.7);
    --neon-blue-shadow: rgba(0, 191, 255, 0.7);
    --text-color: #f0f0f0;
}

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

body {
    background-color: var(--black);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Matrix Background */
.matrix-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: calc(100vh - 100px);
}

/* Header & Glitch Effect */
header {
    text-align: center;
    padding: 60px 0 30px;
}

h1 {
    font-family: 'Space Mono', monospace;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.glitch {
    position: relative;
    color: var(--text-color);
    letter-spacing: 5px;
    text-shadow: 0 0 5px var(--neon-pink-shadow), 0 0 10px var(--neon-blue-shadow);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-pink);
    animation: glitch-effect 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 var(--neon-blue);
    animation: glitch-effect 3s infinite linear alternate-reverse;
}

@keyframes glitch-effect {
    0% {
        clip-path: inset(30% 0 40% 0);
    }
    20% {
        clip-path: inset(80% 0 1% 0);
    }
    40% {
        clip-path: inset(43% 0 27% 0);
    }
    60% {
        clip-path: inset(25% 0 58% 0);
    }
    80% {
        clip-path: inset(13% 0 75% 0);
    }
    100% {
        clip-path: inset(0 0 100% 0);
    }
}

.subtitle {
    font-family: 'Space Mono', monospace;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    letter-spacing: 3px;
    text-shadow: 0 0 5px var(--neon-blue-shadow);
    opacity: 0.8;
    margin-top: 5px;
    display: block;
}

.inline-subtitle {
    display: none;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 30px 20px;
}

.hero-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.3rem);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
}

.highlight {
    color: var(--neon-blue);
    position: relative;
    font-weight: 700;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-pink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* CTA Button */
.cta-container {
    margin: 40px 0;
    text-align: center;
}

.neon-button {
    display: inline-block;
    padding: 15px 30px;
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-color);
    background-color: transparent;
    border: 2px solid var(--neon-pink);
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--neon-pink-shadow);
    text-shadow: 0 0 5px var(--neon-pink-shadow);
    cursor: pointer;
}

.neon-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 0, 255, 0.2),
        transparent
    );
    transition: all 0.6s;
}

.neon-button:hover {
    background-color: var(--neon-pink);
    color: var(--dark-gray);
    box-shadow: 0 0 20px var(--neon-pink);
}

.neon-button:hover::before {
    left: 100%;
}

/* Services Section */
.services {
    padding: 60px 0;
}

.services h2 {
    text-align: center;
    font-family: 'Space Mono', monospace;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 40px;
    color: var(--neon-blue);
    letter-spacing: 2px;
    text-shadow: 0 0 5px var(--neon-blue-shadow);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon {
    width: 100%;
    height: 100%;
    fill: var(--neon-blue);
    transition: fill 0.3s ease;
}

.service-card:hover .icon {
    fill: var(--neon-pink);
}

.service-card h3 {
    text-align: center;
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-card p {
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.8;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--neon-blue);
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--neon-pink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--neon-pink);
}

.service-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* WhatsApp Card Section */
.whatsapp-card-section {
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.whatsapp-card {
    max-width: 500px;
    background-color: rgba(25, 25, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.whatsapp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.whatsapp-card:hover::before {
    transform: scaleX(1);
}

.whatsapp-card-btn {
    margin: 20px auto 0;
    font-size: 0.9rem;
    padding: 10px 20px;
    display: inline-block;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(10, 10, 10, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    width: 30px;
    height: 30px;
    fill: var(--text-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    fill: var(--neon-pink);
    transform: translateY(-3px);
}

footer p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.5;
}

.contact-email {
    font-size: 0.85rem;
    margin-top: 10px;
}

.contact-email a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: var(--neon-pink);
}

/* Logo Styles */
.logo-container {
    margin-bottom: 20px;
}

.site-logo {
    max-width: 120px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px var(--neon-blue-shadow);
}

@media (max-width: 768px) {
    .site-logo {
        max-width: 100px;
    }
    .inline-subtitle {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    header {
        padding: 40px 0 20px;
    }
    
    .hero {
        padding: 20px 15px;
    }
    
    .services {
        padding: 40px 0;
    }
    
    .service-cards {
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .whatsapp-card-section {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .neon-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .whatsapp-card-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    .matrix-background canvas {
        opacity: 0.4;
    }
    .whatsapp-card {
        padding: 20px 15px;
    }
    
    .whatsapp-card-btn {
        width: 100%;
        text-align: center;
    }
}

/* Service Detail Pages */
.back-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--neon-blue);
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--neon-pink);
    transform: translateX(-5px);
}

.service-detail {
    background-color: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px;
    margin: 30px 0;
}

.large-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.service-title {
    text-align: center;
    font-family: 'Space Mono', monospace;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 40px;
    color: var(--neon-blue);
    letter-spacing: 2px;
    text-shadow: 0 0 5px var(--neon-blue-shadow);
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-content h3 {
    font-family: 'Space Mono', monospace;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin: 40px 0 20px;
    color: var(--neon-pink);
    letter-spacing: 1px;
}

.service-content h4 {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

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

.service-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-family: 'Space Mono', monospace;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background-color: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.2);
}

.process-list {
    counter-reset: process;
    list-style: none;
    margin: 30px 0;
}

.process-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.process-step {
    font-family: 'Space Mono', monospace;
    color: var(--neon-pink);
    margin-right: 15px;
    font-weight: bold;
}

.process-title {
    font-weight: bold;
    color: var(--neon-blue);
}

.process-container {
    margin: 30px 0;
}

.process-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.process-number {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.process-content {
    flex: 1;
}

@media (max-width: 768px) {
    .service-detail {
        padding: 30px 20px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .process-item {
        flex-direction: column;
    }
    
    .process-number {
        margin-bottom: 15px;
    }
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(20, 20, 20, 0.95);
    border-top: 1px solid var(--neon-pink);
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 900px;
    text-align: center;
    margin-bottom: 15px;
}

.cookie-consent-title {
    font-family: 'Space Mono', monospace;
    color: var(--neon-blue);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.cookie-consent-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cookie-button {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--neon-blue);
    color: var(--black);
}

.cookie-accept:hover {
    background-color: var(--neon-pink);
    transform: translateY(-2px);
}

.cookie-reject {
    background-color: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--text-color);
}

.cookie-reject:hover {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.cookie-policy-link {
    color: var(--neon-pink);
    text-decoration: none;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.cookie-policy-link:hover {
    color: var(--neon-blue);
    text-decoration: underline;
}

.cookie-policy-content {
    line-height: 1.8;
    padding: 20px;
}

.cookie-policy-content h3 {
    color: var(--neon-blue);
    margin: 30px 0 15px;
    font-family: 'Space Mono', monospace;
}

.cookie-policy-content p, 
.cookie-policy-content ul, 
.cookie-policy-content ol {
    margin-bottom: 20px;
}

.cookie-policy-content ul, 
.cookie-policy-content ol {
    padding-left: 20px;
}

.cookie-policy-content li {
    margin-bottom: 8px;
}

.updated-date {
    font-style: italic;
    color: var(--neon-pink);
    font-size: 0.9rem;
    margin-top: 40px;
}

/* Additional Mobile Responsiveness */
@media (max-width: 480px) {
    .service-detail {
        padding: 20px 15px;
    }
    
    .feature-grid {
        gap: 15px;
    }
    
    .process-list li {
        flex-direction: column;
    }
    
    .process-step {
        margin-bottom: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 200px;
        gap: 10px;
    }
    
}

@media (min-width: 481px) and (max-width: 768px) {
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-consent-content {
        margin-bottom: 10px;
    }
}

/* Contact Form Styles */
.contact-form {
    max-width: 800px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: var(--neon-blue);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--neon-pink);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--neon-blue);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--neon-blue);
    border-color: var(--neon-blue);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-button {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 20px;
    width: auto;
    min-width: 200px;
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .submit-button {
        width: 100%;
    }
}