/* Reset and General Variables */
:root {
    --bg-dark: #0b0f19;
    --bg-card: #131c2e;
    --bg-card-hover: #1e2a44;
    --accent: #00f2fe;
    --accent-hover: #4facfe;
    --accent-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --accent-glow: 0 0 15px rgba(0, 242, 254, 0.4);
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

.max-width-md {
    max-width: 800px;
}

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

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

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

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

.logo-svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(var(--accent-glow));
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-nav-button {
    background: var(--accent-gradient);
    color: var(--bg-dark) !important;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: var(--accent-glow);
}

.cta-nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.6);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
}

/* Button Component */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-dark);
    box-shadow: var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--accent);
}

.btn-secondary:hover {
    background: rgba(0, 242, 254, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--accent-glow);
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 160px 0 120px;
    position: relative;
    border-bottom: 1px solid rgba(0, 242, 254, 0.1);
}

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

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Feature Grid */
.features-section {
    padding: 100px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-muted);
    margin-top: -45px;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(0, 242, 254, 0.1);
    padding: 40px 30px;
    border-radius: 10px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--accent-glow);
    background-color: var(--bg-card-hover);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Studios Overview */
.studios-overview-section {
    padding: 100px 0;
    background-color: rgba(19, 28, 46, 0.3);
    border-top: 1px solid rgba(0, 242, 254, 0.05);
    border-bottom: 1px solid rgba(0, 242, 254, 0.05);
}

.studios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.studio-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 254, 0.05);
    transition: var(--transition);
}

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

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

.studio-content {
    padding: 30px;
}

.studio-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.studio-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 15px;
}

.price-tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

/* Pricing Cards */
.pricing-section {
    padding: 100px 0;
}

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

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(0, 242, 254, 0.1);
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.premium {
    border-color: var(--accent);
    box-shadow: var(--accent-glow);
}

.pricing-card.premium .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gradient);
    color: var(--bg-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 44px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 15px;
}

.pricing-card .price span {
    font-size: 16px;
    color: var(--text-muted);
}

.plan-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
}

.plan-features {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}

.plan-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: rgba(19, 28, 46, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(0, 242, 254, 0.05);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent);
}

/* Booking / Contact Form */
.booking-section,
.booking-section-contact {
    padding: 100px 0;
}

.form-container {
    background-color: var(--bg-card);
    border: 1px solid rgba(0, 242, 254, 0.15);
    padding: 60px 40px;
    border-radius: 12px;
    max-width: 800px;
    box-shadow: var(--accent-glow);
}

.contact-form {
    margin-top: 40px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: rgba(11, 15, 25, 0.8);
    border: 1px solid rgba(0, 242, 254, 0.2);
    color: var(--text-light);
    padding: 14px 18px;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

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

.checkbox-group input {
    width: auto;
    margin-top: 4px;
    accent-color: var(--accent);
}

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

.form-status-msg {
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
    padding: 12px;
    border-radius: 5px;
}

.form-status-msg.success {
    background-color: rgba(16, 185, 129, 0.2);
    border: 1px solid rgb(16, 185, 129);
    color: #10b981;
}

.form-status-msg.error {
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid rgb(239, 68, 68);
    color: #ef4444;
}

.submit-btn {
    width: 100%;
}

/* Subpages Styling */
.subpage-main {
    min-height: 60vh;
}

.subpage-hero {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    border-bottom: 1px solid rgba(0, 242, 254, 0.1);
}

.subpage-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subpage-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.about-content {
    padding: 100px 0;
}

.content-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--accent);
}

.content-block p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Detailed Studios row */
.studios-detailed-section {
    padding: 100px 0;
}

.detailed-studio-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.detailed-studio-row.reverse {
    direction: rtl;
}

.detailed-studio-row.reverse .detailed-studio-info {
    direction: ltr;
}

.detailed-studio-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(0, 242, 254, 0.15);
}

.detailed-studio-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--accent);
}

.detailed-studio-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Accordion FAQ */
.faq-accordion-section {
    padding: 100px 0;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-details {
    background-color: var(--bg-card);
    border: 1px solid rgba(0, 242, 254, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-summary {
    padding: 24px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    outline: none;
    position: relative;
    list-style: none;
}

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

.faq-summary::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--accent);
    transition: var(--transition);
}

.faq-details[open] .faq-summary::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-content {
    padding: 0 30px 24px;
    color: var(--text-muted);
    font-size: 15px;
    border-top: 1px solid rgba(0, 242, 254, 0.05);
    padding-top: 15px;
}

/* Contact Page Specifics */
.contact-details-section {
    padding: 100px 0;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 28px;
}

.info-text strong {
    font-size: 18px;
    color: var(--accent);
    display: block;
    margin-bottom: 5px;
}

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

/* Legal and Thank You */
.legal-main {
    padding: 100px 0;
}

.legal-container h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--accent);
}

.legal-container h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--accent-hover);
}

.legal-container p,
.legal-container ul {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.legal-container ul {
    padding-left: 20px;
}

.legal-container li {
    margin-bottom: 10px;
}

.thank-you-main {
    padding: 140px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: var(--bg-dark);
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: var(--accent-glow);
}

.error-badge {
    font-size: 100px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 20px;
}

.thank-you-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.thank-you-message {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
}

/* Footer Section */
.site-footer {
    background-color: #060910;
    border-top: 1px solid rgba(0, 242, 254, 0.1);
    padding: 80px 0 30px;
}

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

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-info p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links h4,
.footer-legal-links h4 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-links ul,
.footer-legal-links ul {
    list-style: none;
}

.footer-links li,
.footer-legal-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-legal-links a {
    color: var(--text-muted);
    font-size: 14px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 10px;
}

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

.cookie-banner.show {
    bottom: 20px;
}

.cookie-text {
    font-size: 14px;
    color: var(--text-light);
}

.cookie-btn {
    white-space: nowrap;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .hero-title {
        font-size: 40px;
    }
    .grid-2col,
    .detailed-studio-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .detailed-studio-row.reverse {
        direction: ltr;
    }
    .detailed-studio-row.reverse .detailed-studio-info {
        direction: ltr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition);
        border-top: 1px solid rgba(0, 242, 254, 0.1);
    }
    .nav-menu.active {
        left: 0;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-container {
        padding: 40px 20px;
    }
    .hero-section {
        padding: 120px 0 80px;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}