/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
    overflow-x: hidden;
}

/* Container System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-accept {
    background: #2563eb;
    color: #fff;
}

.btn-accept:hover {
    background: #1d4ed8;
}

.btn-reject {
    background: #f3f4f6;
    color: #374151;
}

.btn-reject:hover {
    background: #e5e7eb;
}

/* Navigation */
.nav-main {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563eb;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

/* Hero Section - Card Style */
.hero-card {
    position: relative;
    height: 600px;
    margin: 40px 24px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 48px;
}

.hero-content-box {
    background: rgba(255,255,255,0.95);
    padding: 48px;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

/* Intro Cards */
.intro-cards {
    padding: 80px 0;
}

.card-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    margin-bottom: 20px;
}

/* Mission Statement */
.mission-statement {
    padding: 100px 0;
    background: #fff;
}

/* Visual Showcase */
.visual-showcase {
    padding: 80px 24px;
}

.showcase-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.showcase-item {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #e5e7eb;
}

.showcase-item.large {
    flex: 2;
    min-height: 500px;
}

.showcase-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f3f4f6 25%, #e5e7eb 25%, #e5e7eb 50%, #f3f4f6 50%, #f3f4f6 75%, #e5e7eb 75%, #e5e7eb);
    background-size: 40px 40px;
}

.showcase-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 32px;
}

