/* Why Vastuvik Section */
.why-vastuvik-section {
    padding: 60px 0;
    background-color: #fff;
    /* White bg based on image, checking for background details later */
    position: relative;
    overflow: hidden;
}

.why-vastuvik-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-subheading {
    color: #EC6221;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.why-heading {
    font-size: 36px;
    font-weight: 700;
    color: #000;
}

/* 2-Column Layout */
.why-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/* Left: Cards Grid */
.why-cards-column {
    flex: 0 0 55%;
    max-width: 55%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.why-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    flex: 0 0 calc(50% - 10px);
    /* 2 cards per row with gap */
    max-width: calc(50% - 10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-icon-box {
    width: 60px;
    height: 60px;
    background: #EC6221;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
}

.why-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.why-card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Right: Content Text */
.why-text-column {
    flex: 0 0 40%;
    max-width: 40%;
}

.why-main-heading {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

.why-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.why-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.why-feature-item {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.why-feature-item i {
    color: #2ecc71;
    /* Green check */
    margin-right: 15px;
    font-size: 18px;
}

.why-btn {
    display: inline-block;
    background: #EC6221;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.why-btn:hover {
    background: #d35400;
    color: #fff;
    text-decoration: none;
}

/* Decorations */
.lamp-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    z-index: 10;
    transform-origin: top center;
    animation: swing 3s ease-in-out infinite alternate;
}

@keyframes swing {
    0% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(-5deg);
    }
}

/* Responsive */
@media (max-width: 992px) {

    .why-cards-column,
    .why-text-column {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .why-cards-column {
        margin-bottom: 40px;
        order: 2;
        /* Put cards below text on tablet if desired, or keep above. Image shows 2 col side by side on desktop. user asked for responsive. Usually text first on mobile? */
    }

    .why-text-column {
        order: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .why-cards-column {
        gap: 10px;
        /* Smaller gap for mobile */
    }

    .why-card {
        flex: 0 0 calc(50% - 5px);
        /* 2 per row */
        max-width: calc(50% - 5px);
        padding: 20px 10px;
        /* Reduced padding */
    }

    .why-icon-box {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .why-card-title {
        font-size: 14px;
        /* Smaller title */
        margin-bottom: 5px;
    }

    .why-card-text {
        font-size: 12px;
        /* Smaller text */
        line-height: 1.4;
    }

    .why-heading {
        font-size: 28px;
    }

    .why-main-heading {
        font-size: 24px;
    }

    .lamp-decoration {
        width: 100px;
    }
}