/* ============================================
   BOOK NOW V5.1 - COMPLETE CSS
   ============================================ */

/* ---------- SECTION 1: FORM TOP ---------- */
.book-form-top {
    padding: 60px 0 70px;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    position: relative;
    overflow: hidden;
}

.book-form-top::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: bookGlow1 8s ease-in-out infinite;
}

.book-form-top::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46,196,182,0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: bookGlow2 10s ease-in-out infinite;
}

@keyframes bookGlow1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

@keyframes bookGlow2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.2); }
}

.book-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* ---------- FORM LEFT ---------- */
.book-form-left {
    padding-top: 20px;
    color: white;
}

.book-form-badge {
    display: inline-block;
    padding: 6px 22px;
    background: rgba(255,107,53,0.15);
    border: 1px solid rgba(255,107,53,0.3);
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FF6B35;
    margin-bottom: 15px;
    animation: bookFadeDown 0.8s ease;
}

.book-form-left h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    animation: bookFadeDown 1s ease;
    color: #ffffff;
}

.book-form-left h1 span {
    background: linear-gradient(135deg, #FF6B35, #F7C59F, #2EC4B6, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: bookGradient 4s ease-in-out infinite;
}

@keyframes bookGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.book-form-left p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 25px;
    line-height: 1.6;
    animation: bookFadeDown 1.2s ease;
    color: rgba(255,255,255,0.85);
}

.book-features-mini {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: bookFadeDown 1.4s ease;
}

.book-features-mini span {
    padding: 8px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

@keyframes bookFadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- FORM RIGHT ---------- */
.book-form-right {
    background: white;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    animation: bookSlideUp 0.8s ease;
}

@keyframes bookSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.book-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.book-form-field {
    margin-bottom: 16px;
}

.book-form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.book-form-field input,
.book-form-field select,
.book-form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
    box-sizing: border-box;
    color: #1a1a2e;
}

.book-form-field input:focus,
.book-form-field select:focus,
.book-form-field textarea:focus {
    border-color: #FF6B35;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
    background: white;
}

/* ---------- FIX: SELECT DROPDOWN TEXT CROPPING ---------- */
.book-form-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    padding-left: 16px;
    cursor: pointer;
    min-height: 48px;
    height: auto;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.book-form-field select:focus {
    border-color: #FF6B35;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
    background: white;
}

.book-form-field select option {
    padding: 12px 16px;
    font-size: 15px;
    color: #1a1a2e;
    background: white;
    min-height: 40px;
    height: auto;
    white-space: normal;
    word-wrap: break-word;
}

.book-form-field textarea {
    resize: vertical;
    min-height: 80px;
}

/* ---------- RADIO BUTTONS ---------- */
.book-radio-group {
    display: flex;
    gap: 25px;
    padding-top: 5px;
}

.book-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    color: #1a1a2e;
    font-weight: 500;
}

.book-radio input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #FF6B35;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.book-radio span {
    color: #1a1a2e;
}

/* ---------- SUBMIT BUTTON ---------- */
.book-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
    position: relative;
    overflow: hidden;
}

.book-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.book-submit-btn:hover::before {
    left: 100%;
}

.book-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37,211,102,0.4);
}

/* ---------- CONTACT LINKS ---------- */
.book-contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #e8e8e8;
    flex-wrap: wrap;
}

.book-contact-links a {
    color: #FF6B35;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-contact-links a:hover {
    color: #E71D36;
    transform: translateY(-2px);
}

/* ---------- SECTION 2: WHY CHOOSE ---------- */
.book-why {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.book-why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.book-why-container h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 45px;
}

.book-why-container h2 span {
    background: linear-gradient(135deg, #FF6B35, #004E89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.book-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.book-why-item {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 2px solid transparent;
}

.book-why-item:hover {
    transform: translateY(-8px);
    border-color: #FF6B35;
    box-shadow: 0 20px 60px rgba(255,107,53,0.12);
}

.book-why-item span {
    font-size: 44px;
    display: block;
    margin-bottom: 12px;
}

.book-why-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.book-why-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ---------- SECTION 3: FLEET ---------- */
.book-fleet {
    padding: 70px 0;
    background: white;
}

.book-fleet-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.book-fleet-container h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 45px;
}

.book-fleet-container h2 span {
    background: linear-gradient(135deg, #FF6B35, #004E89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.book-fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.book-fleet-item {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.book-fleet-item:hover {
    background: white;
    border-color: #FF6B35;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255,107,53,0.12);
}

.book-fleet-item span {
    font-size: 50px;
    display: block;
    margin-bottom: 10px;
}

.book-fleet-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.book-fleet-item p {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.fleet-price {
    display: inline-block;
    padding: 4px 18px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
}

/* ---------- SECTION 4: TESTIMONIALS ---------- */
.book-testimonials {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.book-test-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.book-test-container h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 45px;
}

.book-test-container h2 span {
    background: linear-gradient(135deg, #FF6B35, #004E89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.book-test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.book-test-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}

.book-test-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.book-test-item .stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 12px;
}

.book-test-item p {
    color: #555;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 12px;
}

.book-test-item strong {
    display: block;
    color: #1a1a2e;
    font-size: 15px;
}

.book-test-item span {
    color: #666;
    font-size: 13px;
}

/* ---------- SECTION 5: CTA ---------- */
.book-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.book-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: bookGlow1 8s ease-in-out infinite;
}

.book-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46,196,182,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: bookGlow2 10s ease-in-out infinite;
}

.book-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.book-cta-container h2 {
    font-size: 38px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.book-cta-container h2 span {
    background: linear-gradient(135deg, #FF6B35, #F7C59F, #2EC4B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: bookGradient 4s ease-in-out infinite;
}

.book-cta-container p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    margin-bottom: 25px;
}

.book-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-call {
    padding: 14px 35px;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-call:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,107,53,0.4);
    color: white;
}

.cta-whatsapp {
    padding: 14px 35px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37,211,102,0.4);
    color: white;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .book-form-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .book-form-left {
        text-align: center;
        padding-top: 0;
    }
    .book-features-mini {
        justify-content: center;
    }
    .book-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .book-fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .book-test-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .book-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .book-form-left h1 {
        font-size: 32px;
    }
    .book-form-right {
        padding: 25px 20px;
    }
    .book-why-grid {
        grid-template-columns: 1fr;
    }
    .book-fleet-grid {
        grid-template-columns: 1fr 1fr;
    }
    .book-test-grid {
        grid-template-columns: 1fr;
    }
    .book-cta-container h2 {
        font-size: 28px;
    }
    .book-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-call,
    .cta-whatsapp {
        width: 100%;
        text-align: center;
    }
    .book-contact-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .book-radio-group {
        justify-content: center;
    }
    .book-features-mini {
        justify-content: center;
    }
    .book-form-field select {
        min-height: 44px;
        font-size: 15px;
        padding: 10px 36px 10px 14px;
    }
    .book-form-field select option {
        font-size: 14px;
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .book-fleet-grid {
        grid-template-columns: 1fr;
    }
    .book-form-left h1 {
        font-size: 26px;
    }
    .book-form-right {
        padding: 18px 14px;
    }
    .book-form-field input,
    .book-form-field select,
    .book-form-field textarea {
        font-size: 14px;
        padding: 10px 14px;
    }
    .book-submit-btn {
        font-size: 17px;
        padding: 14px;
    }
    .book-form-field select {
        min-height: 40px;
        font-size: 14px;
        padding: 8px 32px 8px 12px;
    }
    .book-form-field select option {
        font-size: 13px;
        padding: 8px 12px;
    }
}