:root {
    --primary: #b026ff;
    --secondary: #00f3ff;
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(90deg, #121212, #1e1e1e);
    color: white;
    padding: 0.7rem 0;
    font-size: 0.85rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
    z-index: 10001;
}

.promo-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-banner p {
    margin: 0;
    color: var(--text-gray);
}

.promo-banner a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    margin-left: 5px;
}

.close-banner {
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 1rem;
    line-height: 1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    /* Switched to sticky to work with the banner */
    top: 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Discover Section */
.hero-discover {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-style: italic;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 20;
}

.hero-discover:hover {
    color: var(--secondary);
    transform: translateY(5px);
}

.hero-discover i {
    margin-top: 15px;
    color: var(--secondary);
    animation: bounce 2s infinite;
    display: block;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.logo img {
    border-radius: 10px;
    object-fit: cover;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

nav a:hover,
nav a.active {
    color: var(--primary);
    background: rgba(176, 38, 255, 0.1);
}

.btn-highlight {
    border: 1px solid var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--primary) !important;
}

.btn-highlight:hover {
    background: var(--primary);
    color: white !important;
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.5);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.neon-text {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5), 0 0 20px rgba(0, 243, 255, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
}

.btn.primary:hover {
    background: #c04dff;
    transform: translateY(-2px);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Sections */
.section {
    padding: 5rem 10%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Accordion Styles */
.about-accordion {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--dark-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(176, 38, 255, 0.05);
}

.accordion-header .section-title {
    margin-bottom: 0;
    font-size: 1.8rem;
    left: 0;
    transform: none;
    text-align: left;
}

.accordion-header .section-title::after {
    display: none;
}

.accordion-header i {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.4s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 2rem;
    opacity: 0;
}

.about-accordion.active .accordion-content {
    max-height: 2000px;
    /* Large enough to fit content */
    padding: 2rem;
    opacity: 1;
}

.about-accordion.active .accordion-header i {
    transform: rotate(180deg);
}

/* About Overlay Look */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--dark-card);
    padding: 2rem;
    text-align: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.stat-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* Equipment Carousel */
.equipment-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0.5rem 2rem;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.equipment-carousel::-webkit-scrollbar {
    height: 6px;
}

.equipment-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.equipment-carousel::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.equipment-toggle-card {
    flex: 0 0 280px;
    background: var(--dark-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.equipment-toggle-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.equipment-toggle-card.active {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.2);
    background: rgba(176, 38, 255, 0.05);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
    transition: margin 0.3s;
    cursor: pointer;
    /* Whole header is clickable and has pointer */
}

.equipment-toggle-card.active .card-header {
    margin-bottom: 1.2rem;
}

.icon-neon {
    font-size: 1.5rem;
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary);
    pointer-events: none;
    /* Let the header/icon handle it */
}

.equipment-toggle-card.active .icon-neon {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary);
}

.equipment-toggle-card h3 {
    flex-grow: 1;
    font-size: 1.1rem;
    color: white;
    pointer-events: none;
}

.toggle-icon {
    font-size: 1.2rem;
    /* Slightly larger */
    color: var(--text-gray);
    transition: transform 0.3s;
    padding: 10px;
    margin: -10px;
    cursor: pointer;
}

.equipment-toggle-card.active .toggle-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    opacity: 0;
}

.equipment-toggle-card.active .card-body {
    max-height: 500px;
    /* Increased to avoid clipping */
    opacity: 1;
}

.card-body ul {
    list-style: none;
    padding-left: 0.5rem;
}

.card-body li {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.2rem;
}

.card-body li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.equipment-toggle-card.active .card-body li::before {
    color: var(--primary);
}

/* Services */
.dark-bg {
    background: #181818;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--dark-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: default;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.service-card .icon {
    width: 70px;
    height: 70px;
    background: rgba(176, 38, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-card .icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

/* Chat Interface */
.chat-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.chat-container {
    background: var(--dark-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 500px;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 5px #00ff00;
}

.chat-header span {
    font-weight: bold;
    color: white;
}

.chat-history {
    flex-grow: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.chat-message {
    max-width: 80%;
    line-height: 1.4;
    font-size: 0.95rem;
    position: relative;
    animation: popIn 0.3s ease;
}

.chat-message.system {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
}

.chat-message .message-content {
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    color: white;
}

.chat-message.system .message-content {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 2px;
}

.chat-message.user .message-content {
    background: var(--primary);
    border-bottom-right-radius: 2px;
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.3);
}

.chat-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chat-action-btn {
    background: var(--dark-card);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.chat-action-btn:hover {
    background: var(--secondary);
    color: black;
}

.chat-input-area {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    gap: 10px;
}

#chat-input {
    flex-grow: 1;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: white;
    outline: none;
}

#chat-input:focus {
    border-color: var(--secondary);
}

#send-btn {
    background: var(--secondary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: black;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

#send-btn:hover {
    transform: scale(1.1);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.full-width {
    width: 100%;
}

.no-margin {
    margin: 0 !important;
}

/* Forms Redesign - Minimalist Aesthetic */
.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: var(--secondary);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Specific styling for Date and Number to look consistent */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.5;
    cursor: pointer;
}

/* Select styling */
select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' 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 1rem center;
    background-size: 1.2em;
    padding-right: 3rem;
}

select option {
    background: #121212;
    color: #fff;
}

/* States */
input:focus,
select:focus,
textarea:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Custom Checkbox refinements */
.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-gray);
    transition: color 0.3s;
    user-select: none;
}

.check-item:hover {
    color: #fff;
}

input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
}

input[type="checkbox"]:focus {
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.3);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Flatpickr Custom Fixes */
.flatpickr-calendar {
    background: var(--dark-card) !important;
    border: 1px solid var(--secondary) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.flatpickr-day.selected {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.flatpickr-day.disabled {
    color: rgba(255, 255, 255, 0.1) !important;
    background: transparent !important;
    cursor: not-allowed;
}

footer {
    padding: 6rem 0 3rem;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
    color: #fff;
    border-radius: 8px;
    outline: none;
    flex-grow: 1;
}

.newsletter-form button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.socials-footer {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.socials-footer a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.socials-footer a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--secondary);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.cookie-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.btn-accept {
    background: var(--primary);
    color: white;
    border: none;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cookie:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(18, 18, 18, 0.98);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}