/* ===========================
   Dummy Tickets Page Specific Styles
   =========================== */

/* Dummy Tickets Hero Section */
.dummy-tickets-hero {
    background: linear-gradient(135deg, #461798 0%, #a855f7 50%, #6b29ad 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.dummy-tickets-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="ticketPattern" width="25" height="25" patternUnits="userSpaceOnUse"><rect x="0" y="5" width="25" height="15" fill="none" stroke="rgba(168,85,247,0.1)" stroke-width="1" stroke-dasharray="2,2"/><circle cx="5" cy="12.5" r="1" fill="rgba(168,85,247,0.05)"/><circle cx="12.5" cy="12.5" r="1" fill="rgba(168,85,247,0.05)"/><circle cx="20" cy="12.5" r="1" fill="rgba(168,85,247,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23ticketPattern)"/></svg>');
    opacity: 0.3;
}

.dummy-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.authenticity-badge, .delivery-badge, .acceptance-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;
}

.authenticity-badge {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.delivery-badge {
    bottom: 20%;
    left: 35%;
    animation-delay: 2s;
}

.acceptance-badge {
    top: 50%;
    left: -5%;
    animation-delay: 4s;
}

.authenticity-badge i, .delivery-badge i, .acceptance-badge i {
    font-size: 1.5rem;
    color: #a855f7;
    margin-right: 0.8rem;
}

.authenticity-badge div, .delivery-badge div, .acceptance-badge div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.authenticity-badge strong, .delivery-badge strong, .acceptance-badge strong {
    font-size: 1.2rem;
    color: #7c3aed;
}

.authenticity-badge span, .delivery-badge span, .acceptance-badge span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Dummy Order Form */
.dummy-order-form .card {
    border-radius: 20px;
    border: none;
}

.dummy-order-form .trip-type-selection {
    background: #f3e8ff;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #c084fc;
}

.dummy-order-form .trip-type-selection .form-check-input:checked {
    background-color: #a855f7;
    border-color: #a855f7;
}

.dummy-order-form .trip-type-selection .form-check-label {
    font-weight: 600;
    color: var(--primary-black);
}

.dummy-order-form .input-group-text {
    background: #a855f7;
    color: var(--white);
    border: none;
}

.dummy-order-form .form-control,
.dummy-order-form .form-select {
    border: 2px solid #c084fc;
    border-left: none;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.dummy-order-form .form-control:focus,
.dummy-order-form .form-select:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 0.2rem rgba(168, 85, 247, 0.25);
}

.dummy-order-form .btn-primary {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
}

.dummy-order-form .btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
    color: var(--white);
}

.dummy-order-form .pricing-summary {
    border: 2px solid #c084fc;
    background: #faf5ff !important;
}

/* How It Works Section */
.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 #a855f7;
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    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, #a855f7, #7c3aed);
    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: #7c3aed;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* Dummy Features */
.dummy-features .feature-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.dummy-features .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-top: 4px solid #a855f7;
}

.dummy-features .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.dummy-features .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.dummy-features .feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.dummy-features .feature-card h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #7c3aed;
    font-weight: 600;
}

.dummy-features .feature-card p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* Pricing Plans */
.pricing-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.pricing-card.featured {
    border: 3px solid #a855f7;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a855f7, #7c3aed);
}

.pricing-header {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.pricing-header h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.price .currency {
    font-size: 1rem;
    font-weight: 600;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
}

.price .period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    color: var(--text-gray);
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #a855f7;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.pricing-card .btn {
    margin: 0 2rem 2rem 2rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: var(--transition);
}

.pricing-card .btn-primary {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border: none;
    color: var(--white);
}

.pricing-card .btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
    color: var(--white);
}

.pricing-card .btn-outline-primary {
    border: 2px solid #a855f7;
    color: #a855f7;
}

.pricing-card .btn-outline-primary:hover {
    background: #a855f7;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-top: 4px solid #a855f7;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #f59e0b;
    margin-right: 0.2rem;
}

.testimonial-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    color: #7c3aed;
    font-weight: 700;
    display: block;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Dummy Contact Section */
.dummy-contact-section {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.dummy-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.dummy-contact-section .container {
    position: relative;
    z-index: 2;
}

.dummy-contact-section h3 {
    color: var(--white);
    font-weight: 700;
}

.dummy-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(168, 85, 247, 0.1);
    border-radius: 10px;
    border-left: 4px solid #a855f7;
}

.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 Dummy */
.dummy-contact-section .contact-options .contact-buttons .btn {
    margin-bottom: 1rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: var(--transition);
}

.dummy-contact-section .contact-options .contact-buttons .btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: var(--white);
}

.dummy-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);
}

.dummy-contact-section .contact-options .contact-buttons .btn-primary {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border: none;
    color: var(--white);
}

.dummy-contact-section .contact-options .contact-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
    color: var(--white);
}

.dummy-contact-section .contact-options .contact-buttons .btn-outline-primary {
    border: 2px solid #a855f7;
    color: #a855f7;
    background: transparent;
}

.dummy-contact-section .contact-options .contact-buttons .btn-outline-primary:hover {
    background: #a855f7;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.dummy-contact-section .contact-options .contact-buttons .btn-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    color: var(--white);
}

.dummy-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);
}

/* Dummy FAQ Accordion */
.dummy-faq .accordion-button {
    background: var(--white);
    color: #7c3aed;
    font-weight: 600;
    padding: 1.5rem;
    border: none;
}

.dummy-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: var(--white);
}

.dummy-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='%23a855f7'><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>");
}

.dummy-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>");
}

.dummy-faq .accordion-body {
    padding: 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Hero Features for Dummy */
.dummy-tickets-hero .hero-features .feature-item {
    padding: 0.8rem 0;
    background: rgba(168, 85, 247, 0.8);
    margin-bottom: 0.8rem;
    border-radius: 10px;
    padding-left: 1rem;
    border-left: 3px solid #a855f7;
}

.dummy-tickets-hero .hero-features .feature-item i {
    color: #d2aef5;
}

/* CTA Buttons */
.dummy-tickets-hero .hero-cta .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dummy-tickets-hero .hero-cta .btn-primary {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border: none;
    color: var(--white);
}

.dummy-tickets-hero .hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
    color: var(--white);
}

.dummy-tickets-hero .hero-cta .btn-outline-primary {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.dummy-tickets-hero .hero-cta .btn-outline-primary:hover {
    background: var(--white);
    color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}
