/* ============================================
   Direct Booking Section - Compact & Mobile-Friendly
   ============================================ */

.direct-booking-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.direct-booking-header {
    text-align: center;
    margin-bottom: 30px;
}

.direct-booking-header i {
    font-size: 40px;
    color: #e67e22;
    margin-bottom: 10px;
    display: block;
}

.direct-booking-header h3 {
    font-size: 28px;
    color: #2c3e50;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.direct-booking-header .subtitle {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0;
}

/* Benefits Compact */
.benefits-compact {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
}

.benefits-compact .benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

.benefits-compact .benefit-item i {
    font-size: 24px;
    color: #e67e22;
}

.benefits-compact .benefit-item span {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

/* Availability Check Compact */
.availability-check-compact {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.check-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.check-content i {
    font-size: 32px;
    color: #3498db;
    flex-shrink: 0;
}

.check-text h4 {
    font-size: 20px;
    color: #2c3e50;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.check-text p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

/* Airbnb Button Compact */
.airbnb-button-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #FF5A5F;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3);
}

.airbnb-button-compact:hover {
    background: #E04848;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 90, 95, 0.4);
}

.airbnb-button-compact i.fa-airbnb {
    font-size: 24px;
}

.airbnb-button-compact i.fa-external-link-alt {
    font-size: 14px;
}

/* Booking CTA Compact */
.booking-cta-compact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.cta-content i {
    font-size: 32px;
    color: white;
    flex-shrink: 0;
}

.cta-text h4 {
    font-size: 20px;
    color: white;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.cta-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Booking Button Compact */
.booking-button-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    color: #667eea;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.booking-button-compact:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Mobile Responsive
   ============================================ */

@media (max-width: 768px) {
    .direct-booking-section {
        padding: 30px 15px;
        margin: 30px 0;
    }
    
    .direct-booking-header h3 {
        font-size: 24px;
    }
    
    .direct-booking-header .subtitle {
        font-size: 14px;
    }
    
    .benefits-compact {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }
    
    .benefits-compact .benefit-item {
        padding: 10px 15px;
    }
    
    .benefits-compact .benefit-item i {
        font-size: 20px;
    }
    
    .benefits-compact .benefit-item span {
        font-size: 13px;
    }
    
    .availability-check-compact,
    .booking-cta-compact {
        padding: 20px;
    }
    
    .check-content i,
    .cta-content i {
        font-size: 28px;
    }
    
    .check-text h4,
    .cta-text h4 {
        font-size: 18px;
    }
    
    .check-text p,
    .cta-text p {
        font-size: 13px;
    }
    
    .airbnb-button-compact,
    .booking-button-compact {
        padding: 14px 20px;
        font-size: 14px;
        flex-wrap: wrap;
    }
    
    .airbnb-button-compact i.fa-airbnb {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .direct-booking-header i {
        font-size: 32px;
    }
    
    .direct-booking-header h3 {
        font-size: 20px;
    }
    
    .benefits-compact .benefit-item {
        font-size: 12px;
    }
    
    .check-content,
    .cta-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .check-text h4,
    .cta-text h4 {
        font-size: 16px;
    }
}
