/* =========================================
   WHY CHOOSE US - MODERN SPLIT SCREEN
   ========================================= */

/* Main Section Container */
.why-choose-us-premium {
    display: flex;
    flex-direction: row;
    min-height: auto;
    /* 🎯 Auto height - fits content naturally */
    position: relative;
    background: #ffffff;
}

/* Left Side - Sticky Image */
.why-choose-left {
    width: 50%;
    min-height: 500px;
    /* 🎯 Minimum height for image */
    position: sticky;
    top: 0;
    overflow: hidden;
    background: #ffffff;
}

.why-choose-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

/* Image Overlay */
.why-choose-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* Decorative Badge on Image */
.why-choose-badge {
    position: absolute;
    bottom: 60px;
    right: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    z-index: 10;
    max-width: 250px;
}

.why-choose-badge p {
    color: #ffffff;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.8;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Gilda Display', serif;
}

/* Right Side - Content */
.why-choose-right {
    width: 50%;
    /* 🎯 No fixed height - auto fits content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
    /* 🎯 Compact padding */
    background: #ffffff;
}

/* Section Header */
.why-choose-header {
    margin-bottom: 25px;
    /* 🎯 Further reduced for compact layout */
}

.why-choose-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.why-choose-label::before {
    content: '';
    width: 40px;
    height: 1.3px;
    background: #AA8453;
}

.why-choose-label span {
    color: #AA8453;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Gilda Display', serif;
}

.why-choose-title {
    font-family: 'Gilda Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.8rem);
    /* 🎯 Reduced font size */
    font-weight: 300;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 20px;
    /* 🎯 Reduced from 32px */
}

.why-choose-title .italic-text {
    font-style: italic;
    font-weight: 400;
}

.why-choose-description {
    font-size: 16px;
    line-height: 1.8;
    color: #6a6a6a;
    max-width: 540px;
    font-family: 'Gilda Display', serif;
    font-weight: 300;
}

/* Features Grid */
.why-choose-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
    /* 🎯 Reduced gaps significantly */
    margin-bottom: 30px;
    /* 🎯 Reduced from 50px */
}

.feature-item {
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    /* 🎯 Ensures all cards have same height */
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-icon {
    margin-bottom: 12px;
    /* 🎯 Reduced from 20px */
}

.feature-icon i {
    font-size: 36px;
    /* 🎯 Reduced from 42px */
    color: #AA8453;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
    color: #8B6F47;
    transform: scale(1.1);
}

.feature-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: 'Gilda Display', serif;
    min-height: 36px;
    /* 🎯 Handles multi-line titles */
    line-height: 1.3;
}

.feature-description {
    font-size: 14px;
    line-height: 1.7;
    color: #6a6a6a;
    font-family: 'Gilda Display', serif;
    font-weight: 300;
    flex-grow: 1;
    /* 🎯 Fills remaining space */
}

/* Call to Action */
.why-choose-cta {
    padding-top: 30px;
    /* 🎯 Reduced from 48px */
    border-top: 1px solid rgba(170, 132, 83, 0.2);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-family: 'Gilda Display', serif;
}

