:root {
    --bg-color: #0B0C10;
    --card-bg: #1F2833;
    --accent-color: #66FCF1;
    --accent-dark: #45A29E;
    --text-primary: #FFFFFF;
    --text-secondary: #C5C6C7;
    --border-color: rgba(102, 252, 241, 0.15);
    --font-sans: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
}

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

a:hover {
    color: var(--text-primary);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Nav */
.header {
    background: rgba(11, 12, 16, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    color: var(--text-secondary);
    font-weight: 500;
}

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

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

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

.badge {
    background: var(--accent-dark);
    color: var(--bg-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-color);
    border: none;
}

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

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

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

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

.btn-link {
    color: var(--accent-color);
    font-weight: bold;
}

/* Grid layout */
.grid {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

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

/* Sections General */
.features, .studios-preview, .booking-section, .about-content-section, .services-detail-section, .faq-section, .legal-page-section, .contact-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

/* Cards */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    color: var(--text-secondary);
}

/* Studio Previews */
.studio-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

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

.studio-card-content {
    padding: 30px;
}

.price {
    color: var(--accent-color);
    font-size: 1.35rem;
    font-weight: bold;
    margin: 10px 0;
}

/* Booking Form Wrapper */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.booking-form-box {
    background: rgba(11, 12, 16, 0.6);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

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

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

input[type="text"], input[type="email"], input[type="tel"], select {
    width: 100%;
    padding: 12px;
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, select:focus {
    border-color: var(--accent-color);
    outline: none;
}

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

.checkbox-group input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

/* FAQ Items */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-secondary);
    display: none;
}

/* Services Detail Page */
.page-title-section {
    padding: 120px 0 60px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.page-title-section h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.studio-detail-item {
    margin-bottom: 80px;
}

.service-img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    height: 400px;
    object-fit: cover;
}

.price-badge {
    background: var(--accent-color);
    color: var(--bg-color);
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    display: inline-block;
}

.spec-list {
    margin: 20px 0;
    list-style: none;
}

.spec-list li {
    margin-bottom: 8px;
}

/* Legal Tables */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-table, .info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.legal-table th, .legal-table td, .info-table th, .info-table td {
    padding: 15px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.legal-table th, .info-table th {
    background: var(--card-bg);
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--accent-color);
    max-width: 400px;
    z-index: 10000;
    display: none;
}

/* Thank You and 404 Pages */
.thankyou-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.thankyou-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 12px;
    max-width: 600px;
    text-align: center;
}

.thankyou-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.thankyou-box h1 {
    margin-bottom: 20px;
}

.thankyou-box p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

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

.footer-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 15px;
}

.footer-links h4, .footer-legal h4 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links a, .footer-legal a {
    display: block;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: var(--bg-color);
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav.open {
        display: flex;
    }
    
    .burger {
        display: flex;
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .studio-detail-item.reverse {
        direction: ltr; /* Keeps stacking uniform on mobile */
    }
}