/* =======================================
         ABOUT COURSE SECTION
========================================= */

.about-course-section {
    padding: 80px 0;
    background: var(--white);
}

.about-course-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Image Styles with Enhanced Shadow */
.about-course-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    order: 2;
}

.about-course-image:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.about-course-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-course-image:hover img {
    transform: scale(1.05);
}

/* Content Styles */
.about-course-content {
    padding: 20px;
    order: 1;
}

.about-course-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    position: relative;
    display: inline-block;
}

.about-course-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.about-course-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--secondary-color);
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    color: var(--white);
    opacity: 0.9;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--extra-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    background: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 1rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.feature-item:hover i {
    color: var(--white);
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.feature-item:hover span {
    color: var(--white);
}

/* About Course Button */
.about-course-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(247, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.about-course-btn i {
    transition: transform 0.3s ease;
}

.about-course-btn:hover {
    background: var(--yellow);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(247, 193, 0, 0.4);
}

.about-course-btn:hover i {
    transform: translateX(8px);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-course-section {
        padding: 60px 0;
    }
    .about-course-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-course-image {
        order: 1;
    }
    .about-course-content {
        order: 2;
        text-align: center;
    }
    .about-course-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-course-content h2 {
        display: block;
        text-align: center;
    }
    .experience-badge {
        left: 20px;
        bottom: 20px;
        padding: 15px 20px;
    }
    .experience-badge .years {
        font-size: 1.5rem;
    }
    .about-course-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    .features-list {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .about-course-section {
        padding: 50px 0;
    }
    .about-course-content {
        padding: 0;
    }
    .about-course-content h2 {
        font-size: 1.5rem;
    }
    .about-course-content p {
        font-size: 0.9rem;
    }
    .features-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .feature-item {
        padding: 10px 15px;
        justify-content: center;
    }
    .feature-item span {
        font-size: 0.85rem;
    }
    .experience-badge {
        left: 15px;
        bottom: 15px;
        padding: 10px 15px;
    }
    .experience-badge .years {
        font-size: 1.2rem;
    }
    .experience-badge .text {
        font-size: 0.7rem;
    }
    .about-course-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-course-section {
        padding: 40px 0;
    }
    .about-course-content h2 {
        font-size: 1.3rem;
    }
    .about-course-content p {
        font-size: 0.85rem;
    }
    .feature-item i {
        font-size: 0.9rem;
    }
    .feature-item span {
        font-size: 0.8rem;
    }
    .about-course-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* =========================================
   COURSE HIGHLIGHTS SECTION - WITH BOX SHADOW
========================================= */

.course-highlights-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: "Dancing Script", cursive;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
}

.section-description {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Highlights Wrapper */
.highlights-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
    align-items: start;
}

/* Highlight Card - WITH BOX SHADOW */
.highlight-card {
    width: 100%;
    max-width: 360px;
    position: relative;
    margin-bottom: 60px;
    justify-self: center;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

/* IMAGE with Box Shadow */
.highlight-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-top-left-radius: 180px;
    border-top-right-radius: 180px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-image {
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.highlight-card:hover .highlight-image img {
    transform: scale(1.05);
}

/* CONTENT BOX with Box Shadow */
.highlight-content {
    width: 85%;
    background: var(--white);
    padding: 25px 20px;
    border-radius: 20px 20px 0 0;
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-content {
    background: var(--primary-color);
    bottom: -45px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.highlight-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.highlight-card:hover .highlight-content h3 {
    color: var(--white);
}

.highlight-content p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.highlight-card:hover .highlight-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* BUTTON */
.highlight-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-content a {
    color: var(--yellow);
}

.highlight-content a:hover {
    gap: 14px;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 991px) {
    .course-highlights-section {
        padding: 60px 0;
    }
    .highlights-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .highlight-card {
        max-width: 320px;
        margin-bottom: 55px;
    }
    .highlight-image {
        height: 300px;
        border-top-left-radius: 160px;
        border-top-right-radius: 160px;
    }
    .highlight-content {
        bottom: -35px;
        padding: 22px 18px;
    }
    .highlight-card:hover .highlight-content {
        bottom: -40px;
    }
    .section-title {
        font-size: 2rem;
    }
    .highlight-content h3 {
        font-size: 1rem;
    }
    .highlight-content p {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .course-highlights-section {
        padding: 50px 0;
    }
    .highlights-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .highlight-card {
        max-width: 340px;
        margin-bottom: 50px;
    }
    .highlight-image {
        height: 300px;
        border-top-left-radius: 150px;
        border-top-right-radius: 150px;
    }
    .highlight-content {
        width: 88%;
        padding: 22px 18px;
        bottom: -30px;
    }
    .highlight-card:hover .highlight-content {
        bottom: -35px;
    }
    .highlight-content h3 {
        font-size: 1rem;
    }
    .highlight-content p {
        font-size: 0.8rem;
    }
    .section-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .highlight-card {
        margin-bottom: 45px;
    }
    .highlight-image {
        height: 280px;
        border-top-left-radius: 130px;
        border-top-right-radius: 130px;
    }
    .highlight-content {
        padding: 18px 15px;
        bottom: -25px;
    }
    .highlight-card:hover .highlight-content {
        bottom: -30px;
    }
    .highlight-content h3 {
        font-size: 0.95rem;
    }
    .highlight-content p {
        font-size: 0.7rem;
    }
}

/* =========================================
     TRAINING MODULES SECTION - WITH BOX SHADOW
========================================= */

.training-modules-section {
    width: 100%;
    padding: 60px 0px 80px 0px;
    background: var(--white);
}

/* Section Header */
.training-modules-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.training-modules-section .section-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: "Dancing Script", cursive;
}

.training-modules-section .section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
}

.training-modules-section .section-description {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Tabs */
.modules-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-headers {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.tab-btn.active {
    background: var(--secondary-color);
    color: var(--white);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Module Item - WITH BOX SHADOW */
.module-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--extra-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.module-item:hover {
    background: var(--primary-color);
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: rgba(247, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.module-item:hover .module-icon {
    background: var(--yellow);
}

.module-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.module-item:hover .module-icon i {
    color: var(--primary-color);
}

.module-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.module-item:hover .module-info h4 {
    color: var(--white);
}

.module-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.module-item:hover .module-info p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 992px) {
    .training-modules-section {
        padding: 60px 0;
    }
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .section-title {
        font-size: 2rem;
    }
    .tab-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .training-modules-section {
        padding: 50px 0;
    }
    .tab-headers {
        gap: 10px;
    }
    .tab-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    .module-item {
        padding: 15px;
    }
    .module-icon {
        width: 50px;
        height: 50px;
    }
    .module-icon i {
        font-size: 1.2rem;
    }
    .module-info h4 {
        font-size: 0.9rem;
    }
    .module-info p {
        font-size: 0.75rem;
    }
    .section-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tab-headers {
        flex-direction: column;
        align-items: center;
    }
    .tab-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* =========================================
     BOUTIQUE MIDDLE SECTION - WITH BOX SHADOW
========================================= */

.boutique-mid-section {
    width: 100%;
    padding: 40px 0;
}

.boutique-mid-container {
    width: 100%;
    margin: auto;
}

.boutique-mid-img {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.boutique-mid-img:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

.boutique-mid-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* Dark Overlay Effect */
.boutique-mid-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 6, 89, 0.9), rgba(247, 0, 0, 0.7));
    border-radius: 15px;
}

/* Text Styles */
.boutique-mid-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 75%;
    padding: 10px;
    z-index: 1;
}

.boutique-mid-text .section-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
    font-family: "Dancing Script", cursive;
}

.boutique-mid-text .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    color: var(--yellow);
}

.boutique-mid-text p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0 60px;
    color: rgba(255, 255, 255, 0.9);
}

/* Button */
.boutique-mid-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background-color: var(--yellow);
    color: var(--primary-color);
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Sen", sans-serif;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.boutique-mid-btn i {
    transition: transform 0.3s ease;
}

.boutique-mid-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.boutique-mid-btn:hover i {
    transform: translateX(8px);
}

/* =========================================
     PROCESS CARDS SECTION - WITH BOX SHADOW
========================================= */

.boutique-mission-vision {
    padding: 40px 0;
    margin-top: -150px;
    position: relative;
    z-index: 2;
}

.boutique-mission-vision-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 20px;
}

/* Card Styles - WITH BOX SHADOW */
.boutique-mv-box {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.boutique-mv-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: var(--yellow);
}

/* Icon Styles */
.boutique-mv-icon {
    margin-bottom: 1rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.boutique-mv-icon i {
    font-size: 1.8rem;
}

/* Card Colors */
.boutique-mv-box:nth-child(1) .boutique-mv-icon {
    background-color: rgba(6, 6, 89, 0.15);
    color: var(--primary-color);
}

.boutique-mv-box:nth-child(1):hover .boutique-mv-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.boutique-mv-box:nth-child(1) h3 {
    color: var(--primary-color);
    font-family: "Playfair Display", serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.boutique-mv-box:nth-child(2) .boutique-mv-icon {
    background-color: rgba(247, 0, 0, 0.15);
    color: var(--secondary-color);
}

.boutique-mv-box:nth-child(2):hover .boutique-mv-icon {
    background-color: var(--secondary-color);
    color: var(--white);
}

.boutique-mv-box:nth-child(2) h3 {
    color: var(--secondary-color);
    font-family: "Playfair Display", serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.boutique-mv-box:nth-child(3) .boutique-mv-icon {
    background-color: rgba(247, 193, 0, 0.15);
    color: var(--yellow);
}

.boutique-mv-box:nth-child(3):hover .boutique-mv-icon {
    background-color: var(--yellow);
    color: var(--primary-color);
}

.boutique-mv-box:nth-child(3) h3 {
    color: var(--yellow);
    font-family: "Playfair Display", serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Paragraph Styles */
.boutique-mv-box p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    font-family: "Sen", sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
    .boutique-mid-text {
        width: 85%;
    }
    .boutique-mid-text .section-title {
        font-size: 2rem;
    }
    .boutique-mid-text p {
        font-size: 0.9rem;
        padding: 0 30px;
    }
    .boutique-mid-img img {
        height: 400px;
    }
    .boutique-mv-box h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .boutique-mid-section {
        padding: 30px 0;
    }
    .boutique-mid-text {
        width: 90%;
    }
    .boutique-mid-text .section-subtitle {
        font-size: 1.2rem;
    }
    .boutique-mid-text .section-title {
        font-size: 1.6rem;
    }
    .boutique-mid-text p {
        font-size: 0.85rem;
        padding: 0 15px;
        margin-bottom: 20px;
    }
    .boutique-mid-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    .boutique-mid-img img {
        height: 350px;
    }
    .boutique-mission-vision {
        margin-top: -80px;
        padding: 30px 0;
    }
    .boutique-mission-vision-container {
        width: 95%;
        gap: 1rem;
        padding: 15px;
    }
    .boutique-mv-box {
        padding: 25px 20px;
    }
    .boutique-mv-icon {
        width: 55px;
        height: 55px;
    }
    .boutique-mv-icon i {
        font-size: 1.3rem;
    }
    .boutique-mv-box h3 {
        font-size: 1.2rem;
    }
    .boutique-mv-box p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .boutique-mid-text .section-title {
        font-size: 1.3rem;
    }
    .boutique-mid-text p {
        font-size: 0.75rem;
        padding: 0 10px;
    }
    .boutique-mid-img img {
        height: 300px;
    }
    .boutique-mission-vision {
        margin-top: -60px;
    }
    .boutique-mv-icon {
        width: 50px;
        height: 50px;
    }
    .boutique-mv-icon i {
        font-size: 1.2rem;
    }
    .boutique-mv-box h3 {
        font-size: 1.1rem;
    }
}

/* =========================================
     BOUTIQUE TRAINING MIDDLE BANNER
========================================= */

.boutique-mid-banner {
    width: 100%;
    padding: 60px 0;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
}

.boutique-mid-banner-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Text */
.boutique-left-content h4 {
    color: var(--yellow);
    font-size: 14px;
    letter-spacing: 2px;
    position: relative;
    padding-top: 18px;
    font-weight: 600;
}

.boutique-left-content h4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.boutique-left-content h1 {
    color: var(--white);
    font-size: 40px;
    margin-top: 15px;
    line-height: 1.4;
    max-width: 600px;
    font-family: "Playfair Display", serif;
}

/* Right Button */
.boutique-right-content button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    border: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(247, 0, 0, 0.3);
}

.boutique-right-content button i {
    transition: transform 0.3s ease;
}

.boutique-right-content button:hover {
    background-color: var(--yellow);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(247, 193, 0, 0.4);
}

.boutique-right-content button:hover i {
    transform: translateX(8px);
}

/* Responsive */
@media (max-width: 1024px) {
    .boutique-mid-banner-content {
        padding: 0 30px;
    }
    .boutique-left-content h1 {
        font-size: 32px;
        max-width: 500px;
    }
    .boutique-right-content button {
        padding: 10px 24px;
    }
}

@media (max-width: 768px) {
    .boutique-mid-banner {
        padding: 40px 0;
    }
    .boutique-mid-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 0 20px;
    }
    .boutique-left-content h4 {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    .boutique-left-content h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .boutique-left-content h1 {
        font-size: 28px;
        max-width: 100%;
    }
    .boutique-right-content button {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .boutique-mid-banner {
        padding: 30px 0;
    }
    .boutique-left-content h1 {
        font-size: 22px;
    }
    .boutique-right-content button {
        font-size: 12px;
        padding: 10px 16px;
    }
}