:root {
    --bg-dark: #090a0f;
    --bg-panel: #121420;
    --accent-cyan: #00f0ff;
    --accent-violet: #8a2be2;
    --text-bright: #ffffff;
    --text-muted: #a0a5c0;
    --border-color: #20243a;
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --accent-gradient: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
}

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

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

h1, h2, h3, h4 {
    color: var(--text-bright);
    font-weight: 700;
    margin-bottom: 0.5em;
}

a {
    color: var(--text-bright);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.max-700 {
    max-width: 700px;
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 30px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.pt-0 {
    padding-top: 0 !important;
}

/* Header & Navigation */
header {
    background-color: rgba(9, 10, 15, 0.9);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    width: 35px;
    height: 35px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
}

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

/* Hamburger menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-bright);
    border-radius: 10px;
    transition: all 0.3s linear;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 800px;
}

.badge {
    display: inline-block;
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-section h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

/* Subhero */
.subhero-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
}

.subhero-section h1 {
    font-size: 2.5rem;
}

/* Grids */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.align-center {
    align-items: center;
}

/* Cards */
.card {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.05);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
    color: var(--bg-dark);
    opacity: 0.9;
    box-shadow: 0 4px 25px rgba(0, 240, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-bright);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-outline:hover {
    background: var(--accent-cyan);
    color: var(--bg-dark);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Sections General */
section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
}

/* Triggers Section */
.trigger-card {
    text-align: center;
}

.trigger-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Spaces / Studios Card Grid */
.space-card {
    padding: 0;
    overflow: hidden;
}

.space-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.space-card .card-body {
    padding: 25px;
}

.space-card h3 {
    margin-bottom: 10px;
}

.space-card .price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin: 15px 0;
}

/* Reviews Section */
.review-card .rating {
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.review-card .author {
    font-weight: 600;
    color: var(--text-bright);
}

/* Form block */
.booking-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-panel) 100%);
}

.form-card {
    background-color: rgba(9, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border-color: var(--accent-cyan);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    color: var(--text-bright);
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-bright);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* About Section */
.img-responsive {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 12px;
}

/* Equipment List in Services */
.equipment-list {
    list-style: none;
    margin: 20px 0;
}

.equipment-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.equipment-list li::before {
    content: "▫";
    color: var(--accent-cyan);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.price-action .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    font-weight: 600;
    color: var(--text-bright);
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px 20px;
    border-top: 1px solid var(--border-color);
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.legal-page .subtitle {
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
}

/* Thank You Wrapper */
.thank-you-wrapper, .error-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.big-check {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.error-code {
    display: inline-block;
    font-size: 6rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 20px;
}

.sub-text {
    max-width: 600px;
    margin: 20px auto 40px auto;
}

/* Contact Specific */
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.map-container {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px;
}

/* Footer */
footer {
    background-color: #05060a;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-grid h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 10px;
}

.footer-grid ul li a {
    color: var(--text-muted);
}

.footer-grid ul li a:hover {
    color: var(--accent-cyan);
}

.brand-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
    margin-top: 15px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    font-size: 0.85rem;
}

/* Cookie Consent Bar */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(18, 20, 32, 0.95);
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 20px;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-bright);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: var(--bg-dark);
        border-bottom: 1px solid var(--border-color);
        padding: 30px;
        gap: 20px;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .studio-detail-item.reverse {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}