/* ===========================
   Dummy Hotels Page Specific Styles
   =========================== */

/* Dummy Hotels Hero Section */
.dummy-hotels-hero {
    background: linear-gradient(135deg, #013626 0%, #10b981 50%, #02764b 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.dummy-hotels-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hotelPattern" width="20" height="20" patternUnits="userSpaceOnUse"><rect x="2" y="2" width="16" height="16" fill="none" stroke="rgba(16,185,129,0.1)" stroke-width="1"/><rect x="5" y="5" width="3" height="3" fill="rgba(16,185,129,0.05)"/><rect x="12" y="5" width="3" height="3" fill="rgba(16,185,129,0.05)"/><rect x="5" y="12" width="3" height="3" fill="rgba(16,185,129,0.05)"/><rect x="12" y="12" width="3" height="3" fill="rgba(16,185,129,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23hotelPattern)"/></svg>');
    opacity: 0.3;
}

.hotel-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.verified-badge, .instant-badge, .network-badge {
    position: absolute;
    background: var(--white);
    color: var(--primary-black);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
    display: flex;
    align-items: center;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.verified-badge {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.instant-badge {
    bottom: -5%;
    left: 40%;
    animation-delay: 2s;
}

.network-badge {
    top: 50%;
    left: -5%;
    animation-delay: 4s;
}

.verified-badge i, .instant-badge i, .network-badge i {
    font-size: 1.5rem;
    color: #10b981;
    margin-right: 0.8rem;
}

.verified-badge div, .instant-badge div, .network-badge div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.verified-badge strong, .instant-badge strong, .network-badge strong {
    font-size: 1.2rem;
    color: #059669;
}

.verified-badge span, .instant-badge span, .network-badge span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Hotel Booking Form */
.hotel-booking-form .card {
    border-radius: 20px;
    border: none;
}

.hotel-booking-form .input-group-text {
    background: #10b981;
    color: var(--white);
    border: none;
}

.hotel-booking-form .form-control,
.hotel-booking-form .form-select {
    border: 2px solid #34d399;
    border-left: none;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.hotel-booking-form .form-control:focus,
.hotel-booking-form .form-select:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

.hotel-booking-form .btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
}

.hotel-booking-form .btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    color: var(--white);
}

.hotel-booking-form .pricing-summary {
    border: 2px solid #34d399;
    background: #ecfdf5 !important;
}

.hotel-booking-form .form-check-input:checked {
    background-color: #10b981;
    border-color: #10b981;
}

.hotel-booking-form .form-check-label {
    color: var(--primary-black);
    font-weight: 500;
}

/* Hotel Categories */
.category-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    border-left: 4px solid #10b981;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-left-color: #059669;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.category-header i {
    font-size: 2rem;
    color: #10b981;
    margin-right: 1rem;
}

.category-header h5 {
    color: #059669;
    font-weight: 700;
    margin: 0;
}

.category-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.category-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--text-gray);
}

.category-features li i {
    color: #10b981;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.category-price {
    padding: 1rem;
    background: #ecfdf5;
    border-radius: 10px;
    text-align: center;
    color: var(--text-gray);
}

.category-price strong {
    color: #059669;
    font-size: 1.2rem;
}

/* Popular Destinations */
.destination-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-top: 4px solid #10b981;
}

.destination-header {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    padding: 1rem;
    text-align: center;
}

.destination-header h6 {
    font-weight: 700;
    margin: 0;
    font-size: 1.1rem;
}

.destination-list {
    padding: 1.5rem;
}

.destination-item {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: #ecfdf5;
    border-radius: 8px;
    color: var(--text-gray);
    transition: var(--transition);
    border-left: 3px solid #34d399;
}

.destination-item:hover {
    background: #34d399;
    color: var(--primary-black);
    transform: translateX(5px);
    border-left-color: #10b981;
}

.destination-item:last-child {
    margin-bottom: 0;
}

/* Hotel Features for Dummy Hotels */
.hotel-features .feature-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.hotel-features .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-top: 4px solid #10b981;
}

.hotel-features .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.hotel-features .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.hotel-features .feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.hotel-features .feature-card h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #059669;
    font-weight: 600;
}

.hotel-features .feature-card p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* Hotel Contact Section */
.hotel-contact-section {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.hotel-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hotel-contact-section .container {
    position: relative;
    z-index: 2;
}

.hotel-contact-section h3 {
    color: var(--white);
    font-weight: 700;
}

.hotel-contact-section p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-features {
    margin: 2rem 0;
}

.contact-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    border-left: 4px solid #10b981;
}

