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

body {
    font-family: 'Inter', sans-serif;
    background-color: #1A1A1A;
    color: #E5E5E5;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2D1B69 0%, #1A1A1A 100%);
    padding: 20px;
    z-index: 10000;
    border-top: 2px solid #00D4FF;
    animation: slideUp 0.5s ease-out;
}

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

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

.cookie-content p {
    color: #E5E5E5;
    font-size: 14px;
}

.btn-accept {
    background: linear-gradient(135deg, #00D4FF 0%, #39FF14 100%);
    color: #1A1A1A;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.btn-accept:hover {
    transform: scale(1.05);
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

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

.nav-logo h1 {
    background: linear-gradient(135deg, #00D4FF 0%, #39FF14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.logo-subtitle {
    color: #888;
    font-size: 12px;
    font-weight: 300;
}

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

.nav-link {
    color: #E5E5E5;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #00D4FF;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #00D4FF 0%, #39FF14 100%);
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00D4FF;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2D1B69 0%, #1A1A1A 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #00D4FF 0%, #39FF14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    color: #B0B0B0;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #00D4FF 0%, #39FF14 100%);
    color: #1A1A1A;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #00D4FF;
    border: 2px solid #00D4FF;
}

.btn-secondary:hover {
    background: #00D4FF;
    color: #1A1A1A;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: #00D4FF;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat p {
    color: #888;
    font-size: 14px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: #1A1A1A;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #E5E5E5;
}

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

.service-card {
    background: linear-gradient(135deg, #2D1B69 0%, #1F1F1F 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: grayscale(100%) brightness(0) invert(1);
}

.service-card h3 {
    color: #00D4FF;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.service-card p {
    color: #B0B0B0;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D1B69 100%);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #E5E5E5;
}

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

.testimonial-card {
    background: rgba(31, 31, 31, 0.8);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.testimonial-content p {
    color: #E5E5E5;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: #00D4FF;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #888;
    font-size: 14px;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: #1A1A1A;
}

.location-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #E5E5E5;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h3 {
    color: #00D4FF;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.location-info p {
    color: #B0B0B0;
    margin-bottom: 30px;
    line-height: 1.8;
}

.address, .hours {
    margin-bottom: 30px;
}

.address h4, .hours h4 {
    color: #E5E5E5;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.address p, .hours p {
    color: #B0B0B0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2D1B69 0%, #1A1A1A 100%);
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #E5E5E5;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-form {
    background: rgba(31, 31, 31, 0.8);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: #E5E5E5;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00D4FF;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #00D4FF;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-group a {
    color: #00D4FF;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #0F0F0F;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #00D4FF;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #E5E5E5;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-section p {
    color: #B0B0B0;
    margin-bottom: 8px;
}

.footer-logo p {
    color: #888;
    font-size: 14px;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 14px;
}

.footer-bottom a {
    color: #00D4FF;
    text-decoration: none;
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

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

    .hero-text p {
        font-size: 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .services-preview h2,
    .testimonials h2,
    .location-section h2,
    .contact-form-section h2 {
        font-size: 2rem;
    }

    .booking-form {
        padding: 30px 20px;
    }
}/* Additional styles for pages that need specific styling */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2D1B69 0%, #1A1A1A 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #E5E5E5;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: #B0B0B0;
}

/* Logo Circle */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00D4FF 0%, #39FF14 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1A1A1A;
    font-size: 18px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: #1A1A1A;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: #E5E5E5;
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.about-text h3 {
    color: #00D4FF;
    font-size: 1.5rem;
    margin: 30px 0 16px;
}

.about-text p {
    color: #B0B0B0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    color: #B0B0B0;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.values-list li::before {
    content: "✓";
    color: #39FF14;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2D1B69 0%, #1A1A1A 100%);
}

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

.mission-content h2 {
    color: #E5E5E5;
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.mission-content p {
    color: #B0B0B0;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(31, 31, 31, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #00D4FF;
    margin-bottom: 10px;
}

.stat-card p {
    color: #B0B0B0;
    margin: 0;
}

.approach-section {
    padding: 80px 0;
    background: #1A1A1A;
}

.approach-section h2 {
    text-align: center;
    color: #E5E5E5;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.approach-card {
    background: linear-gradient(135deg, #2D1B69 0%, #1F1F1F 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.approach-card h3 {
    color: #00D4FF;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.approach-card p {
    color: #B0B0B0;
    line-height: 1.6;
}

/* Services Page Styles */
.services-detailed {
    padding: 80px 0;
    background: #1A1A1A;
}

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

.service-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detailed:nth-child(even) {
    direction: rtl;
}

.service-detailed:nth-child(even) > * {
    direction: ltr;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.service-content h2 {
    color: #E5E5E5;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-content h3 {
    color: #00D4FF;
    font-size: 1.3rem;
    margin: 30px 0 16px;
}

.service-content p {
    color: #B0B0B0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-content ul {
    color: #B0B0B0;
    margin-bottom: 30px;
    padding-left: 20px;
}

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

.service-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    font-size: 1.2rem;
}

.feature p {
    margin: 0;
    color: #B0B0B0;
    font-size: 14px;
}

.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2D1B69 0%, #1A1A1A 100%);
    text-align: center;
}

.cta-content h2 {
    color: #E5E5E5;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: #B0B0B0;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Team Page Styles */
.team-section {
    padding: 80px 0;
    background: #1A1A1A;
}

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

.team-member {
    background: linear-gradient(135deg, #2D1B69 0%, #1F1F1F 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
}

.member-photo {
    text-align: center;
    margin-bottom: 30px;
}

.member-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00D4FF;
}

.member-info h3 {
    color: #E5E5E5;
    font-size: 1.5rem;
    margin-bottom: 8px;
    text-align: center;
}

.member-title {
    color: #00D4FF;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 500;
}

.member-experience {
    color: #888;
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.member-specializations,
.member-education {
    margin-bottom: 25px;
}

.member-specializations h4,
.member-education h4 {
    color: #E5E5E5;
    font-size: 1rem;
    margin-bottom: 12px;
}

.member-specializations ul {
    list-style: none;
    padding-left: 0;
}

.member-specializations li {
    color: #B0B0B0;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.member-specializations li::before {
    content: "•";
    color: #39FF14;
    position: absolute;
    left: 0;
}

.member-education p {
    color: #B0B0B0;
    font-size: 14px;
    line-height: 1.5;
}

.member-contact p {
    color: #888;
    font-size: 13px;
    margin: 4px 0;
}

.team-values {
    padding: 80px 0;
    background: linear-gradient(135deg, #2D1B69 0%, #1A1A1A 100%);
    text-align: center;
}

.team-values h2 {
    color: #E5E5E5;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.value-card {
    background: rgba(31, 31, 31, 0.5);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #00D4FF;
    margin-bottom: 16px;
}

.value-card p {
    color: #B0B0B0;
    line-height: 1.6;
}

/* Schedule Page Styles */
.schedule-section {
    padding: 80px 0;
    background: #1A1A1A;
}

.schedule-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(31, 31, 31, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.week-nav {
    background: linear-gradient(135deg, #00D4FF 0%, #39FF14 100%);
    color: #1A1A1A;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.week-nav:hover {
    transform: scale(1.05);
}

.current-week h3 {
    color: #E5E5E5;
    margin: 0;
    font-size: 1.3rem;
}

.schedule-grid {
    background: rgba(31, 31, 31, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.schedule-header {
    display: grid;
    grid-template-columns: 100px repeat(6, 1fr);
    background: linear-gradient(135deg, #2D1B69 0%, #1F1F1F 100%);
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.time-column,
.day-column {
    padding: 20px 15px;
    text-align: center;
    color: #E5E5E5;
    font-weight: 600;
    border-right: 1px solid rgba(0, 212, 255, 0.1);
}

.day-column .date {
    display: block;
    font-size: 12px;
    color: #888;
    font-weight: normal;
}

.time-slot {
    display: grid;
    grid-template-columns: 100px repeat(6, 1fr);
    min-height: 80px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.05);
}

.time-label {
    padding: 20px 15px;
    text-align: center;
    color: #B0B0B0;
    font-weight: 500;
    border-right: 1px solid rgba(0, 212, 255, 0.1);
    background: rgba(45, 27, 105, 0.1);
}

.appointment {
    padding: 15px 10px;
    border-right: 1px solid rgba(0, 212, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.appointment.available {
    background: rgba(0, 212, 255, 0.1);
    border-left: 3px solid #00D4FF;
}

.appointment.available:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.02);
}

.appointment.occupied {
    background: rgba(255, 68, 68, 0.1);
    border-left: 3px solid #FF4444;
    cursor: not-allowed;
}

.appointment.group-session {
    background: rgba(57, 255, 20, 0.1);
    border-left: 3px solid #39FF14;
}

.appointment.break {
    background: rgba(128, 128, 128, 0.1);
    border-left: 3px solid #888;
    cursor: not-allowed;
}

.appointment.closed {
    background: rgba(68, 68, 68, 0.1);
    cursor: not-allowed;
}

.therapist {
    font-size: 12px;
    font-weight: 600;
    color: #E5E5E5;
    margin-bottom: 4px;
}

.service {
    font-size: 11px;
    color: #B0B0B0;
}

.occupied-text,
.break-text,
.closed-text {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

.lunch-break {
    display: grid;
    grid-template-columns: 100px 1fr;
    background: rgba(128, 128, 128, 0.1);
    border-bottom: 2px solid rgba(0, 212, 255, 0.1);
    align-items: center;
    min-height: 50px;
}

.break-cell {
    padding: 15px;
    text-align: center;
    color: #888;
    font-style: italic;
}

.schedule-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

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

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.available {
    background: rgba(0, 212, 255, 0.3);
    border-left: 3px solid #00D4FF;
}

.legend-color.occupied {
    background: rgba(255, 68, 68, 0.3);
    border-left: 3px solid #FF4444;
}

.legend-color.group-session {
    background: rgba(57, 255, 20, 0.3);
    border-left: 3px solid #39FF14;
}

.legend-color.break {
    background: rgba(128, 128, 128, 0.3);
    border-left: 3px solid #888;
}

.legend-item span {
    color: #B0B0B0;
    font-size: 14px;
}

.quick-booking {
    background: linear-gradient(135deg, #2D1B69 0%, #1F1F1F 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.quick-booking h3 {
    color: #E5E5E5;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.quick-booking p {
    color: #B0B0B0;
    margin-bottom: 30px;
}

.booking-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #2D1B69 0%, #1F1F1F 100%);
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #888;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #00D4FF;
}

.modal h3 {
    color: #E5E5E5;
    margin-bottom: 20px;
    text-align: center;
}

.appointment-info {
    background: rgba(31, 31, 31, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.appointment-info h4 {
    color: #00D4FF;
    margin-bottom: 15px;
}

.appointment-info p {
    color: #B0B0B0;
    margin-bottom: 8px;
}

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

.full-width {
    width: 100%;
}

/* Pricing Page Styles */
.pricing-section {
    padding: 80px 0;
    background: #1A1A1A;
}

.pricing-category {
    margin-bottom: 80px;
}

.pricing-category h2 {
    color: #E5E5E5;
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
}

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

.pricing-card {
    background: linear-gradient(135deg, #2D1B69 0%, #1F1F1F 100%);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
}

.pricing-card.featured {
    border-color: #00D4FF;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00D4FF 0%, #39FF14 100%);
    color: #1A1A1A;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header h3 {
    color: #E5E5E5;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 10px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #00D4FF;
}

.currency {
    font-size: 1.5rem;
    color: #B0B0B0;
    margin-left: 5px;
}

.duration {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    color: #B0B0B0;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    text-align: left;
}

.pricing-features li::before {
    content: "✓";
    color: #39FF14;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.packages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2D1B69 0%, #1A1A1A 100%);
}

.packages-section h2 {
    color: #E5E5E5;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.packages-intro {
    text-align: center;
    color: #B0B0B0;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

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

.package-card {
    background: rgba(31, 31, 31, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
}

.package-header h3 {
    color: #E5E5E5;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.package-sessions {
    color: #00D4FF;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.package-price {
    margin-bottom: 10px;
}

.original-price {
    color: #888;
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-right: 10px;
}

.discounted-price {
    color: #00D4FF;
    font-size: 2.5rem;
    font-weight: 700;
}

.package-savings {
    color: #39FF14;
    font-weight: 600;
    margin-bottom: 30px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.package-features li {
    color: #B0B0B0;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    text-align: left;
}

.package-features li::before {
    content: "✓";
    color: #39FF14;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.payment-section {
    padding: 80px 0;
    background: #1A1A1A;
}

.payment-section h2 {
    color: #E5E5E5;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

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

.payment-card {
    background: linear-gradient(135deg, #2D1B69 0%, #1F1F1F 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.payment-card h3 {
    color: #00D4FF;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.payment-card ul {
    list-style: none;
    padding: 0;
}

.payment-card li {
    color: #B0B0B0;
    margin-bottom: 10px;
    font-size: 14px;
}

.pricing-note {
    background: rgba(31, 31, 31, 0.5);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.pricing-note p {
    color: #E5E5E5;
    margin-bottom: 15px;
    font-weight: 600;
}

.pricing-note ul {
    color: #B0B0B0;
    padding-left: 20px;
}

.pricing-note li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.pricing-info {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-info p {
    color: #B0B0B0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Blog Page Styles */
.featured-article {
    padding: 80px 0;
    background: linear-gradient(135deg, #2D1B69 0%, #1A1A1A 100%);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.article-category {
    color: #00D4FF;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.featured-text h2 {
    color: #E5E5E5;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-text p {
    color: #B0B0B0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 14px;
}

.article-meta .author {
    color: #00D4FF;
    font-weight: 500;
}

.article-meta .date,
.article-meta .read-time {
    color: #888;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.blog-categories {
    padding: 40px 0;
    background: #1A1A1A;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.categories-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-btn {
    background: transparent;
    color: #B0B0B0;
    border: 2px solid rgba(0, 212, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, #00D4FF 0%, #39FF14 100%);
    color: #1A1A1A;
    border-color: transparent;
}

.blog-articles {
    padding: 80px 0;
    background: #1A1A1A;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.article-card {
    background: linear-gradient(135deg, #2D1B69 0%, #1F1F1F 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #00D4FF 0%, #39FF14 100%);
    color: #1A1A1A;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.article-content {
    padding: 30px;
}

.article-content h3 {
    color: #E5E5E5;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-content p {
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #00D4FF;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #39FF14;
}

.load-more-container {
    text-align: center;
}

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2D1B69 0%, #1A1A1A 100%);
    text-align: center;
}

.newsletter-content h2 {
    color: #E5E5E5;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-content p {
    color: #B0B0B0;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    color: #E5E5E5;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00D4FF;
}

.newsletter-form button {
    padding: 16px 32px;
    border-radius: 50px;
    white-space: nowrap;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: #1A1A1A;
}

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

.contact-info h2 {
    color: #E5E5E5;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon {
    font-size: 2rem;
    width: 50px;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #00D4FF;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-details p {
    color: #E5E5E5;
    margin-bottom: 5px;
}

.contact-details a {
    color: #00D4FF;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-note {
    color: #888;
    font-size: 14px;
}

.quick-actions {
    margin: 40px 0;
}

.quick-actions h3 {
    color: #E5E5E5;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(31, 31, 31, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    color: #E5E5E5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-btn:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.1);
}

.action-icon {
    font-size: 1.5rem;
}

.social-media {
    margin-top: 40px;
}

.social-media h3 {
    color: #E5E5E5;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-media .social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-media .social-links a {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-media .social-links a:hover {
    color: #00D4FF;
}

.contact-form {
    background: linear-gradient(135deg, #2D1B69 0%, #1F1F1F 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.contact-form h2 {
    color: #E5E5E5;
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-form > p {
    color: #B0B0B0;
    margin-bottom: 30px;
}

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

.form-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.form-note p {
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-map {
    padding: 80px 0;
    background: linear-gradient(135deg, #2D1B69 0%, #1A1A1A 100%);
}

.contact-map h2 {
    color: #E5E5E5;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.map-details h3 {
    color: #00D4FF;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.transport-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.transport-option {
    background: rgba(31, 31, 31, 0.5);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.transport-option h4 {
    color: #E5E5E5;
    margin-bottom: 10px;
    font-size: 1rem;
}

.transport-option p {
    color: #B0B0B0;
    font-size: 14px;
    line-height: 1.5;
}

.faq-section {
    padding: 80px 0;
    background: #1A1A1A;
}

.faq-section h2 {
    color: #E5E5E5;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #2D1B69 0%, #1F1F1F 100%);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.05);
}

.faq-question h3 {
    color: #E5E5E5;
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    color: #00D4FF;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    color: #B0B0B0;
    padding: 0 30px 25px;
    margin: 0;
    line-height: 1.6;
}

/* Privacy Policy Styles */
.privacy-content {
    padding: 80px 0;
    background: #1A1A1A;
}

.privacy-document {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2D1B69 0%, #1F1F1F 100%);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.document-info {
    background: rgba(31, 31, 31, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.document-info p {
    color: #B0B0B0;
    margin-bottom: 8px;
    font-size: 14px;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    color: #00D4FF;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
    padding-bottom: 10px;
}

.privacy-section h3 {
    color: #E5E5E5;
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.privacy-section h4 {
    color: #00D4FF;
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.privacy-section p {
    color: #B0B0B0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-section ul {
    color: #B0B0B0;
    padding-left: 25px;
    margin-bottom: 20px;
}

.privacy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-box {
    background: rgba(31, 31, 31, 0.5);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    margin: 20px 0;
}

.contact-box p {
    color: #E5E5E5;
    margin: 0;
    line-height: 1.6;
}

.purpose-item {
    background: rgba(31, 31, 31, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #00D4FF;
}

.purpose-item h3 {
    color: #E5E5E5;
    margin-bottom: 10px;
}

.document-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.document-footer p {
    color: #888;
    font-size: 14px;
    font-style: italic;
    text-align: center;
}

/* Responsive Design for Additional Styles */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .service-detailed {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-detailed:nth-child(even) {
        direction: ltr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-header,
    .time-slot {
        grid-template-columns: 80px repeat(6, 1fr);
        font-size: 12px;
    }
    
    .time-column,
    .day-column {
        padding: 15px 8px;
    }
    
    .appointment {
        padding: 10px 5px;
    }
    
    .therapist {
        font-size: 10px;
    }
    
    .service {
        font-size: 9px;
    }
    
    .schedule-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .booking-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .featured-content,
    .contact-grid,
    .map-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .transport-info {
        grid-template-columns: 1fr;
    }
    
    .privacy-document {
        padding: 30px 20px;
    }
    
    .pricing-grid,
    .packages-grid,
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
}