/* ================================================
   HEALING BIRD - WHY CHOOSE SECTION STYLES
   ================================================ */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #fef9f3 0%, #fdf5eb 100%);
    color: #2c2c2c;
    line-height: 1.6;
}

/* === SECTION CONTAINER === */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* === WHY CHOOSE SECTION === */
.why-choose-section {
    padding: 100px 0 80px;
    position: relative;
}

/* Section Intro */
.section-intro {
    text-align: center;
    margin-bottom: 80px;
}

.intro-text {
    font-size: 13px;
    line-height: 1.8;
    color: #6a6a6a;
    max-width: 600px;
    margin: 0 auto;
}

/* === FEATURES GRID === */
.features-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

/* Features Columns */
.features-column {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.left-features {
    align-items: flex-end;
}

.right-features {
    align-items: flex-start;
}

/* === FEATURE ITEMS === */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 400px;
}

.left-features .feature-item {
    flex-direction: row;
    text-align: right;
}

.right-features .feature-item {
    flex-direction: row;
    text-align: left;
}

/* Feature Icon */
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-icon i {
    font-size: 28px;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

/* Feature Content */
.feature-content {
    flex: 1;
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.feature-description {
    font-size: 13px;
    line-height: 1.7;
    color: #5a5a5a;
}

/* === CENTER PRODUCT VISUAL === */
.product-visual {
    position: relative;
    width: 320px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Shape */
.product-bg-shape {
    position: absolute;
    width: 350px;
    height: 280px;
    background: linear-gradient(135deg, #fff4d9 0%, #ffe8b3 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    bottom: 80px;
    z-index: 1;
    opacity: 0.8;
}

/* Decorative Sparkles */
.sparkle {
    position: absolute;
    font-size: 24px;
    color: #ffb933;
    z-index: 3;
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle-1 {
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 200px;
    left: 20px;
    animation-delay: 0.7s;
}

.sparkle-3 {
    bottom: 180px;
    right: 30px;
    font-size: 18px;
    animation-delay: 1.4s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* === PRODUCT IMAGE - Upload your image === */
.product-image-center {
    position: relative;
    z-index: 2;
    width: auto;
    height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
}

/* === OUR PRODUCTS SECTION === */
.our-products-section {
    padding: 80px 0 100px;
    text-align: center;
    background: #ffffff;
}

.products-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.products-description {
    font-size: 14px;
    line-height: 1.8;
    color: #5a5a5a;
    max-width: 800px;
    margin: 0 auto;
}

/* === RESPONSIVE DESIGN === */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .section-container {
        padding: 0 40px;
    }
    
    .features-grid {
        gap: 60px;
    }
    
    .product-visual {
        width: 280px;
        height: 500px;
    }
    
    .product-bg-shape {
        width: 300px;
        height: 240px;
    }
    
    .product-image-center {
        height: 400px;
    }
    
    .feature-item {
        max-width: 350px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0 50px;
    }
    
    .section-intro {
        margin-bottom: 50px;
    }
    
    /* Stack layout vertically */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .features-column {
        align-items: center;
        gap: 40px;
    }
    
    .left-features {
        order: 1;
    }
    
    .product-visual {
        order: 2;
        width: 260px;
        height: 480px;
        margin: 0 auto;
    }
    
    .right-features {
        order: 3;
    }
    
    .feature-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
        max-width: 400px;
    }
    
    .left-features .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .product-bg-shape {
        width: 280px;
        height: 220px;
    }
    
    .product-image-center {
        height: 380px;
    }
    
    .our-products-section {
        padding: 60px 0 80px;
    }
    
    .products-heading {
        font-size: 40px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .section-container {
        padding: 0 20px;
    }
    
    .why-choose-section {
        padding: 50px 0 40px;
    }
    
    .intro-text {
        font-size: 12px;
    }
    
    .features-column {
        gap: 35px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .feature-title {
        font-size: 15px;
    }
    
    .feature-description {
        font-size: 12px;
    }
    
    .product-visual {
        width: 220px;
        height: 420px;
    }
    
    .product-image-center {
        height: 340px;
    }
    
    .product-bg-shape {
        width: 240px;
        height: 190px;
    }
    
    .sparkle {
        font-size: 18px;
    }
    
    .products-heading {
        font-size: 32px;
    }
    
    .products-description {
        font-size: 13px;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .products-heading {
        font-size: 28px;
    }
    
    .product-visual {
        width: 200px;
        height: 400px;
    }
    
    .product-image-center {
        height: 320px;
    }
}