/* Smart Choice Section - Dark Theme with Golden Title */
.smart-choice-section {
    background-color: var(--black);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.smart-choice-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.smart-choice-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 30px 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.smart-choice-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #E0E0E0;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 0.9;
}

/* Background Pattern/Effect */
.smart-choice-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Animation */
.smart-choice-title,
.smart-choice-description {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.smart-choice-description {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 991px) {
    .smart-choice-section {
        padding: 80px 0;
    }

    .smart-choice-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .smart-choice-description {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 767px) {
    .smart-choice-section {
        padding: 60px 0;
    }

    .smart-choice-container {
        padding: 0 15px;
    }

    .smart-choice-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }

    .smart-choice-description {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media screen and (max-width: 479px) {
    .smart-choice-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }

    .smart-choice-description {
        font-size: 0.95rem;
    }
}

/* Hover Effects */
.smart-choice-section:hover .smart-choice-title {
    color: #E6B366;
    transition: color 0.3s ease;
}

.smart-choice-section:hover .smart-choice-description {
    opacity: 1;
    transition: opacity 0.3s ease;
}


