:root {
    --bg-color: #020c1b;
    --card-bg: #112240;
    --text-primary: #ccd6f6;
    --text-secondary: #8892b0;
    --accent: #64ffda;
    --font-main: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Header */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 50px;
    background: transparent;
    gap: 20px;
}

.logo-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    margin: 0 20px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

/* Layout */
.container {
    display: flex;
    justify-content: center;
    /* Center content horizontally */
    padding: 40px 50px;
    position: relative;
    max-width: 100%;
    /* Allow full width */
    min-height: 80vh;
}

/* Sidebar - Floating/Absolute */
.sidebar {
    position: absolute;
    left: 50px;
    top: 100px;
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

/* Sidebar Right - Floating/Absolute */
.sidebar-right {
    position: absolute;
    right: 50px;
    top: 100px;
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.card {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
    border: 1px solid #233554;
}

.card h3 {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-bottom: 1px solid #233554;
    padding-bottom: 10px;
}

.payment-methods ul {
    list-style: none;
}

.payment-methods li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.payment-methods li i {
    color: var(--accent);
    width: 20px;
}

.delivery-time .time-highlight {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.delivery-time .time-highlight span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin-top: 5px;
}

.small-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-style: italic;
}

/* Beats Catalog Card */
.beats-catalog .beats-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.beats-catalog .fa-youtube {
    font-size: 3rem;
    color: #FF0000;
    margin-bottom: 10px;
}

.beats-desc {
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.beats-desc strong {
    color: var(--accent);
}

.beats-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.beats-link:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

.beats-link i {
    font-size: 0.9rem;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 20px;
    max-width: 800px;
    z-index: 5;
    /* Ensure it's above waves if needed */
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-bottom: 60px;
}

.cta-button:hover {
    background-color: rgba(100, 255, 218, 0.1);
}

.info-box {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 20px 40px -15px rgba(2, 12, 27, 0.7);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

/* Subtle gradient overlay for info box */
.info-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--bg-color), var(--accent), var(--bg-color));
    opacity: 0.5;
}

.main-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.sub-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Services List */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
    margin-bottom: 50px;
}

.service-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-item h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* WhatsApp Button */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 40px;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 1.4rem;
}

/* Waves Animation */
.waves-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    z-index: -1;
    /* Behind everything */
}

.waves {
    width: 100%;
    height: 100%;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .sidebar {
        position: relative;
        /* Reset to normal flow */
        left: auto;
        top: auto;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .sidebar-right {
        position: relative;
        /* Reset to normal flow */
        right: auto;
        top: auto;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 20px;
    }

    .card {
        flex: 1;
        min-width: 250px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-list {
        grid-template-columns: 1fr;
    }
}