/* Hero Section */
.hero-section {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%),
        url('/images/urban-hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    padding: 80px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(228, 10, 129);
    margin-top: 0;
}

.circle-icon {
    width: 80px;
    height: 80px;
    background-color: rgb(228, 10, 129);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0;
}

/* Product Sections */
.product-section {
    padding: 100px 0;
    background-color: #000;
    position: relative;
}

.product-dark-section {
    background-color: #000;
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.product-dark-section .container {
    display: flex;
    justify-content: center;
}

.product-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 400px;
}

.product-label {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    padding-left: 10px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.product-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 9.5vh;
    width: 1px;
    background-color: rgb(228, 10, 129);
}

.product-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 0.8;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    margin-top: 7px;
}

.product-description {
    font-size: 18px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 300;
    margin-left: 10px;
}

/* Individual section backgrounds */
#advanced-cutting-section {
    background-image: url('/images/smart-cut-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* Dark overlay to make images barely visible */
.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.section-label {
    color: rgb(228, 10, 129);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Feature Boxes */
.feature-box {
    background-color: rgba(0, 0, 0, 0.7);
    border-left: 3px solid rgb(228, 10, 129);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: rgb(228, 10, 129);
}

.feature-description {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0;
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background-color: #000;
}

.step-item {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.step-number {
    font-size: 6rem;
    font-weight: 700;
    color: rgb(228, 10, 129);
    line-height: 1;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-description {
    font-size: 1rem;
    color: #ddd;
    max-width: 300px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #111;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-question {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: rgb(228, 10, 129);
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
    content: '+';
}

.faq-answer {
    font-size: 1rem;
    color: #ddd;
    display: none;
}

.faq-answer.show {
    display: block;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: #000;
}

.review-slider {
    margin-top: 40px;
}

.review-item {
    background-color: #111;
    border-radius: 5px;
    padding: 30px;
    margin: 0 15px;
}

.review-content {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 20px;
    position: relative;
}

.review-content::before {
    content: '\201C';
    font-size: 4rem;
    color: rgb(228, 10, 129);
    opacity: 0.3;
    position: absolute;
    top: -30px;
    left: -10px;
    z-index: -1;
}

.review-author {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.review-position {
    font-size: 0.9rem;
    color: rgb(228, 10, 129);
}

/* Download Button */
.download-btn {
    background-color: rgb(228, 10, 129);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #c2185b;
    color: #fff;
}

/* FAQ Tab Styling */
.nav-tabs .nav-link {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active {
    color: rgb(228, 10, 129);
    border-bottom: 2px solid rgb(228, 10, 129);
    background-color: transparent;
}

.accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #333;
    margin-bottom: 15px;
}

.accordion-button {
    background-color: transparent;
    color: #fff;
    border: none;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 400;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button:hover {
    color: rgb(228, 10, 129);
}

.accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 20px;
    color: rgb(228, 10, 129);
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none;
}

.accordion-body {
    color: #ccc;
    font-size: 14px;
    padding: 15px 0;
    border-top: 1px solid #333;
}

/* Smart Cut System Section */
.smart-cut-system-section {
    background-color: #000;
    position: relative;
    padding: 60px 0 80px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.smart-cut-system-section:hover {
    transform: scale(1.02);
}

.smart-cut-bg-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    opacity: 0.5;
    object-position: right bottom;
}

/* Smart Cut System Video */
.smart-cut-system-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.smart-cut-system-video.show {
    opacity: 1;
    visibility: visible;
}

.smart-cut-system-section.video-playing {
    background-image: none !important;
}

.smart-cut-system-section.video-playing .smart-cut-bg-image {
    opacity: 0;
}

/* Smart Cut System Video Gradient Overlay */
.smart-cut-system-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.smart-cut-system-section.video-playing::after {
    opacity: 1;
    visibility: visible;
}

.smart-cut-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 120px 15px;
    max-width: 500px;
}

.smart-cut-heading {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
}

.smart-cut-text {
    color: #b9b9b9;
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 25px;
}

/* Advanced Features Section */
.advanced-features-section {
    background-color: #000;
    padding: 60px 0 30px;
}

.features-heading {
    text-align: center;
    margin-bottom: 40px;
}

.features-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px;
}

.features-divider {
    width: 100px;
    height: 2px;
    background-color: rgb(228, 10, 129);
    margin: 0 auto;
}

.feature-item {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.feature-box-content {
    width: 250px;
    background-color: #333;
    padding: 20px;
    margin-right: 20px;
}

.feature-box-title {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-heading {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.feature-text {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

/* Reverse layout for alternating features */
.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-item.reverse .feature-box-content {
    margin-right: 0;
    margin-left: 20px;
}

.feature-item.reverse .feature-heading {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .step-number {
        font-size: 4rem;
    }

    .feature-item,
    .feature-item.reverse {
        flex-direction: column;
        align-items: center;
    }

    .feature-box-content {
        margin: 0 0 20px 0 !important;
        width: 100%;
        max-width: 300px;
    }

    .feature-box-title {
        width: 100%;
        max-width: 300px;
    }

    .smart-cut-text {
        font-size: 18px;
    }

    .smart-cut-content {
        padding: 60px 15px;
    }
}
