/* PinHarmoniaStudio - Main Stylesheet */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-size: 16px;
}

/* CSS Custom Properties */
:root {
    --primary-color: 33 150% 50%; /* #2E86C1 */
    --primary-dark: 33 150% 40%; /* #245582 */
    --secondary-color: 45 100% 51%; /* #FFB347 */
    --accent-color: 348 83% 47%; /* #D73547 */
    --text-color: 0 0% 20%; /* #333333 */
    --text-light: 0 0% 40%; /* #666666 */
    --background: 0 0% 100%; /* #FFFFFF */
    --background-light: 210 17% 98%; /* #F8F9FA */
    --border-color: 220 13% 91%; /* #E9ECEF */
    --shadow: 220 43% 11% 0.1; /* rgba(16, 24, 40, 0.1) */
    --gradient: linear-gradient(135deg, hsl(var(--primary-color)), hsl(var(--secondary-color)));
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
    color: hsl(var(--text-color));
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-sm);
    color: hsl(var(--text-light));
}

a {
    color: hsl(var(--primary-color));
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Header and Navigation */
.header {
    background: hsl(var(--background));
    box-shadow: 0 2px 10px hsla(var(--shadow));
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: var(--space-sm) 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.nav-logo h1 {
    margin: 0;
    font-size: 1.75rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo a {
    color: inherit;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: hsl(var(--primary-color) / 0.1);
    color: hsl(var(--primary-color));
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--space-xs);
}

.bar {
    width: 25px;
    height: 3px;
    background: hsl(var(--text-color));
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.2;
}

.btn-primary {
    background: hsl(var(--primary-color));
    color: white;
}

.btn-primary:hover {
    background: hsl(var(--primary-dark));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px hsla(var(--primary-color) / 0.3);
}

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

.btn-secondary:hover {
    background: hsl(var(--primary-color));
    color: white;
}

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

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

.btn-large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: var(--space-2xl) var(--space-sm);
    background: linear-gradient(135deg, hsl(var(--background-light)), hsl(var(--background)));
    margin-top: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    color: hsl(var(--text-light));
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
    padding-left: var(--space-xl);
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px hsla(var(--shadow));
}

/* Page Header */
.page-header {
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: var(--space-2xl) var(--space-sm);
    margin-top: 80px;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services {
    padding: var(--space-2xl) var(--space-sm);
    background: hsl(var(--background-light));
}

.services h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.service-card {
    background: hsl(var(--background));
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: 0 4px 20px hsla(var(--shadow));
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px hsla(var(--shadow));
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    color: hsl(var(--primary-color));
}

/* Features Grid */
.why-choose,
.values,
.statistics {
    padding: var(--space-2xl) var(--space-sm);
}

.why-choose h2,
.values h2,
.statistics h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 2.5rem;
}

.features-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.feature,
.value-item {
    text-align: center;
    padding: var(--space-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.feature h3,
.value-item h3 {
    color: hsl(var(--primary-color));
    margin-bottom: var(--space-sm);
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    text-align: center;
}

.stat-item {
    padding: var(--space-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: hsl(var(--primary-color));
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 1.125rem;
    color: hsl(var(--text-light));
}

/* About Content */
.about-content {
    padding: var(--space-2xl) var(--space-sm);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-2xl);
}

.about-text h2 {
    color: hsl(var(--primary-color));
    margin-bottom: var(--space-md);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* Team Section */
.team {
    padding: var(--space-2xl) var(--space-sm);
    background: hsl(var(--background-light));
}

.team h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.team-member {
    background: hsl(var(--background));
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: 0 4px 20px hsla(var(--shadow));
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--space-md);
}

.team-member h3 {
    color: hsl(var(--primary-color));
    margin-bottom: var(--space-xs);
}

.position {
    color: hsl(var(--secondary-color));
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.credentials span {
    background: hsl(var(--background-light));
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

/* Course Content */
.course-section {
    padding: var(--space-2xl) var(--space-sm);
}

.course-section:nth-child(even) {
    background: hsl(var(--background-light));
}

.course-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.course-content.reverse {
    direction: rtl;
}

.course-content.reverse > * {
    direction: ltr;
}

.course-info h2 {
    color: hsl(var(--primary-color));
    margin-bottom: var(--space-md);
}

.course-info ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.course-info li {
    margin-bottom: var(--space-xs);
    color: hsl(var(--text-light));
}

.levels,
.age-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.level,
.age-group {
    background: hsl(var(--background-light));
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.level h4,
.age-group h4 {
    color: hsl(var(--primary-color));
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.styles {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin: var(--space-md) 0;
}

.style-tag {
    background: hsl(var(--primary-color));
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.course-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* Course Navigation */
.courses-overview {
    padding: var(--space-lg) var(--space-sm);
    background: hsl(var(--background-light));
}

.course-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.course-nav-link {
    padding: var(--space-sm) var(--space-lg);
    background: hsl(var(--background));
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: var(--transition);
}

.course-nav-link:hover {
    background: hsl(var(--primary-color));
    color: white;
}

/* Pricing Section */
.pricing-section {
    padding: var(--space-2xl) var(--space-sm);
    background: hsl(var(--background-light));
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 2.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.pricing-card {
    background: hsl(var(--background));
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: 0 4px 20px hsla(var(--shadow));
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px hsla(var(--shadow));
}

.pricing-card.featured {
    border: 3px solid hsl(var(--primary-color));
    transform: scale(1.05);
}

.pricing-card h3 {
    margin-bottom: var(--space-md);
    color: hsl(var(--primary-color));
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: hsl(var(--primary-color));
    margin-bottom: var(--space-md);
}

.price span {
    font-size: 1rem;
    color: hsl(var(--text-light));
}

.pricing-card ul {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.pricing-card li {
    padding: var(--space-xs) 0;
    color: hsl(var(--text-light));
    position: relative;
    padding-left: var(--space-md);
}

.pricing-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(var(--primary-color));
    font-weight: bold;
}

.pricing-note {
    background: hsl(var(--background));
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-top: var(--space-xl);
}

.pricing-note ul {
    margin-top: var(--space-sm);
    padding-left: var(--space-lg);
}

/* Contact Section */
.contact-section {
    padding: var(--space-2xl) var(--space-sm);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
}

.contact-form-section h2,
.contact-info-section h2 {
    color: hsl(var(--primary-color));
    margin-bottom: var(--space-lg);
}

/* Forms */
.contact-form {
    display: grid;
    gap: var(--space-md);
}

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

.form-group label {
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: hsl(var(--text-color));
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-sm);
    border: 2px solid hsl(var(--border-color));
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary-color));
    box-shadow: 0 0 0 3px hsla(var(--primary-color) / 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid hsl(var(--border-color));
    border-radius: var(--radius-sm);
    position: relative;
}

.form-message {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

.form-message.success {
    background: hsla(142 76% 36% / 0.1);
    border: 1px solid hsl(142 76% 36%);
    color: hsl(142 76% 36%);
}

.form-message.error {
    background: hsla(var(--accent-color) / 0.1);
    border: 1px solid hsl(var(--accent-color));
    color: hsl(var(--accent-color));
}

/* Contact Info */
.contact-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.contact-details h3 {
    color: hsl(var(--primary-color));
    margin-bottom: var(--space-xs);
}

.contact-note {
    font-size: 0.875rem;
    color: hsl(var(--text-light));
    margin-top: var(--space-xs);
}

.working-hours {
    background: hsl(var(--background-light));
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.working-hours h3 {
    margin-bottom: var(--space-md);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid hsl(var(--border-color));
}

.quick-actions {
    margin-top: var(--space-lg);
}

.quick-action-btn {
    display: inline-block;
    background: hsl(var(--primary-color));
    color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    margin-right: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
    transition: var(--transition);
}

.quick-action-btn:hover {
    background: hsl(var(--primary-dark));
    color: white;
}

/* Location Section */
.location-section {
    padding: var(--space-2xl) var(--space-sm);
    background: hsl(var(--background-light));
}

.location-section h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: hsl(var(--primary-color));
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.location-description h3,
.location-description h4 {
    color: hsl(var(--primary-color));
    margin-bottom: var(--space-sm);
}

.location-description ul {
    margin: var(--space-sm) 0 var(--space-lg) var(--space-lg);
}

.location-description li {
    margin-bottom: var(--space-xs);
    color: hsl(var(--text-light));
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-frame {
    background: hsl(var(--background));
    border: 2px solid hsl(var(--border-color));
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* FAQ Section */
.faq-section,
.faq-quick {
    padding: var(--space-2xl) var(--space-sm);
}

.faq-section h2,
.faq-quick h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 2.5rem;
}

.faq-grid,
.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.faq-item,
.faq-quick-item {
    background: hsl(var(--background));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px hsla(var(--shadow));
}

.faq-item h3,
.faq-quick-item h3 {
    color: hsl(var(--primary-color));
    margin-bottom: var(--space-sm);
}

/* CTA Section */
.cta {
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: var(--space-2xl) var(--space-sm);
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    color: rgba(255, 255, 255, 0.9);
}

.cta .btn {
    background: white;
    color: hsl(var(--primary-color));
    font-weight: 600;
}

.cta .btn:hover {
    background: hsl(var(--background-light));
    color: hsl(var(--primary-dark));
}

/* Legal Content */
.legal-content {
    padding: var(--space-2xl) var(--space-sm);
    max-width: 800px;
    margin: 0 auto;
    margin-top: 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.legal-header h1 {
    color: hsl(var(--primary-color));
    margin-bottom: var(--space-sm);
}

.last-updated {
    color: hsl(var(--text-light));
    font-style: italic;
}

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

.legal-text h2 {
    color: hsl(var(--primary-color));
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-top: var(--space-md);
    border-top: 2px solid hsl(var(--border-color));
}

.legal-text h3 {
    color: hsl(var(--primary-dark));
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-text ul,
.legal-text ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
}

.legal-text li {
    margin-bottom: var(--space-sm);
    color: hsl(var(--text-light));
}

.contact-details {
    background: hsl(var(--background-light));
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.legal-footer {
    text-align: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 2px solid hsl(var(--border-color));
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: hsl(var(--text-color));
    color: white;
    padding: var(--space-md);
    z-index: 1001;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

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

.btn-accept,
.btn-decline {
    padding: var(--space-sm) var(--space-md);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.btn-accept {
    background: hsl(var(--primary-color));
    color: white;
}

.btn-accept:hover {
    background: hsl(var(--primary-dark));
}

.btn-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    background: hsl(var(--background));
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 10px hsla(var(--shadow));
}

.cookies-table th,
.cookies-table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid hsl(var(--border-color));
}

.cookies-table th {
    background: hsl(var(--primary-color));
    color: white;
    font-weight: 600;
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

.browser-instructions {
    background: hsl(var(--background-light));
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.browser-instructions h4 {
    color: hsl(var(--primary-color));
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
}

.browser-instructions h4:first-child {
    margin-top: 0;
}

.browser-instructions ol {
    margin-left: var(--space-lg);
}

.cookie-controls {
    text-align: center;
    margin: var(--space-lg) 0;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, hsl(var(--text-color)), hsl(var(--primary-dark)));
    color: white;
}

.footer-top {
    background: var(--gradient);
    padding: var(--space-2xl) var(--space-sm);
    text-align: center;
}

.footer-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-cta p {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    color: rgba(255, 255, 255, 0.9);
}

.footer-main {
    padding: var(--space-2xl) var(--space-sm);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
}

.footer-brand {
    padding-right: var(--space-lg);
}

.footer-brand h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: hsl(var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-section h4 {
    color: hsl(var(--secondary-color));
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid hsl(var(--secondary-color));
    padding-bottom: var(--space-xs);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-section a:hover {
    color: hsl(var(--secondary-color));
    padding-left: var(--space-xs);
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
}

.contact-icon {
    font-size: 1.1rem;
    min-width: 20px;
}

.contact-item-footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.contact-item-footer a:hover {
    color: hsl(var(--secondary-color));
}

.schedule {
    color: rgba(255, 255, 255, 0.8);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-xs);
}

.schedule-item .day {
    flex: 1;
}

.schedule-item .time {
    font-weight: 600;
    color: hsl(var(--secondary-color));
}

.schedule-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    border-left: 3px solid hsl(var(--secondary-color));
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-lg) var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright p {
    margin-bottom: var(--space-xs);
    color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
    color: hsl(var(--secondary-color));
    font-style: italic;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: hsl(var(--secondary-color));
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: hsl(var(--background));
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px hsla(var(--shadow));
        padding: var(--space-lg) 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: var(--space-sm) 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: var(--space-xl) var(--space-sm);
    }
    
    .hero-image {
        padding-left: 0;
        margin-top: var(--space-xl);
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-intro,
    .course-content,
    .contact-content,
    .location-info {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .course-content.reverse {
        direction: ltr;
    }
    
    .services-grid,
    .features-grid,
    .team-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Footer responsive styles */
    .footer-cta h2 {
        font-size: 1.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-brand {
        padding-right: 0;
        text-align: center;
        margin-bottom: var(--space-lg);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .schedule-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item-footer {
        justify-content: center;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: var(--space-sm);
    }
    
    .cookies-table {
        font-size: 0.875rem;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: var(--space-xs) var(--space-sm);
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .course-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .course-nav-link {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .levels,
    .age-groups,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-form {
        gap: var(--space-sm);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }
}

/* Performance Optimizations */
.hero-image img,
.service-card img,
.about-image img,
.team-member img,
.course-image img {
    loading: lazy;
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .hamburger,
    .btn,
    .hero-buttons,
    .quick-actions {
        display: none;
    }
    
    .hero,
    .page-header {
        margin-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .legal-text h2 {
        border-top: none;
        page-break-before: always;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus Styles */
*:focus {
    outline: 2px solid hsl(var(--primary-color));
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: hsl(var(--primary-color));
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1002;
}

.skip-link:focus {
    top: 6px;
}
