#production {
        --max-width: 800px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.primary-button:hover {
    background-color: rgb(30, 30, 30);
    transform: translateY(-2px);
}

.primary-button:focus {
    outline: 2px solid rgb(255, 136, 0);
    outline-offset: 2px;
}

.secondary-button:hover {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    transform: translateY(-2px);
}

.secondary-button:focus {
    outline: 2px solid rgb(255, 136, 0);
    outline-offset: 2px;
}

/* Base styles */
.top-spacer {
    height: 50px;
    background-color: rgb(255, 255, 255);
}

.main-layout {
    display: flex;
    min-height: 100vh;
    font-family: Inter, sans-serif;
}

.sidebar {
    width: 300px;
    background-color: rgb(255, 255, 255);
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

@media (max-width: 991px) {
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        padding: 20px;
    }
}

.logo-container {
    margin-bottom: 50px;
    text-align: center;
}

.studio-logo {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 120px;
    height: 120px;
    overflow: hidden;
}

.main-navigation {
    margin-bottom: 30px;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 19.5px;
    margin-bottom: 8px;
    cursor: pointer;
    padding: 10px;
}

.nav-button.active {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 19.5px;
    margin-bottom: 8px;
    cursor: pointer;
    padding: 10px;
    background-color: rgb(248, 248, 248);
    border-left: 3px solid rgb(255, 136, 0);
}

.contact-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.booking-button {
    width: 100%;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 15px;
    text-align: center;
    cursor: pointer;
    position: relative;
    font-size: 12px;
    font-weight: 300;
    border: none;
}

.booking-indicator {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: rgb(255, 136, 0);
    border-radius: 50%;
}

.content-area {
    flex: 1;
    margin-left: 300px;
    padding: 40px 60px;
    background-color: rgb(255, 255, 255);
}

@media (max-width: 991px) {
    .content-area {
        margin-left: 0;
        padding: 30px 20px;
    }
}

.page-header {
    margin-bottom: 80px;
    text-align: left;
}

.prod-page-header {
    margin-bottom: 40px;
    text-align: left;
}


.page-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 30px;
    color: rgb(0, 0, 0);
}

@media (max-width: 640px) {
    .page-title {
        font-size: 36px;
    }
}

.title-underline {
    width: 80px;
    height: 3px;
    background-color: rgb(255, 136, 0);
    margin: 0 auto 40px;
}

.hero-image {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: 28% 72%;
    width: 100%;
    max-width: 1100px;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.prod-image {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: 43% 57%;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-description {
    margin-bottom: 60px;
}

.prod-description {
    padding: 0px 20px 0px 20px;
    margin-bottom: 30px;
    font-weight: 400;
}

.service-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
    color: rgb(0, 0, 0);
}

@media (max-width: 640px) {
    .service-title {
        font-size: 24px;
    }
}

.service-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgb(60, 60, 60);
    max-width: 800px;
}

@media (max-width: 640px) {
    .service-text {
        font-size: 16px;
    }
}

.service-features {
    margin-bottom: 80px;
}

h4.service-content {
    padding-bottom:20px;
}

.features-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
    color: rgb(0, 0, 0);
}

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

.prod-features-grid {
    display: flex;
    grid-template-columns: repeat(5, minmax(0, 1fr));;
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.feature-card {
    background-color: rgb(248, 248, 248);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.prod-feature-card {
    padding: 0px;
    text-align: center;
}

.feature-image {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 190px;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.feature-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: rgb(0, 0, 0);
}

.cta-section {
    background-color: rgb(248, 248, 248);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 60px;
}

@media (max-width: 640px) {
    .cta-section {
        padding: 40px 20px;
    }
}

.cta-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    color: rgb(0, 0, 0);
}

@media (max-width: 640px) {
    .cta-title {
        font-size: 22px;
    }
}

.cta-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgb(60, 60, 60);
    margin-bottom: 30px;
    max-width: 600px;
    margin: 0 auto 30px;
}

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

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.primary-button {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button {
    background-color: transparent;
    color: rgb(0, 0, 0);
    padding: 15px 30px;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prod-secondary-button {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 12px 20px;
    border: 2px solid rgb(0, 0, 0);
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}


.bottom-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(255, 255, 255);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 13px;
    font-weight: 500;
    border-top: 1px solid rgb(240, 240, 240);
    z-index: 1000;
}

@media (max-width: 991px) {
    .bottom-footer {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 12px;
    }
}

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

.copyright {
    margin-left: auto;
    color: rgb(128, 128, 128);
    font-size: 12px;
}

@media (max-width: 991px) {
    .copyright {
        width: 100%;
        text-align: center;
    }
}
