/* Root Variables & Cyber-Aesthetic Themes */
:root {
    --bg-dark: #090a0f;
    --bg-card: #141622;
    --primary: #00f0ff;
    --secondary: #8a2be2;
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --accent: #ff007f;
    --border: rgba(255, 255, 255, 0.08);
    --glow: 0 0 20px rgba(0, 240, 255, 0.35);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* Buttons */
.btn-primary, .btn-primary-small, .btn-secondary, .btn-secondary-small {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
    padding: 14px 28px;
    border: none;
    box-shadow: var(--glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}

.btn-primary-small {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
    padding: 10px 20px;
    font-size: 0.9rem;
    border: none;
}

.btn-primary-small:hover {
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: var(--glow);
}

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

/* Header & Sticky Nav */
.header {
    background: rgba(9, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

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

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

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-highlight {
    color: var(--primary);
}

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

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

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

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-text-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light) 60%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.trust-indicators {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.trust-item .check {
    color: var(--primary);
}

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

.hero-img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Core Features */
.features {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark), #10121b);
}

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

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

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

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

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

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

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

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

/* Pricing / Studios Table */
.pricing-studios {
    padding: 80px 0;
}

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

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.price-card.unique-glow {
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.card-badge.special {
    background: var(--primary);
    color: #000;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.price span {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
}

.price-features li {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.card-btn {
    width: 100%;
}

/* Booking & Form Section */
.booking-section {
    padding: 80px 0;
    background: #0d0f17;
}

.booking-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.booking-box h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

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

.booking-form-el {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.form-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.form-checkbox input {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

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

.form-checkbox a {
    color: var(--primary);
}

.form-error {
    display: none;
    color: #ff4d4d;
    font-size: 0.9rem;
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

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

/* Services Page Row details */
.service-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.service-row.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.service-row.reverse .service-text {
    grid-column: 2;
}

.service-row.reverse .service-img-wrapper {
    grid-column: 1;
}

.service-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

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

.specs {
    list-style: none;
    margin-bottom: 30px;
}

.specs li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.specs li strong {
    color: var(--primary);
}

.service-img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
}

/* About hero & page details */
.about-hero, .services-hero, .faq-hero, .contact-hero {
    padding: 100px 0 60px 0;
    background: linear-gradient(180deg, #10121b, var(--bg-dark));
}

.about-hero h1, .services-hero h1, .faq-hero h1, .contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

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

.grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: 12px;
}

/* Legal Page Layout */
.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    margin-bottom: 20px;
}

.legal-page h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}

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

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

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

.accordion-header .arrow {
    font-size: 0.8rem;
    transition: var(--transition);
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-item.active .accordion-body {
    padding: 0 20px 20px 20px;
    max-height: 200px;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}

/* Contact Info Elements */
.contact-details {
    padding: 80px 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-block {
    font-size: 1rem;
}

.info-block strong {
    color: var(--primary);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.map-wrapper {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* Thank You & 404 */
.thank-you-section {
    padding: 120px 0;
    text-align: center;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    font-size: 2.5rem;
    border-radius: 50%;
    margin-bottom: 30px;
}

.thank-you-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thank-you-section p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* Footer layout */
.footer {
    background: #06070a;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

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

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

.footer-grid h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-links, .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 0;
    right: 0;
    background: rgba(20, 22, 34, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--primary);
    padding: 20px 0;
    z-index: 10000;
    transition: bottom 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
}

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

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

.cookie-content a {
    color: var(--primary);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-secondary-small {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-secondary-small:hover {
    border-color: var(--text-light);
    color: var(--text-light);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text-content {
        text-align: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .service-row, .service-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-row.reverse .service-text, .service-row.reverse .service-img-wrapper {
        grid-column: auto;
    }
    
    .grid-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border);
        padding: 30px;
        gap: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}