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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    overflow-x: hidden;
}

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

.main-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-link {
    color: #1f2937;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #2563eb;
}

.burger-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
}

.burger-line {
    width: 100%;
    height: 0.125rem;
    background: #374151;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.burger-line:nth-child(1) {
    top: 0.25rem;
}

.burger-line:nth-child(2) {
    top: 0.75rem;
}

.burger-line:nth-child(3) {
    top: 1.25rem;
}

.burger-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg);
    top: 0.75rem;
}

.burger-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg);
    top: 0.75rem;
}

.page-content {
    margin-top: 5rem;
}

.hero-banner {
    padding: 4rem 0;
}

.hero-banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-text {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.cta-button {
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.cta-button.primary {
    background: #2563eb;
    color: white;
}

.cta-button.primary:hover {
    background: #1d4ed8;
}

.cta-button.secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.cta-button.secondary:hover {
    background: #2563eb;
    color: white;
}

.cta-button.large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.features-grid {
    padding: 4rem 0;
    background: #f8fafc;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #111827;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

.studio-showcase {
    padding: 4rem 0;
}

.gallery-item {
    display: none;
}

.gallery-item.active {
    display: block;
}

.gallery-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

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

.gallery-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: -2rem;
}

.gallery-prev, .gallery-next {
    padding: 0.75rem 1.5rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gallery-prev:hover, .gallery-next:hover {
    background: #1d4ed8;
}

.equipment-section {
    padding: 4rem 0;
    background: #0f172a;
    color: white;
}

.equipment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.equipment-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.equipment-list {
    list-style: none;
    margin-bottom: 2rem;
}

.equipment-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #334155;
    color: #e2e8f0;
}

.equipment-item:last-child {
    border-bottom: none;
}

.equipment-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

.pricing-preview {
    padding: 4rem 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    border: 2px solid #e5e7eb;
}

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

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.plan-price span {
    font-size: 1rem;
    color: #6b7280;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-included, .feature-excluded {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.feature-included:before {
    content: "✓ ";
    color: #10b981;
}

.feature-excluded:before {
    content: "✗ ";
    color: #ef4444;
}

.testimonial-carousel {
    padding: 4rem 0;
    background: #f8fafc;
}

.carousel-container {
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.testimonial-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.testimonial-author {
    font-weight: 600;
    color: #111827;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: #2563eb;
}

.booking-process {
    padding: 4rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.step-number {
    width: 3rem;
    height: 3rem;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.step-description {
    color: #6b7280;
    line-height: 1.6;
}

.team-showcase {
    padding: 4rem 0;
    background: #0f172a;
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.member-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.member-role {
    color: #cbd5e1;
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-bio {
    color: #94a3b8;
    line-height: 1.6;
}

.cta-final {
    padding: 4rem 0;
    background: #1e293b;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.main-footer {
    background: #111827;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.link-group-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-link {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .burger-toggle {
        display: flex;
    }

    .hero-banner .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .testimonial-slide.active {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .equipment-content {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .hero-banner, .features-grid, .studio-showcase, .equipment-section, .pricing-preview, .testimonial-carousel, .booking-process, .team-showcase, .cta-final {
        padding: 2rem 0;
    }

    .feature-card, .pricing-card {
        padding: 1.5rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
    }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
.faq-preview {
    padding: 4rem 0;
    background: #f8fafc;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-intro {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.faq-items {
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

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

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

@media (max-width: 768px) {
    .faq-content {
        grid-template-columns: 1fr;
    }
}
.about-hero {
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    color: white;
    padding: 6rem 0 4rem;
    margin-top: 5rem;
    width: 100%;
    overflow: hidden;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: center;
    color: white;
}

.about-hero-text {
    font-size: 1.25rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: #d1d5db;
}

.history-timeline {
    padding: 4rem 0;
    background: #f8fafc;
    width: 100%;
    overflow: hidden;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2563eb;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    width: 4rem;
    height: 4rem;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    flex: 1;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.timeline-description {
    color: #6b7280;
    line-height: 1.6;
}

.mission-values {
    padding: 4rem 0;
    width: 100%;
    overflow: hidden;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.mission-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.value-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.value-description {
    color: #6b7280;
    line-height: 1.5;
}

.mission-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    max-width: 100%;
}

.team-section {
    padding: 4rem 0;
    background: #0f172a;
    color: white;
    width: 100%;
    overflow: hidden;
}

.team-section .section-heading {
    color: white;
}

.team-section .section-subtitle {
    color: #cbd5e1;
}

.team-grid-large {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member-large {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.member-photo-large {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 1rem;
    max-width: 100%;
}

.member-name-large {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.member-role-large {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.member-bio-large {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #94a3b8;
}

.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    width: 100%;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

.facility-tour {
    padding: 4rem 0;
    background: #f8fafc;
    width: 100%;
    overflow: hidden;
}

.tour-item {
    display: none;
}

.tour-item.active {
    display: block;
}

.tour-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

.tour-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.tour-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.tour-info p {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

.tour-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tour-prev, .tour-next {
    padding: 0.75rem 1.5rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
    min-width: 100px;
}

.tour-prev:hover, .tour-next:hover {
    background: #1d4ed8;
}

.tour-dots {
    display: flex;
    gap: 0.5rem;
}

.tour-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: background 0.3s ease;
}

.tour-dot.active {
    background: #2563eb;
}

.awards-section {
    padding: 4rem 0;
    width: 100%;
    overflow: hidden;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.award-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.award-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.award-organization {
    color: #6b7280;
}

.community-section {
    padding: 4rem 0;
    background: #0f172a;
    color: white;
    width: 100%;
    overflow: hidden;
}

.community-section .section-heading {
    color: white;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.community-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.community-features {
    display: grid;
    gap: 1.5rem;
}

.community-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.community-feature p {
    color: #94a3b8;
    line-height: 1.5;
}

.community-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    max-width: 100%;
}

.sustainability-section {
    padding: 4rem 0;
    background: #f0fdf4;
    width: 100%;
    overflow: hidden;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.sustainability-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.sustainability-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.sustainability-item p {
    color: #6b7280;
    line-height: 1.6;
}

.future-vision {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    color: white;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.future-vision .section-heading {
    color: white;
}

.vision-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #d1d5db;
    line-height: 1.6;
}

.vision-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member-large {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .community-content {
        grid-template-columns: 1fr;
    }
    
    .sustainability-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-container::before {
        left: 2rem;
    }
    
    .timeline-year {
        width: 3rem;
        height: 3rem;
        font-size: 0.875rem;
    }
    
    .tour-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tour-prev, .tour-next {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 320px) {
    .about-hero {
        padding: 4rem 0 2rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .about-hero-text {
        font-size: 1.125rem;
        padding: 0 0.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .tour-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tour-prev, .tour-next {
        width: 100%;
        min-width: auto;
    }
    
    .timeline-container {
        padding: 0 0.5rem;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-year {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .mission-content,
    .community-content {
        gap: 2rem;
    }
    
    .member-photo-large,
    .mission-image,
    .community-image,
    .tour-image {
        height: 250px;
    }
    
    .team-member-large {
        gap: 1.5rem;
    }
    
    .member-name-large {
        font-size: 1.5rem;
    }
    
    .member-bio-large {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .section-heading {
        font-size: 1.75rem;
        padding: 0 0.5rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
        padding: 0 0.5rem;
    }
    
    .vision-actions .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}
.section-heading-light {
    color: white !important;
}
.scroll-animate {
    opacity: 0;
    transform: translateY(3rem);
    transition: all 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
.studio-scroll-animate {
    opacity: 0;
    transform: translateY(3rem);
    transition: all 0.8s ease;
}

.studio-scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.studios-hero {
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.studios-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.studios-hero-text {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: #d1d5db;
}

.studio-features {
    padding: 4rem 0;
    background: #f8fafc;
}

.studio-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-block {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-block-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.feature-block-text {
    color: #6b7280;
    line-height: 1.6;
}

.studio-showcase-main {
    padding: 4rem 0;
}

.studio-cards-grid {
    display: grid;
    gap: 3rem;
}

.studio-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.studio-card-image {
    position: relative;
}

.studio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.studio-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.studio-card-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.studio-card-size {
    color: #6b7280;
    margin-bottom: 1rem;
    font-weight: 500;
}

.studio-card-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.studio-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.studio-feature {
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.studio-card-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cta-button-text {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-button-text:hover {
    color: #1d4ed8;
}

.studio-comparison {
    padding: 4rem 0;
    background: #0f172a;
    color: white;
}

.studio-comparison .section-heading {
    color: white;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.comparison-card {
    background: #1e293b;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.comparison-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.comparison-specs {
    display: grid;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #374151;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #cbd5e1;
    font-weight: 500;
}

.spec-value {
    color: white;
    font-weight: 600;
}

.studio-gallery {
    padding: 4rem 0;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1rem;
    grid-template-areas: 
        "large large item2 item3"
        "large large item4 item5";
}

.mosaic-item {
    border-radius: 0.5rem;
    overflow: hidden;
}

.mosaic-item.large {
    grid-area: large;
}

.mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-tech {
    padding: 4rem 0;
    background: #f8fafc;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tech-specs {
    display: grid;
    gap: 1.5rem;
}

.tech-spec h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.tech-spec p {
    color: #6b7280;
    line-height: 1.5;
}

.tech-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

.studio-booking-process {
    padding: 4rem 0;
}

.booking-steps {
    display: grid;
    gap: 3rem;
}

.booking-step {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.step-visual {
    position: relative;
}

.step-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #2563eb;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 1rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1.125rem;
}

.studio-testimonials {
    padding: 4rem 0;
    background: #0f172a;
    color: white;
}

.studio-testimonials .section-heading {
    color: white;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #1e293b;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.testimonial-role {
    color: #94a3b8;
    font-size: 0.875rem;
}

.studio-faq {
    padding: 4rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-question {
    width: 100%;
    padding: 1.5rem 3rem 1.5rem 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1.125rem;
    position: relative;
}

.accordion-question:hover {
    background: #f9fafb;
}

.accordion-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-question.active::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

.accordion-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

.accordion-answer p {
    color: #6b7280;
    line-height: 1.6;
}

.studio-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    text-align: center;
}

.studio-cta .section-heading {
    color: white;
}

.cta-title-studio {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text-studio {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

.cta-actions-studio {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #2563eb;
}

@media (max-width: 768px) {
    .studio-features-grid {
        grid-template-columns: 1fr;
    }
    
    .studio-card {
        grid-template-columns: 1fr;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    
    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: 
            "large"
            "item2"
            "item3"
            "item4"
            "item5";
    }
    
    .tech-content {
        grid-template-columns: 1fr;
    }
    
    .booking-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-actions-studio {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .studios-hero-title {
        font-size: 2rem;
    }
    
    .studio-card-actions {
        flex-direction: column;
    }
    
    .studio-features-list {
        justify-content: center;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
.pricing-scroll-animate {
    opacity: 0;
    transform: translateY(3rem);
    transition: all 0.8s ease;
}

.pricing-scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
.pricing-hero {
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.pricing-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-hero-text {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #d1d5db;
}

.pricing-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
    .pricing-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 320px) {
    .pricing-hero-title {
        font-size: 2rem;
    }
    
    .pricing-badges {
        flex-direction: column;
        align-items: center;
    }
}
.pricing-tiers {
    padding: 4rem 0;
    background: #f8fafc;
}

.tiers-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tier-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    border: 2px solid #e5e7eb;
}

.tier-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
}

.tier-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.tier-header {
    margin-bottom: 2rem;
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.tier-price {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.tier-price span {
    font-size: 1rem;
    color: #6b7280;
}

.tier-description {
    color: #6b7280;
    line-height: 1.5;
}

.tier-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.feature-included, .feature-excluded {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
}

.feature-included:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.feature-excluded:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

@media (max-width: 768px) {
    .tiers-container {
        grid-template-columns: 1fr;
    }
    
    .tier-card.featured {
        transform: none;
    }
}
.package-deals {
    padding: 4rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #e5e7eb;
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.package-duration {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}
.equipment-pricing {
    padding: 4rem 0;
    background: #0f172a;
    color: white;
}

.equipment-pricing .section-heading {
    color: white;
}

.equipment-pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.equipment-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.equipment-categories {
    display: grid;
    gap: 2rem;
}

.category h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.category-items {
    display: grid;
    gap: 1rem;
}

.equipment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #374151;
}

.equipment-item:last-child {
    border-bottom: none;
}

.item-name {
    color: #cbd5e1;
}

.item-price {
    color: white;
    font-weight: 600;
}

.equipment-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

@media (max-width: 768px) {
    .equipment-pricing-content {
        grid-template-columns: 1fr;
    }
    
    .equipment-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
.pricing-calculator {
    padding: 4rem 0;
    background: #f8fafc;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-inputs {
    display: grid;
    gap: 1.5rem;
}

.input-group {
    display: grid;
    gap: 0.5rem;
}

.input-group label {
    font-weight: 600;
    color: #111827;
}

.input-group select, .input-group input {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: white;
}

.calculator-result {
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    width: 100%;
}

.result-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.total-price {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.result-note {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }
}
.pricing-gallery {
    padding: 4rem 0;
    background: white;
}

.pricing-gallery-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.pricing-gallery-main {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.pricing-gallery-featured {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.pricing-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
}

.pricing-gallery-side {
    display: grid;
    gap: 1.5rem;
}

.pricing-gallery-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.pricing-gallery-item:hover {
    background: #f1f5f9;
}

.pricing-gallery-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 0.375rem;
}

.pricing-gallery-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #111827;
}

.pricing-gallery-info p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .pricing-gallery-showcase {
        grid-template-columns: 1fr;
    }
    
    .pricing-gallery-featured {
        height: 300px;
    }
    
    .pricing-gallery-item {
        grid-template-columns: 80px 1fr;
    }
    
    .pricing-gallery-thumb {
        height: 60px;
    }
}
.pricing-faq {
    padding: 4rem 0;
    background: #f8fafc;
}

.faq-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-pricing-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.faq-pricing-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.faq-pricing-item p {
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-pricing-grid {
        grid-template-columns: 1fr;
    }
}
.pricing-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    text-align: center;
}

.pricing-cta .section-heading {
    color: white;
}

.pricing-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

.pricing-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .pricing-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
.pricing-showcase {
    padding: 4rem 0;
    background: white;
}

.pricing-showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.showcase-features {
    display: grid;
    gap: 1.5rem;
}

.showcase-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.showcase-feature p {
    color: #6b7280;
    line-height: 1.5;
}

.showcase-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .pricing-showcase-content {
        grid-template-columns: 1fr;
    }
    
    .showcase-image {
        height: 300px;
    }
}
.services-scroll-animate {
    opacity: 0;
    transform: translateY(3rem);
    transition: all 0.8s ease;
}

.services-scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-hero {
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.services-hero-text {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: #d1d5db;
}

.services-tabs {
    padding: 4rem 0;
    background: #f8fafc;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.tab-button:hover:not(.active) {
    border-color: #2563eb;
    color: #2563eb;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tab-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

.tab-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.tab-text p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.equipment-categories,
.support-features,
.production-services {
    display: grid;
    gap: 1.5rem;
}

.equipment-category h4,
.support-feature h4,
.production-service h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.equipment-category p,
.support-feature p,
.production-service p {
    color: #6b7280;
    line-height: 1.5;
}

.services-grid {
    padding: 4rem 0;
}

.services-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.mosaic-large {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.mosaic-img-big {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.mosaic-content {
    padding: 2rem;
}

.mosaic-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.mosaic-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mosaic-small {
    display: grid;
    gap: 1.5rem;
}

.service-mini {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
}

.mini-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-mini h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.service-mini p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.875rem;
}

.services-process {
    padding: 4rem 0;
    background: #0f172a;
    color: white;
}

.services-process .section-heading {
    color: white;
}

.process-diagonal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.process-steps-diagonal {
    display: grid;
    gap: 2rem;
}

.process-step-diag {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
}

.step-number-diag {
    width: 3rem;
    height: 3rem;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.process-step-diag h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.process-step-diag p {
    color: #cbd5e1;
    line-height: 1.5;
}

.diagonal-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
}

.services-equipment {
    padding: 4rem 0;
    background: #f8fafc;
}

.equipment-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.equipment-scroll {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.equipment-item-scroll {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
}

.equipment-img-scroll {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
}

.equipment-info-scroll h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.equipment-info-scroll p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.equipment-specs {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.equipment-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
    color: #6b7280;
}

.equipment-specs li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.services-support {
    padding: 4rem 0;
}

.support-asymmetric {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.support-intro {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.support-options {
    display: grid;
    gap: 1.5rem;
}

.support-option {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 2px solid #e5e7eb;
    position: relative;
}

.support-option.featured {
    border-color: #2563eb;
    transform: scale(1.05);
}

.support-option h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.support-option p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.support-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.support-side {
    position: relative;
}

.support-side-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

.support-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.services-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    text-align: center;
}

.services-cta .section-heading {
    color: white;
}

.services-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

.services-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .tabs-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-panel.active {
        grid-template-columns: 1fr;
    }
    
    .services-mosaic {
        grid-template-columns: 1fr;
    }
    
    .process-diagonal {
        grid-template-columns: 1fr;
    }
    
    .equipment-item-scroll {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .support-asymmetric {
        grid-template-columns: 1fr;
    }
    
    .support-option.featured {
        transform: none;
    }
    
    .services-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .services-hero-title {
        font-size: 2rem;
    }
    
    .tab-button {
        width: 100%;
        text-align: center;
    }
    
    .process-step-diag {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-number-diag {
        margin: 0 auto 1rem;
    }
}
.legal-hero {
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    color: white;
    padding: 6rem 0 3rem;
    text-align: center;
}

.legal-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-hero-text {
    font-size: 1.125rem;
    color: #d1d5db;
}

.legal-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.legal-sections {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.legal-section p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.0625rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-hero-title {
        font-size: 2.5rem;
    }
    
    .legal-section {
        padding: 2rem;
    }
}

@media (max-width: 320px) {
    .legal-hero-title {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
}
.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    color: white;
    text-align: center;
}

.thank-you-content {
    max-width: 500px;
    padding: 2rem;
}

.thank-you-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #10b981;
}

.thank-you-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.thank-you-text {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #d1d5db;
    line-height: 1.6;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .thank-you-title {
        font-size: 2.5rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .thank-you-title {
        font-size: 2rem;
    }
    
    .thank-you-content {
        padding: 1rem;
    }
}
body.thank-you-page {
    margin: 0;
    padding: 0;
}

body.thank-you-page .main-header,
body.thank-you-page .main-footer {
    display: none;
}

body.thank-you-page .page-content {
    margin-top: 0;
}
.portfolio-scroll-animate {
    opacity: 0;
    transform: translateY(3rem);
    transition: all 0.8s ease;
}

.portfolio-scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-hero {
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.portfolio-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.portfolio-hero-text {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: #d1d5db;
}

.portfolio-filter {
    padding: 2rem 0;
    background: #f8fafc;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.filter-btn:hover:not(.active) {
    border-color: #2563eb;
    color: #2563eb;
}

.portfolio-galer {
    padding: 4rem 0;
}

.galer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.galer-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

.galer-item:hover .galer-image {
    transform: scale(1.05);
}

.galer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galer-item:hover .galer-overlay {
    transform: translateY(0);
}

.galer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.galer-category {
    font-size: 0.875rem;
    opacity: 0.8;
}

.portfolio-featured {
    padding: 4rem 0;
    background: #f8fafc;
}

.featured-project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
}

.featured-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.featured-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.project-details {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.project-detail h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.project-detail p {
    color: #6b7280;
}

.portfolio-testimonials {
    padding: 4rem 0;
}

.testimonial-cards-portfolio {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card-portfolio {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
}

.testimonial-quote-portfolio {
    font-style: italic;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author-portfolio {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #111827;
}

.testimonial-role-portfolio {
    color: #6b7280;
    font-size: 0.875rem;
}

.portfolio-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    text-align: center;
}

.portfolio-cta .section-heading {
    color: white;
}

.portfolio-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.portfolio-cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

.portfolio-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .portfolio-hero-title {
        font-size: 2.5rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .galer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-project {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .testimonial-cards-portfolio {
        grid-template-columns: 1fr;
    }
    
    .portfolio-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .portfolio-hero-title {
        font-size: 2rem;
    }
    
    .galer-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        width: 100%;
        text-align: center;
    }
}