/* Services Preview - Card Based */
.services-preview {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37,99,235,0.15);
    transform: translateY(-2px);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fef3c7;
    color: #92400e;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-card h3 {
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card p {
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-meta {
    margin: 20px 0;
    padding: 12px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.duration {
    color: #6b7280;
    font-size: 0.875rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin: 20px 0;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-select-service:hover {
    background: #1d4ed8;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: #f9fafb;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
}

.author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author strong {
    color: #1a1a1a;
}

.author span {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Registration Form */
.registration-form-section {
    padding: 100px 0;
    background: #fff;
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.registration-form {
    background: #f9fafb;
    padding: 48px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: #f9fafb;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 60px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.feature-item {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
}

.feature-item h4 {
    color: #2563eb;
    margin-bottom: 12px;
}

/* CTA Sections */
.cta-final,
.cta-about,
.booking-cta-section,
.visit-cta,
.thanks-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.cta-final h2,
.cta-about h2,
.booking-cta-section h2,
.visit-cta h2,
.thanks-cta h2 {
    color: #fff;
}

.cta-final p,
.cta-about p,
.booking-cta-section p,
.visit-cta p,
.thanks-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
}

.cta-hero,
.cta-large {
    display: inline-block;
    padding: 16px 48px;
    background: #fff;
    color: #2563eb;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-hero:hover,
.cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(37,99,235,0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #1d4ed8;
    box-shadow: 0 6px 24px rgba(37,99,235,0.6);
    transform: scale(1.05);
}

/* Footer */
.footer-main {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 24px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 16px;
}

.footer-col p {
    color: #9ca3af;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Page Hero */
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.page-hero h1 {
    color: #fff;
}

.page-hero .hero-subtitle {
    color: rgba(255,255,255,0.9);
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: #fff;
}

.story-content {
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #f9fafb;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.value-card {
    flex: 1 1 calc(50% - 24px);
    min-width: 280px;
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #fff;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.team-member {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
}

.member-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #f3f4f6 25%, #e5e7eb 25%, #e5e7eb 50%, #f3f4f6 50%, #f3f4f6 75%, #e5e7eb 75%, #e5e7eb);
    background-size: 40px 40px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 12px;
}

.bio {
    color: #4b5563;
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background: #f9fafb;
}

.philosophy-content {
    line-height: 1.8;
}

/* Milestones Section */
.milestones-section {
    padding: 100px 0;
    background: #fff;
}

.milestones-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.timeline-item h3 {
    margin-bottom: 8px;
}

.timeline-item p {
    color: #4b5563;
}

/* Services Detailed */
.services-main {
    padding: 60px 0 100px;
}

.services-intro {
    margin-bottom: 60px;
}

.services-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detailed-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.service-detailed-card:hover {
    border-color: #2563eb;
}

.service-header {
    background: #f9fafb;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
}

.service-details {
    padding: 32px;
}

.service-description {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.info-item {
    flex: 1;
    min-width: 200px;
}

.info-item strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 4px;
}

.service-highlights {
    background: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.service-highlights h4 {
    margin-bottom: 16px;
}

.service-highlights ul {
    list-style-position: inside;
    color: #4b5563;
}

.service-highlights li {
    margin-bottom: 8px;
}

/* Services FAQ */
.services-faq {
    padding: 100px 0;
    background: #f9fafb;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h4 {
    color: #2563eb;
    margin-bottom: 12px;
}

.faq-item p {
    color: #4b5563;
    margin: 0;
}

/* Contact Page */
.contact-main {
    padding: 60px 0 100px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info,
.location-info {
    flex: 1;
    min-width: 300px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.detail-item h3 {
    color: #2563eb;
    margin-bottom: 12px;
}

.detail-item p {
    color: #4b5563;
    line-height: 1.8;
}

.detail-item a {
    color: #2563eb;
    text-decoration: none;
}

.detail-item a:hover {
    text-decoration: underline;
}

.contact-note {
    background: #f9fafb;
    padding: 32px;
    border-radius: 12px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #f3f4f6 25%, #e5e7eb 25%, #e5e7eb 50%, #f3f4f6 50%, #f3f4f6 75%, #e5e7eb 75%, #e5e7eb);
    background-size: 40px 40px;
    border-radius: 12px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background: rgba(255,255,255,0.95);
    padding: 24px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.directions h3 {
    color: #2563eb;
    margin-bottom: 20px;
}

.transport-info,
.parking-info {
    margin-bottom: 24px;
}

.transport-info h4,
.parking-info h4 {
    margin-bottom: 12px;
}

.transport-info p,
.parking-info p {
    color: #4b5563;
    margin-bottom: 8px;
}

/* Studio Info */
.studio-info {
    padding: 100px 0;
    background: #f9fafb;
}

.studio-info h2 {
    text-align: center;
    margin-bottom: 60px;
}

.studios-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.studio-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.studio-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.studio-features span {
    background: #eff6ff;
    color: #2563eb;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Thanks Page */
.thanks-hero {
    padding: 100px 0 60px;
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    color: #10b981;
}

.thanks-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
}

.thanks-details {
    padding: 80px 0;
    background: #f9fafb;
}

.thanks-card {
    background: #fff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-content h3 {
    margin-bottom: 8px;
}

.step-content p {
    color: #4b5563;
    margin: 0;
}

.selected-service-info {
    background: #eff6ff;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.thanks-info {
    padding: 80px 0;
    background: #fff;
}

.info-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: #f9fafb;
    padding: 32px;
    border-radius: 12px;
}

.link-button {
    display: inline-block;
    margin-top: 16px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.link-button:hover {
    text-decoration: underline;
}

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

.legal-text {
    line-height: 1.8;
}

.legal-text h2 {
    margin-top: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.legal-text h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: #374151;
}

.legal-text h4 {
    margin-top: 24px;
    margin-bottom: 12px;
    color: #374151;
}

.legal-text ul {
    margin: 16px 0 16px 24px;
    color: #4b5563;
}

.legal-text li {
    margin-bottom: 8px;
}

.cookie-table {
    background: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.cookie-table p {
    margin-bottom: 8px;
}

/* Selected Service Display */
#selected-service-display {
    color: #2563eb;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 0.875rem;
    }

    .hero-card {
        height: auto;
        margin: 24px 16px;
    }

    .hero-content-box {
        padding: 32px 24px;
    }

    .card-grid,
    .services-card-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid,
    .features-list {
        flex-direction: column;
    }

    .service-card,
    .intro-card,
    .testimonial-card,
    .value-card,
    .team-member,
    .feature-item {
        min-width: 100%;
    }

    .showcase-grid {
        flex-direction: column;
    }

    .showcase-item,
    .showcase-item.large {
        min-width: 100%;
    }

    .registration-form {
        padding: 32px 24px;
    }

    .service-info-list {
        flex-direction: column;
    }

    .info-item {
        min-width: 100%;
    }

    .contact-grid {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 16px;
        right: 16px;
    }

    .sticky-cta-btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .container,
    .container-narrow {
        padding: 0 16px;
    }

    .nav-links {
        display: none;
    }

    .hero-content-box {
        padding: 24px 16px;
    }
}
