/* Reset box sizing and remove default margins/padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Fix container widths */
.la_container,
.la_container_w,
.la_container_s,
.la_container_n {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    overflow: hidden;
}

/* Adjust grid layout */
.la_grid {
    width: 100%;
    max-width: 100%;
    gap: 15px;
}

/* Make images responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Adjust form wrapper */
.la_form_wrapper {
    width: 100%;
    max-width: 450px;
    margin: 20px;
    padding: 2rem;
    background-color: aliceblue;
    border-radius: 10px;
}

.la_container {
    min-height: 100vh;
    background-image: url('../images/bg_img1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    /* opacity: 0.8; */
}

.la_logo {
    width: 120px;
    margin: 0 auto 20px;
    display: block;
}

.la_form_title {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.la_form_desc {
    text-align: center;
    color: #9b446f;
    font-size: 18px;
    margin-bottom: 30px;
}

.la_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.la_form_row {
    display: flex;
    gap: 15px;
}

.la_input_group {
    flex: 1;
}

.la_input_group input,
.la_input_group select,
.la_input_group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.la_input_group textarea {
    resize: vertical;
    min-height: 100px;
}

.la_input_group input:focus,
.la_input_group select:focus,
.la_input_group textarea:focus {
    outline: none;
    border-color: #9b446f;
    box-shadow: 0 0 0 2px rgba(148, 99, 46, 0.1);
}

.la_input_group input::placeholder,
.la_input_group textarea::placeholder {
    color: #999;
}

.la_submit_btn {
    width: 100%;
    padding: 14px;
    background-color: #9b446f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    /* Added to prevent content shift */
    transform: translateY(0);
}

.la_submit_btn:hover {
    background-color: #000000;
    transform: translateY(-2px);
    /* Add box shadow for better hover effect */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.la_container_w {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.la_large {
    width: 60%;
    position: relative;
}

.la_large img {
    width: 100%;
    border-radius: 10px;
}

.la_grid {
    flex: 0 0 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 60%;
}

.la_item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.la_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.la_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.la_item:hover img {
    transform: scale(1.1);
}

.la_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.la_item:hover .la_overlay {
    opacity: 1;
    transform: translateY(0);
}

.la_overlay h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.la_overlay p {
    font-size: 14px;
    opacity: 0.8;
}

.la_course_container {
    max-width: 1200px;
    margin: 0px auto;
    /* padding: 40px; */
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(155, 68, 111, 0.05);
}

.la_course_header {
    text-align: center;
    /* margin-bottom: 50px; */
    position: relative;
    padding: 20px 0;
}

.la_course_tag {
    background: linear-gradient(45deg, #9b446f, #94632e);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(155, 68, 111, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.la_course_tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(155, 68, 111, 0.3);
}

.la_course_title {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.la_course_subtitle {
    font-size: 24px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.la_course_description {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin: 40px auto;
    max-width: 900px;
    text-align: center;
    padding: 30px;
    background-color: #fff5f8;
    border-radius: 15px;
}

.la_recipe_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.la_recipe_item {
    padding: 15px 20px;
    background-color: #fff5f8;
    border-radius: 10px;
    border: 1px solid rgba(155, 68, 111, 0.1);
    transition: all 0.3s ease;
    font-size: 16px;
    color: #333;
}

.la_recipe_item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(155, 68, 111, 0.1);
    border-color: #9b446f;
}

.la_price_section {
    text-align: center;
    margin: 60px auto;
    padding: 40px;
    background: linear-gradient(135deg, #fff5f8, #fff);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(155, 68, 111, 0.1);
    max-width: 800px;
}

.la_original_price {
    text-decoration: line-through;
    color: #999;
    font-size: 28px;
    margin-right: 20px;
}

.la_discounted_price {
    color: #9b446f;
    font-size: 38px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.la_enroll_btn {
    background: linear-gradient(45deg, #9b446f, #94632e);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(155, 68, 111, 0.2);
}

.la_enroll_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(155, 68, 111, 0.3);
}

.la_features_section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 40px;
    background-color: #fff5f8;
    border-radius: 20px;
}

.la_features_section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.la_bonus_list li, 
.la_benefits_list li, 
.la_features_list li {
    margin: 15px 0;
    font-size: 17px;
    line-height: 1.6;
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.la_bonus_list li:hover, 
.la_benefits_list li:hover, 
.la_features_list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* About Section Styles */
.la_about_section {
    padding: 80px 0;
    background-color: #fff;
}

.la_about_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.la_about_content {
    flex: 1;
}

.la_about_title {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.la_chef_name {
    font-size: 28px;
    color: #9b446f;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.la_chef_bio p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.la_chef_image {
    flex: 0 0 400px;
}

.la_chef_image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Special Offer Section Styles */
.la_offer_section {
    background: linear-gradient(135deg, #fff5f8, #ffe6ee);
    padding: 80px 0;
}

.la_offer_container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(155, 68, 111, 0.1);
    text-align: center;
}

.la_offer_title {
    font-size: 36px;
    color: #9b446f;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.la_offer_desc {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.la_price_strike {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.la_price_special {
    color: #9b446f;
    font-weight: bold;
    font-size: 32px;
}

.la_offer_message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.la_offer_cta {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.la_register_btn {
    background: linear-gradient(45deg, #9b446f, #94632e);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(155, 68, 111, 0.2);
}

.la_register_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(155, 68, 111, 0.3);
}

/* Target Section Styles */
.la_target_section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff5f8, #fff);
    margin: 40px 0;
}

.la_target_title {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.la_target_title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #9b446f, #94632e);
    margin: 15px auto 0;
    border-radius: 2px;
}

.la_target_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.la_target_item {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(155, 68, 111, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(155, 68, 111, 0.1);
}

.la_target_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(155, 68, 111, 0.15);
    border-color: #9b446f;
}

.la_target_icon {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    background: #fff5f8;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.la_target_item h3 {
    font-size: 22px;
    color: #9b446f;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.la_target_item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 768px) {
    .la_large,
    .la_grid {
        width: 90%;
    }

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

    .la_form_wrapper {
        width: 100%;
        max-width: 400px;
        padding: 1.5rem;
        background-color: aliceblue;
    }

    .la_form_row {
        flex-direction: column;
        gap: 20px;
    }

    .la_form_title {
        font-size: 24px;
    }

    .la_form_desc {
        font-size: 16px;
    }

    .la_container_w {
        flex-direction: column;
    }

    .la_large,
    .la_grid {
        width: 100%;
    }

    .la_container_n {
        gap: 20px;
        flex-wrap: wrap;
    }

    .la_form_wrapper {
        margin: 10px;
        padding: 1.5rem;
    }

    .la_course_title {
        font-size: 32px;
    }

    .la_course_subtitle {
        font-size: 20px;
    }

    .la_course_description {
        font-size: 16px;
    }

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

    .la_course_container {
        padding: 20px;
        margin: 30px auto;
    }

    .la_course_title {
        font-size: 32px;
    }

    .la_course_subtitle {
        font-size: 20px;
    }

    .la_price_section {
        padding: 30px 20px;
    }

    .la_features_section {
        padding: 30px 20px;
        grid-template-columns: 1fr;
    }

    .la_discounted_price {
        font-size: 32px;
    }

    .la_enroll_btn {
        padding: 15px 30px;
        font-size: 18px;
    }

    .la_hero {
        padding: 60px 0;
        background-color: #fff5f8;
    }

    .la_title {
        font-size: 32px;
    }

    .la_subtitle {
        font-size: 16px;
    }

    .la_about_container {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .la_chef_image {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .la_about_title {
        font-size: 32px;
    }

    .la_chef_name {
        font-size: 24px;
    }

    .la_offer_container {
        padding: 20px;
    }

    .la_offer_title {
        font-size: 28px;
    }

    .la_offer_desc {
        font-size: 20px;
    }

    .la_price_special {
        font-size: 28px;
    }

    .la_target_section {
        padding: 40px 20px;
    }

    .la_target_title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .la_target_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .la_target_item {
        padding: 25px;
    }

    .la_target_item h3 {
        font-size: 20px;
    }
}
.la_hero {
    font-family: 'Playfair Display';
    text-align: center;
    margin: 0;
    padding: 0;
}

.la_title_o {
    font-size: 24px;
    margin: 20px 0;
    color: #333;
    font-family: 'Playfair Display';
}

.la_container_s {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 20px;
}

.la_item_r {
    max-width: 300px;
    text-align: center;
}

.la_icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #6d4c41;
}

.la_heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Playfair Display';
}

.la_text {
    font-size: 14px;
    color: #666;
    font-family: 'Playfair Display';
}

@media (max-width: 768px) {
    .la_container_s {
        flex-direction: column;
        gap: 20px;
    }

    .la_title {
        font-size: 27px;
    }

    .la_container_w {
        flex-direction: column;
        gap: 20px;
    }
}

.la_main_w {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

.la_title_m {
    font-size: 30px;
    margin: 20px 0;
    color: #333;
    font-family: 'Playfair Display';
}

.la_container_n {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 20px;
    flex-wrap: wrap;
}

.la_logo_i {
    max-width: 150px;
    height: auto;
}

@media (max-width: 768px) {
    .la_container_n {
        gap: 15px;
    }

    .la_logo_i {
        max-width: 100px;
    }
}

.la_main_h {
    text-align: center;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: inherit;
}
.la_why_choose {
    padding: 60px 20px;
    background-color: #fff5f8;
    margin: 40px 0;
}

.la_why_title {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
}

.la_why_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.la_why_item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(155, 68, 111, 0.1);
    transition: transform 0.3s ease;
}

.la_why_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(155, 68, 111, 0.15);
}

.la_why_icon {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.la_why_item h3 {
    font-size: 22px;
    color: #9b446f;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.la_why_item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .la_why_choose {
        padding: 40px 20px;
    }

    .la_why_title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .la_why_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .la_why_item {
        padding: 20px;
    }

    .la_why_item h3 {
        font-size: 20px;
    }
}

/* FAQ Section Styles */
.la_faq_section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff5f8, #fff);
    margin-bottom: 0;
}

.la_faq_title {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.la_faq_title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #9b446f, #94632e);
    margin: 15px auto 0;
    border-radius: 2px;
}

.la_faq_grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.la_faq_item {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(155, 68, 111, 0.08);
    transition: all 0.3s ease;
}

.la_faq_question {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
}

.la_faq_arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #9b446f;
    transition: transform 0.3s ease;
}

.la_faq_answer {
    display: none;
    gap: 15px;
    border-top: 1px solid rgba(155, 68, 111, 0.1);
    margin-top: 15px;
    padding-top: 15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.la_faq_item.active .la_faq_answer {
    display: flex;
    opacity: 1;
}

.la_faq_item.active .la_faq_arrow {
    transform: translateY(-50%) rotate(180deg);
}

.la_faq_answer p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.la_gallery_container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    overflow: hidden;
}

.la_gallery_scroll {
    overflow: hidden;
    position: relative;
}
.bi-play-fill::before{
    font-size: 50px;
    color: #999;
}

.la_gallery_wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.la_item {
    flex: 0 0 300px;
    height: 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.la_scroll_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #9b446f;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.la_prev {
    left: 0;
}

.la_next {
    right: 0;
}

.la_scroll_btn:hover {
    background: #7a3456;
    transform: translateY(-50%) scale(1.1);
}

.la_scroll_btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

.la_header {
    background: linear-gradient(to right, #fff5f8, #fff);
    padding: 15px 0;
    border-bottom: 1px solid rgba(155, 68, 111, 0.1);
    /* position: sticky; */
    top: 0;
    z-index: 1000;
}

.la_header_content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}

.la_header_item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.la_header_icon {
    font-size: 24px;
    color: #9b446f;
}

.la_header_info {
    text-align: left;
}

.la_header_info h4 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.la_header_info p {
    margin: 2px 0;
    color: #666;
    font-size: 14px;
}

.la_header_info a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.la_header_info a:hover {
    color: #9b446f;
}

@media (max-width: 768px) {
    .la_header_content {
        flex-direction: column;
        gap: 15px;
    }

    .la_header_item {
        width: 100%;
        justify-content: center;
    }

    .la_header_info {
        text-align: center;
    }
}

/* Add these styles */
.la_social_bar {
    position: fixed;
    left: 0;
    bottom: 50%;
    transform: translateY(50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 15px 15px 0;
    z-index: 1000;
    width: auto;
    transition: width 0.3s ease;
}

.la_social_link {
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    width: 40px;
    transition: width 0.3s ease;
}

.la_social_link:hover {
    width: 130px;
}

.la_social_icon {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    color: #9b446f;
}

.la_social_icon i {
    font-size: 24px;
    min-width: 24px;
    transition: transform 0.3s ease;
}

.la_social_text {
    color: #333;
    font-size: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.la_social_link:hover .la_social_text {
    opacity: 1;
    transform: translateX(0);
}

/* Brand colors on hover */
.la_social_link:hover .bi-instagram {
    color: #E4405F;
}

.la_social_link:hover .bi-facebook {
    color: #1877F2;
}

.la_social_link:hover .bi-youtube {
    color: #FF0000;
}

@media (max-width: 768px) {
    .la_social_bar {
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        flex-direction: row;
        justify-content: center;
        border-radius: 15px 15px 0 0;
        padding: 10px;
        width: 100%;
    }

    .la_social_link {
        width: auto;
    }

    .la_social_link:hover {
        width: auto;
    }

    .la_social_icon i {
        font-size: 20px;
    }

    .la_social_text {
        display: none;
    }
}

.la_footer {
    background: linear-gradient(to right, #9b446f, #94632e);
    padding: 40px 0 20px;
    margin-top: 60px;
    position: relative;
}

.la_footer::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: #fff;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.la_footer_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.la_footer_info {
    margin-bottom: 30px;
}

.la_footer_logo {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.la_footer_desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 20px;
}

.la_footer_bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.la_copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.la_credits {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.la_credits a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.la_credits a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .la_footer_bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

.la_bonus_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.la_bonus_item {
    padding: 15px 20px;
    background-color: #fff5f8;
    border-radius: 10px;
    border: 1px solid rgba(155, 68, 111, 0.1);
    transition: all 0.3s ease;
    font-size: 16px;
    color: #333;
}

.la_bonus_item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(155, 68, 111, 0.1);
    border-color: #9b446f;
}

@media (max-width: 768px) {
    .la_bonus_grid {
        grid-template-columns: 1fr;
    }
}

.la_video_section {
    width: 100%;
    background: #ffffff;
    padding: 0;
    margin: 0;
}

.la_video_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.la_video_container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.la_video_container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.la_video_controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.la_center_play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(155, 68, 111, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.la_video_container:fullscreen video {
    object-fit: contain;
    width: 100vw;
    height: 100vh;
}

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

    .la_video_controls {
        padding: 15px;
    }

    .la_center_play {
        width: 60px;
        height: 60px;
    }
}

/* Reviews Section Styles */
.la_reviews_section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff5f8, #fff);
    overflow: hidden;
}

.la_reviews_title {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.la_reviews_slider {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.la_reviews_track {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    animation: slideReviews 40s linear infinite;
}

.la_review_item {
    flex: 0 0 300px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.la_review_img {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.la_review_img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.la_review_item:hover .la_review_img img {
    transform: scale(1.05);
}

@keyframes slideReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.la_reviews_track:hover {
    animation-play-state: paused;
}

/* Update WhatsApp float button styles */
.la_whatsapp_float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 1000;
}

.la_whatsapp_float:hover {
    transform: scale(1.1);
    /* background-color: #128C7E; */
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.la_whatsapp_text {
    display: none;
}

@media (max-width: 768px) {
    .la_whatsapp_float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}