/* Landing Page Hero Section Styles */
.hero {

    padding: 20px 30px 30px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    
}

.prices {
    display: flex;
    width: 100%;
    margin: 5px;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    color: white !important;
}

/* Remove existing decorative elements */
.hero::before,
.hero::after {
    display: none;
}

/* Background decorative shapes - REMOVED */

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
  
}

.hero-content {
    padding-right: 0;
    max-width: none;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1f2937;
    font-family: 'Poppins', sans-serif;
}

.hero-title span {
    color: inherit;
    position: relative;
    display: inline;
}

.hero-title span::after {
    display: none;
}

.hero-description {

    font-size: 20pt !important;
    line-height: 1.6;
    color: #4b5563;
    font-weight: 400;
}

.hero-description strong {
    font-weight: 600;
    color: #1f2937;
}

.hero-features {


    list-style: none;
    padding: 0;
    margin: 0 0 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hero-features li {
    position: relative;
    padding-left: 40px;
    color: #4b5563;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
}

.hero-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 5px;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #fdbb04, #ff9900);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 94, 0, 0.3);
}

.hero-cta {

    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, #FF5E00, #FF7A33);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 94, 0, 0.3);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 94, 0, 0.4);
    background: linear-gradient(135deg, #ff4800, #ff8f33);
}

.hero-cta .btn-secondary {
    background: white;
    color: #FF5E00;
    padding: 1rem 2rem;
    border: 2px solid #FF5E00;;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-cta .btn-secondary:hover {
    background: #FF7A33;
    color: white;
    border-color: #FF7A33;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;

    padding-left: 2rem;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;

    box-shadow: none !important;
}

/* Price badge */
.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF9A00, #ffaf36);
    color: black;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;

    box-shadow: 0 10px 25px rgba(230, 180, 0, 0.3);
}

.price-badge .price-label {

    font-size: 0.9rem;
    opacity: 0.9;
    display: block;

}

.price-badge .price-amount {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.price-badge .price-amount.old-price {
    font-size: 1.2rem;
    font-weight: 400;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 0.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-bg-shapes::before {
        width: 300px;
        height: 300px;
    }
    
    .hero-bg-shapes::after {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 900px) {
    .hero-container {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }
    
    .hero-content {
        padding-right: 0;
        order: 1;
        text-align: left;
    }
    
    .hero-right {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: left;
    }
    
    .hero-description {
        text-align: left;
    }
    
    .hero-cta {
        justify-content: flex-start;
    }
    
    .hero-bg-shapes {
        width: 100%;
    }
    
    .hero-bg-shapes::before {
        right: 5%;
        top: 10%;
    }
    
    .hero-bg-shapes::after {
        right: 20%;
        top: 30%;
    }
}

@media (max-width: 768px) {

    .hero-description {

        margin-bottom: 20px !important;

    }


    .hero {
        padding: 3rem 1rem;
        min-height: 500px;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-title {
        font-size: 2.2rem;
        text-align: left;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .hero-features li {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: auto;
        min-width: 250px;
        justify-content: center;
    }
    
    .price-badge {
        position: static;
        margin-top: 1rem;
        display: inline-block;
    }
    
    .hero-bg-shapes::before {
        width: 200px;
        height: 200px;
    }
    
    .hero-bg-shapes::after {
        width: 150px;
        height: 150px;
    }

    .btn.btn-primary, .btn.btn-secondary {

        text-align: center;
        font-size: 13pt !important;
        width: 100% !important;
 
    }

    .hero {


        flex-direction: column-reverse;
    }


}

@media (max-width: 800px) {

     .hero-container {

        display: flex;
        flex-direction: column-reverse;
        gap: 5px;

    }

    .hero-right {
        padding: 0;
    }

    .hero {
        padding: 15px;
    }
    
    .hero-title {

        font-size: 26pt !important;
        text-align: left;
        line-height: 1.3;
        margin-bottom: 15px !important;
        margin-top: -60px;
        z-index: 9999 !important;

    }

    .hero-img {
        z-index: 0 !important;
        margin-top: -10px;
    }

   
    
    .hero-description {
        font-size: 16pt !important;
        text-align: left;
        width: 100%;
        flex-direction: column-reverse !important;
    }

    .hero-features {

        margin: 0;
        margin-bottom: 35px;
    }
    
    .hero-features li {
        font-size: 12pt;
        
    }

     .hero-features li::before {
        font-size: 12pt;
    }

    .hero-features li::before {

        top: 0;
       
    }
    
    .hero-cta {
        align-items: flex-start;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: auto;
        min-width: 200px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-img {
        max-width: 100%;
    }
    
        /* Price badge */
    /* Price badge */
.price-badge {
    position: absolute;
    top: -10px;
    right: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(230, 180, 0, 0.3);
}

.price-badge .price-label {

    font-size: 0.9rem;
    opacity: 0.9;
    display: block;
    line-height: 14px;

}

.prices {
    align-items: center !important;
    gap: 4px;

}

.price-amount.old-price {
    font-size: 12pt !important;

}

    .price-amount {
        font-size: 18pt !important;
    }






}
