:root {
    --bg-base: #050505;
    --bg-surface: #111111;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent-color: #00e5ff; /* Sleek electric blue */
    --accent-hover: #00b4cc;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-base);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-nav {
    padding: 0.6rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 0.8rem;
}

.btn-nav:hover {
    background-color: var(--accent-color);
    color: var(--bg-base);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.btn-massive {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #000;
    margin-top: 2rem;
}
.btn-massive:hover {
    background: var(--accent-color);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #161a22 0%, #050505 100%);
    text-align: center;
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,229,255,0.1) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
}

.glitch-text {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Services */
.services {
    padding: 8rem 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 229, 255, 0.3);
}

.card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0,229,255,0.15) 0%, rgba(0,0,0,0) 70%);
    transition: transform 0.5s ease;
}

.service-card:hover .card-glow {
    transform: scale(2);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Why Us */
.why-us {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-base) 100%);
}

.why-grid {
    display: flex;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.why-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.benefits li {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.benefits span {
    color: var(--accent-color);
    margin-right: 10px;
    letter-spacing: -2px;
}

/* Contact CTA */
.contact {
    padding: 4rem 0 8rem;
}

.cta-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 100%);
    border: 1px solid var(--border-color);
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 4px;
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-surface);
}

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

.footer-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-content p a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content p a:hover {
    color: var(--accent-color);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Work Section */
.work {
    padding: 8rem 0;
    background-color: var(--bg-base);
    border-top: 1px solid var(--border-color);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.work-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    grid-column: span 2;
    cursor: pointer;
}

.work-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.work-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.05);
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 2px;
    overflow: hidden;
    background: #000;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    container-type: inline-size;
}

.work-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: clamp(0.25rem, 4cqw, 1rem);
    left: clamp(0.25rem, 4cqw, 1rem);
    z-index: 2;
}

.video-tag {
    background: rgba(5, 5, 5, 0.75);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.25em 0.6em;
    font-size: clamp(0.55rem, 5.2cqw, 0.75rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    white-space: nowrap;
}

.work-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.work-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Booking Section */
.booking {
    padding: 8rem 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}

.booking-card {
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    border-radius: 4px;
    position: relative;
}

.booking-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
}

.calculator-group {
    margin-bottom: 2rem;
}

.group-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Vehicle Size Options */
.vehicle-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.vehicle-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.vehicle-card input {
    display: none; /* Hide native radio */
}

.vehicle-card .size-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.vehicle-card .size-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.vehicle-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.vehicle-card.active {
    border-color: var(--accent-color);
    background: rgba(0, 229, 255, 0.03);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.08);
}

/* Service Checkbox Options */
.service-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-option-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s ease;
}

.service-option-card input {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    background: var(--bg-base);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.service-option-card input:checked {
    border-color: var(--accent-color);
    background: var(--accent-color);
}

.service-option-card input:checked::after {
    content: "✓";
    color: var(--bg-base);
    font-weight: 900;
    font-size: 0.75rem;
}

.service-option-card .option-title {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.service-option-card .option-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.service-option-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.service-option-card.active {
    border-color: var(--accent-color);
    background: rgba(0, 229, 255, 0.03);
}

/* Condition Option Checkboxes */
.condition-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
}

.condition-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 0.8rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.condition-card input {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    background: var(--bg-base);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.condition-card input:checked {
    border-color: var(--accent-color);
    background: var(--accent-color);
}

.condition-card input:checked::after {
    content: "✓";
    color: var(--bg-base);
    font-weight: 900;
    font-size: 0.7rem;
}

.condition-card .option-title {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.condition-card .option-desc {
    display: block;
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.condition-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.condition-card.active {
    border-color: var(--accent-color);
    background: rgba(0, 229, 255, 0.03);
}


/* Estimate Display Box */
.estimate-box {
    margin-top: 2.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-left: 3px solid var(--accent-color);
}

.estimate-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-display {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
}

.price-display .currency {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-right: 2px;
    margin-top: 4px;
}

.discount-note {
    width: 100%;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.form-group input {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 0.9rem 1.2rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Contact Method Radios */
.contact-method-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.method-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 0.8rem;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.method-card input {
    display: none;
}

.method-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.method-card.active {
    border-color: var(--accent-color);
    background: rgba(0, 229, 255, 0.03);
    color: var(--accent-color);
}

.form-disclaimer {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    border-left: 2px solid var(--accent-color);
    padding-left: 0.8rem;
}

.btn-submit {
    width: 100%;
    margin-top: 1.5rem;
    font-size: 1rem;
    padding: 1rem;
}

/* Success Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease forwards;
}

.modal-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 3rem;
    max-width: 500px;
    width: 90%;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 229, 255, 0.1);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.modal-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #fff;
}

.modal-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.modal-card .btn {
    min-width: 150px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

/* Standalone Booking Layout and CTA */
.booking-body {
    padding: 10rem 0 6rem;
    min-height: 80vh;
}

a.logo {
    color: inherit;
    text-decoration: none;
}

.booking-cta {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-base) 0%, rgba(0, 229, 255, 0.02) 100%);
    border-top: 1px solid var(--border-color);
}

.booking-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .glitch-text { font-size: 3rem; }
    .section-title { font-size: 2rem; }
    .nav-links, .btn-nav { display: none; }
    .hero-actions { flex-direction: column; }
    .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
    .container {
        padding: 0 1rem;
    }
    .work-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
        max-width: 100%;
        margin: 0 auto;
    }
    .work-card {
        grid-column: span 2;
        padding: 0.75rem;
    }
    .work-card:nth-child(4) {
        grid-column: span 2;
    }
    .work-card:nth-child(5) {
        grid-column: 2 / span 2;
    }
    .work-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }
    .work-card p {
        display: none;
    }
    .video-container {
        margin-bottom: 0.5rem;
    }
    .video-tag {
        letter-spacing: 0.5px;
    }
    .booking {
        padding: 6rem 0;
    }
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .booking-card {
        padding: 2rem 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-method-options {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .vehicle-options, .condition-options {
        grid-template-columns: 1fr;
    }
    .modal-card {
        padding: 3rem 1.5rem;
    }
}

/* Video Lightbox Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(5, 5, 5, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--text-primary);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    z-index: 2001;
    transition: color 0.3s ease, transform 0.3s ease;
}

.video-modal-close:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 450px;
    max-height: 80vh;
    aspect-ratio: 9 / 16;
    animation: zoomIn 0.3s ease;
}

#modalVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 35px rgba(0, 229, 255, 0.15);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

