/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.why-choose-container {
    display: flex;
    align-items: center;
    gap: 80px;
    /* Space between image and text */
}

/* Left Column: Image */
.why-choose-image {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 600px;
    /* Tall image */
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-choose-image:hover img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

/* Optional: Decorative elements behind image if needed, but keeping clean for now */

/* Right Column: Content */
.why-choose-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-tagline {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.why-tagline i {
    color: var(--primary-color);
}

.why-title {
    font-size: 3.5rem;
    /* Large title */
    line-height: 1.1;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.why-title .highlight {
    color: var(--primary-color);
}

.why-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
}

/* Features List */
.why-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 45px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: rgba(252, 128, 117, 0.15);
    /* Light Peach bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background-color: var(--primary-color);
    color: #fff;
}

.feature-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Button */
.btn-dark-arrow {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    transition: var(--transition);
}

.btn-dark-arrow .arrow-circle {
    width: 25px;
    height: 25px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
}

.btn-dark-arrow:hover {
    background-color: #000;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .why-choose-container {
        flex-direction: column;
        gap: 50px;
    }

    .why-choose-image {
        width: 100%;
        height: 400px;
    }

    .why-choose-content {
        width: 100%;
    }

    .why-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .why-title {
        font-size: 2.2rem;
    }

    .why-choose-section {
        padding: 60px 0;
    }
}