/* Premium Dark & High-Tech Color Palette */
:root {
    --bg-main: #0b0c10;
    --bg-surface: #12131a;
    --bg-card: #1a1c24;
    --accent: #10b981;
    --accent-glow: rgba(16, 185, 129, 0.4);
    --accent-hover: #059669;
    --text-primary: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: #2e323f;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition-speed: 0.3s;
}

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

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

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

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

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

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

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

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

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    gap: 0.5rem;
}

.logo img {
    border-radius: 4px;
}

.accent {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 30px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-primary);
    transition: transform var(--transition-speed), opacity var(--transition-speed);
}

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

.badge {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: #12131a;
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #12131a;
    box-shadow: 0 0 15px var(--accent-glow);
}

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

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

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

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

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

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

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

/* Features Section */
.features, .studios-overview, .testimonials, .booking-section, .about-content, .services-list, .faq-section, .legal-page {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: transform var(--transition-speed), border-color var(--transition-speed);
}

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

.feature-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

/* Studio Overview Cards */
.studio-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.studio-body {
    padding: 2rem;
}

.studio-body h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.studio-body .price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.studio-body p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card .quote {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.testimonial-card .author {
    display: flex;
    flex-direction: column;
}

.testimonial-card .author strong {
    color: var(--accent);
}

.testimonial-card .author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Forms & Booking Section */
.booking-section {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 4fr 5fr;
    gap: 4rem;
    align-items: center;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.booking-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.booking-form-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 0.85rem 1rem;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all var(--transition-speed);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

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

/* About & Services Inner Pages styling */
.page-title-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border-color);
}

.page-title-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-title-section p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 12px;
}

/* Service Deep-dive block */
.service-item {
    align-items: center;
    gap: 4rem;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
    border-bottom: none;
}

.service-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.service-desc h2 {
    font-size: 2rem;
    margin: 0.5rem 0 1.5rem;
}

.service-desc p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.spec-list {
    list-style: none;
    margin-bottom: 2rem;
}

.spec-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.spec-list li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
}

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

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

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

.faq-question::after {
    content: "+";
    color: var(--accent);
    font-size: 1.5rem;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-muted);
}

/* Legal Pages */
.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.legal-block {
    margin-bottom: 2.5rem;
}

.legal-block h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.legal-block p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Contact Details */
.contact-methods {
    list-style: none;
    margin-top: 2rem;
}

.contact-methods li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.google-map {
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

/* Thank you page */
.thank-you-section {
    padding: 120px 0;
}

.success-icon {
    font-size: 4rem;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thank-you-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thank-you-section p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

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

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    z-index: 1100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .service-item {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    .service-item.reversed {
        display: flex;
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-main);
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        transition: left var(--transition-speed);
        border-top: 1px solid var(--border-color);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .booking-form-container {
        padding: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
}