.contact-feature i {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-feature h6 {
    margin: 0 0 0.5rem 0;
    color: var(--white);
    font-weight: 600;
}

.contact-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Contact Options for Hotels */
.hotel-contact-section .contact-options .contact-buttons .btn {
    margin-bottom: 1rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: var(--transition);
}

.hotel-contact-section .contact-options .contact-buttons .btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: var(--white);
}

.hotel-contact-section .contact-options .contact-buttons .btn-success:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    color: var(--white);
}

.hotel-contact-section .contact-options .contact-buttons .btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: var(--white);
}

.hotel-contact-section .contact-options .contact-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    color: var(--white);
}

.hotel-contact-section .contact-options .contact-buttons .btn-outline-primary {
    border: 2px solid #10b981;
    color: #10b981;
    background: transparent;
}

.hotel-contact-section .contact-options .contact-buttons .btn-outline-primary:hover {
    background: #10b981;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.hotel-contact-section .contact-options .contact-buttons .btn-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    color: var(--white);
}

.hotel-contact-section .contact-options .contact-buttons .btn-warning:hover {
    background: linear-gradient(135deg, #d97706, #92400e);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    color: var(--white);
}

/* Hotel FAQ Accordion */
.hotel-faq .accordion-button {
    background: var(--white);
    color: #059669;
    font-weight: 600;
    padding: 1.5rem;
    border: none;
}

.hotel-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
}

.hotel-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2310b981'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.hotel-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.hotel-faq .accordion-body {
    padding: 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Hero Features for Hotels */
.dummy-hotels-hero .hero-features .feature-item {
    padding: 0.8rem 0;
    background: rgba(16, 185, 129, 0.1);
    margin-bottom: 0.8rem;
    border-radius: 10px;
    padding-left: 1rem;
    border-left: 3px solid #10b981;
}

.dummy-hotels-hero .hero-features .feature-item i {
    color: #10b981;
}

/* CTA Buttons for Hotels */
.dummy-hotels-hero .hero-cta .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dummy-hotels-hero .hero-cta .btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: var(--white);
}

.dummy-hotels-hero .hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    color: var(--white);
}

.dummy-hotels-hero .hero-cta .btn-outline-primary {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.dummy-hotels-hero .hero-cta .btn-outline-primary:hover {
    background: var(--white);
    color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Step Cards for Hotels */
.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-top: 4px solid #10b981;
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(10deg);
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.step-card h5 {
    color: #059669;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* Responsive for Hotels Page */
@media (max-width: 992px) {
    .dummy-hotels-hero .hero-image-container {
        margin-top: 2rem;
    }
    
    .verified-badge, .instant-badge, .network-badge {
        position: static;
        margin: 1rem auto;
        animation: none;
    }
}

@media (max-width: 768px) {
    .hotel-booking-form .col-lg-6,
    .hotel-booking-form .col-lg-4 {
        margin-bottom: 1rem;
    }
    
    .hotel-contact-section .contact-options .contact-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto 1rem auto;
        display: block;
    }
    
    .contact-features .contact-feature {
        padding: 0.8rem;
    }
    
    .contact-features .contact-feature i {
        font-size: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .hotel-features .feature-card {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .hotel-features .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .hotel-features .feature-icon i {
        font-size: 1.5rem;
    }
    
    .category-card {
        margin-bottom: 2rem;
    }
    
    .destination-card {
        margin-bottom: 2rem;
    }
    
    .dummy-hotels-hero .hero-cta .btn {
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 0 auto 1rem auto;
    }
}/* Responsive for Dummy Page */
@media (max-width: 992px) {
    .dummy-tickets-hero .hero-image-container {
        margin-top: 2rem;
    }
    
    .authenticity-badge, .delivery-badge, .acceptance-badge {
        position: static;
        margin: 1rem auto;
        animation: none;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .dummy-order-form .trip-type-selection .form-check {
        display: block;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .dummy-order-form .col-lg-6 {
        margin-bottom: 1rem;
    }
    
    .dummy-contact-section .contact-options .contact-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto 1rem auto;
        display: block;
    }
    
    .contact-features .contact-feature {
        padding: 0.8rem;
    }
    
    .contact-features .contact-feature i {
        font-size: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .dummy-features .feature-card {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .dummy-features .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .dummy-features .feature-icon i {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .dummy-tickets-hero .hero-cta .btn {
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 0 auto 1rem auto;
    }
}