.cta-text p {
    font-size: 13px;
    color: #6a6a6a;
    font-family: 'Gilda Display', serif;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #AA8453 0%, #D4AF37 100%);
    color: #ffffff;
    padding: 16px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Gilda Display', serif;
    box-shadow: 0 4px 15px rgba(170, 132, 83, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(170, 132, 83, 0.5);
    color: #ffffff;
}

.cta-button i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

/* Large Screens */
@media (max-width: 1399px) {
    .why-choose-right {
        padding: 80px 60px;
    }

    .why-choose-title {
        font-size: 2.5rem;
    }

    .why-choose-features {
        gap: 40px 32px;
    }
}

/* Tablets */
@media (max-width: 1199px) {
    .why-choose-right {
        padding: 60px 40px;
    }

    .why-choose-badge {
        bottom: 40px;
        right: 40px;
        padding: 24px;
        max-width: 200px;
    }

    .why-choose-features {
        gap: 36px 24px;
    }
}

/* Medium Tablets */
@media (max-width: 991px) {
    .why-choose-us-premium {
        flex-direction: column;
    }

    .why-choose-left,
    .why-choose-right {
        width: 100%;
    }

    .why-choose-left {
        min-height: 60vh;
        position: relative;
    }

    .why-choose-right {
        padding: 80px 40px;
    }

    .why-choose-badge {
        display: none;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .why-choose-left {
        min-height: 50vh;
    }

    .why-choose-right {
        padding: 60px 24px;
        background: #ffffff;
        /* Brighter background for contrast on mobile */
    }

    .why-choose-header {
        margin-bottom: 40px;
        text-align: center;
    }

    .why-choose-image {
        padding: 15px;
        background: #ffffff;
    }

    .why-choose-image::after {
        display: none;
    }

    .why-choose-image img {
        border-radius: 20px;
    }

    .why-choose-label {
        justify-content: center;
    }

    .why-choose-label::before {
        display: none;
    }

    .why-choose-label span {
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 0.5px;
    }

    .why-choose-title {
        font-size: 1.8rem;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .why-choose-description {
        font-size: 15px;
        margin: 0 auto;
    }

    .why-choose-features {
        grid-template-columns: 1fr;
        gap: 20px;
        /* Tighter gap for card look */
        margin-bottom: 50px;
    }

    .feature-item {
        min-height: auto;
        padding: 24px;
        background: #fafafa;
        border: 1px solid rgba(0, 0, 0, 0.04);
        border-radius: 12px;
        display: flex;
        flex-direction: row;
        /* Horizontal layout for icons on mobile */
        align-items: center;
        gap: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    }

    .feature-icon {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background: rgba(170, 132, 83, 0.08);
        /* Subtle highlight behind icon */
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-icon i {
        font-size: 24px;
        /* Scaled down for mobile cards */
    }

    .feature-content {
        text-align: left;
    }

    .feature-title {
        font-size: 13px;
        margin-bottom: 4px;
        min-height: auto;
    }

    .feature-description {
        font-size: 13px;
        margin-bottom: 0;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
        gap: 30px;
    }

    .cta-text {
        width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Extra Small Devices */
@media (max-width: 575px) {
    .why-choose-left {
        min-height: 40vh;
    }

    .why-choose-right {
        padding: 40px 15px;
    }

    .why-choose-title {
        font-size: 1.6rem;
    }

    .feature-item {
        padding: 20px 15px;
        gap: 15px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
    }

    .feature-icon i {
        font-size: 20px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    .why-choose-image img,
    .feature-item,
    .feature-icon i,
    .cta-button {
        transition: none;
    }

    .why-choose-image:hover img,
    .feature-item:hover,
    .cta-button:hover {
        transform: none;
    }
}

/* =========================================
   PREMIUM SUITE CARD
   ========================================= */

.why-choose-suite-card {
    position: absolute;
    bottom: 60px;
    left: 60px;
    background: #1C1C1C;
    border: 1px solid rgba(170, 132, 83, 0.3);
    padding: 20px 15px;
    border-radius: 4px;
    text-align: center;
    max-width: 140px;
    min-width: 120px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease backwards 0.2s;
}

.why-choose-suite-card h2 {
    color: #AA8453;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Gilda Display', serif;
}

.why-choose-suite-card h4 {
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-family: 'Gilda Display', serif;
    line-height: 1.4;
}

/* Tablet Adjustments */
@media (max-width: 1199px) {
    .why-choose-suite-card {
        bottom: 40px;
        left: 40px;
    }
}

/* Mobile Adjustments for Suite Card */
@media (max-width: 767px) {
    .why-choose-suite-card {
        bottom: 30px;
        left: 30px;
        padding: 15px 12px;
        min-width: 100px;
        max-width: 120px;
        border-radius: 0 12px 0 12px;
        /* Verified styling */
    }

    .why-choose-suite-card h2 {
        font-size: 24px;
    }

    .why-choose-suite-card h4 {
        font-size: 10px;
    }
}