/* index.php file style below */
:root {
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --secondary: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --light: #f8fafc;
    --dark: #1e293b;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #475569;
    transition: all 0.3s ease;
}

.hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 2rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
}

.reviews-animation-container {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 500px;
    position: relative;
}

.trustpilot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #00b67a;
}

.trustpilot-logo i {
    margin-right: 0.5rem;
}

.overall-rating {
    display: flex;
    align-items: center;
}

.rating-stars {
    color: #00b67a;
    margin-right: 0.5rem;
}

.rating-text {
    font-weight: 600;
    color: #475569;
}

.reviews-container {
    height: calc(100% - 70px);
    overflow-y: auto;
    padding: 1rem;
}

.review-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 0.75rem;
}

.reviewer-details h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.review-date {
    color: #94a3b8;
    font-size: 0.875rem;
}

.review-stars {
    color: #f59e0b;
}

.review-text {
    color: #475569;
    line-height: 1.5;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.download-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e2e8f0;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.package-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.package-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-price {
    margin-top: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    color: #64748b;
    font-size: 1rem;
}

.package-description {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #64748b;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.features-list i {
    color: var(--success);
    margin-right: 0.75rem;
}

.pricing-btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: var(--primary);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.pricing-btn:hover {
    background: var(--primary-dark);
}

.pricing-btn.popular-btn {
    background: var(--gradient);
}

.pricing-footer {
    text-align: center;
    color: #64748b;
}

.pricing-footer p {
    margin-bottom: 0.5rem;
}

.pricing-footer i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.about-section {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-description {
    margin-bottom: 1.5rem;
    color: #64748b;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.25rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: #64748b;
}

.what-is-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.what-is-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.what-is-description {
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.how-it-works-section {
    padding: 5rem 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
}

.step p {
    color: #64748b;
}

.how-to-use-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.success-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.client-showcase {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: transform 0.3s;
    cursor: pointer;
    border: 1px solid #e2e8f0;
}

.client-showcase:hover {
    transform: translateY(-5px);
}

.client-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-right: 1rem;
}

.client-info {
    flex: 1;
}

.client-name {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.client-industry {
    color: #64748b;
    font-size: 0.875rem;
}

.client-rating {
    text-align: right;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.rating-stars-display {
    color: #f59e0b;
}

.client-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

.client-testimonial {
    margin-bottom: 1.5rem;
}

.client-testimonial p {
    font-style: italic;
    color: #475569;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #1e293b;
}

.visit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    padding: 0.75rem;
    border: 1px solid var(--primary);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.visit-button:hover {
    background: var(--primary);
    color: white;
}

.success-cta {
    text-align: center;
    margin-top: 3rem;
}

.success-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #475569;
}

.faq-section {
    padding: 5rem 0;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.faq-item p {
    color: #475569;
    line-height: 1.7;
}

.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #475569;
}

.contact-form {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    margin-bottom: 1rem;
}

.support-info {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.support-info p {
    margin-bottom: 0.5rem;
}

.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .success-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* End of index.php file style */








/* Order.php file Css below */

/* payment method design below  */
/* Custom Payment Buttons */

#methodButtons button {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    margin: 8px;
    border-radius: 8px;
    font-weight: normal;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 3px 8px rgba(0, 136, 204, 0.25);
}

#methodButtons button:hover {
    background-color: rgb(0, 110, 170);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 136, 204, 0.4);
    transform: translateY(-2px);
}

#methodButtons button.active {
    background-color: rgb(0, 102, 155);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.5);
    transform: scale(1.03);
}

.wallet-address {
    margin-bottom: 20px;
}

.copy-btn {
    margin-top: 10px;
    background-color: rgb(0, 136, 204);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.copy-btn:hover {
    background-color: rgb(0, 110, 170);
}

.qr-code-image {
    width: 160px;
    height: 160px;
    border-radius: 8px;
}

.payment-methods {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-primarysk {
    background-color: #0088cc !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Page style below  */


.order-section {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.order-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.package-info {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0088cc;
    text-align: center;
    margin-bottom: 1rem;
}

.package-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.package-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0088cc;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0088cc;
}

.order-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
}

.order-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.order-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-group label.required::after {
    content: " *";
    color: #ef4444;
}

.form-group input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus {
    border-color: #0088cc;
    box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

/* Custom Dropdown Styling */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-selected {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    color: #1e293b;
}

.dropdown-selected:hover,
.dropdown-selected.active {
    border-color: #0088cc;
    box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    color: #64748b;
    font-size: 0.9rem;
}

.dropdown-selected.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 136, 204, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.dropdown-options.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-option {
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 136, 204, 0.1);
    color: #1e293b;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.dropdown-option.selected {
    background: rgba(0, 136, 204, 0.15);
    color: #0088cc;
    font-weight: 600;
}

.dropdown-option.default {
    border-bottom: 2px solid rgba(0, 136, 204, 0.2);
    font-weight: 600;
    background: rgba(0, 136, 204, 0.05);
}

/* Custom scrollbar for dropdown */
.dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.dropdown-options::-webkit-scrollbar-thumb {
    background: rgba(0, 136, 204, 0.3);
    border-radius: 10px;
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 136, 204, 0.5);
}

/* Mobile responsive fixes */
@media (max-width: 768px) {

    .form-group input,
    .form-group select,
    .dropdown-selected {
        padding: 1rem 1.25rem;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .form-group input[type="url"] {
        word-break: break-all;
        overflow-wrap: anywhere;
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .dropdown-option {
        padding: 0.875rem 1.25rem;
        font-size: 16px;
    }

    .dropdown-options {
        max-height: 250px;
    }

    /* Order confirmation mobile fixes */
    .summary-value {
        word-break: break-all;
        overflow-wrap: anywhere;
        max-width: 100%;
        min-width: 0;
        flex: 1;
        text-align: right;
    }

    .summary-row {
        align-items: flex-start;
        gap: 0.75rem;
    }

    .summary-label {
        flex-shrink: 0;
        min-width: 0;
        white-space: nowrap;
    }

    .order-summary {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {

    .form-group input,
    .form-group select,
    .dropdown-selected {
        padding: 0.875rem 1rem;
        font-size: 16px;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .help-text {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    /* Enhanced mobile fixes for very small screens */
    .summary-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .summary-label {
        font-weight: 600;
        color: #374151;
        white-space: normal;
    }

    .summary-value {
        text-align: left;
        word-break: break-all;
        overflow-wrap: anywhere;
        padding-left: 1rem;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .order-confirmation {
        padding: 1.5rem;
    }
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.custom-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.custom-checkbox input:checked~.checkmark {
    background: #0088cc;
    border-color: #0088cc;
}

.checkmark::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    font-size: 0.8rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.custom-checkbox input:checked~.checkmark::after {
    opacity: 1;
    transform: scale(1);
}

.file-upload-section {
    display: none;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 136, 204, 0.05);
    border: 2px dashed rgba(0, 136, 204, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.file-upload-section.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.file-upload-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0088cc;
    margin-bottom: 1rem;
}

.file-upload-area {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed #0088cc;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.file-upload-area:hover {
    background: rgba(0, 136, 204, 0.05);
    border-color: #006699;
}

.file-upload-area.dragover {
    background: rgba(0, 136, 204, 0.1);
    border-color: #006699;
    transform: scale(1.02);
}

.upload-icon {
    font-size: 2.5rem;
    color: #0088cc;
    margin-bottom: 1rem;
}

.upload-text {
    text-align: center;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.upload-text strong {
    color: #0088cc;
    font-weight: 600;
}

.file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-info {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    color: #059669;
}

.file-info.show {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.help-text {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: #0088cc;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

.submit-btn:hover {
    background: #006699;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 136, 204, 0.4);
}

.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.order-confirmation {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
    display: none;
}

.order-confirmation.show {
    display: block;
    animation: slideIn 0.5s ease-out;
}

.confirmation-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
}

.order-summary {
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 136, 204, 0.1);
}

.summary-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: #0088cc;
}

.summary-label {
    color: #64748b;
    font-weight: 500;
}

.summary-value {
    color: #1e293b;
    font-weight: 600;
}

.confirmation-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.edit-btn {
    padding: 1rem 2rem;
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.edit-btn:hover {
    background: #f8fafc;
    border-color: #0088cc;
    color: #0088cc;
}

.confirm-btn {
    padding: 1rem 2rem;
    background: #0088cc;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

.confirm-btn:hover {
    background: #006699;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 136, 204, 0.4);
}

.payment-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
    display: none;
}

.payment-section.show {
    display: block;
    animation: slideIn 0.5s ease-out;
}

.payment-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.payment-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
}

.payment-amount {
    background: linear-gradient(135deg, #0088cc, #06b6d4);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
}

.payment-timer {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    animation: timerPulse 2s ease-in-out infinite;
}

@keyframes timerPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.timer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.timer-display {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Monaco', 'Consolas', monospace;
}

.timer-expired {
    background: rgba(107, 114, 128, 0.9);
    animation: none;
}

.payment-complete-btn {
    width: 100%;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    margin-bottom: 2rem;
}

.payment-complete-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.payment-complete-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.verification-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
    display: none;
    text-align: center;
}

.verification-section.show {
    display: block;
    animation: slideIn 0.5s ease-out;
}

.verification-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.verification-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.verification-spinner {
    width: 100px;
    height: 100px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #0088cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.verification-status {
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.status-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #64748b;
}

.status-step.active {
    color: #0088cc;
}

.status-step.completed {
    color: #10b981;
}

.status-step i {
    font-size: 1.2rem;
}

.payment-failed-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
    display: none;
    text-align: center;
}

.payment-failed-section.show {
    display: block;
    animation: slideIn 0.5s ease-out;
}

.failed-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 1rem;
}

.failed-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.failed-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 3rem;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.failed-message {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.failed-message h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1rem;
}

.failed-message p {
    color: #991b1b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.failed-message ul {
    color: #991b1b;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    margin: 0;
    padding-left: 1.5rem;
}

.failed-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-contact-btn {
    padding: 1.25rem 2rem;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    text-decoration: none;
}

.support-contact-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.4);
    color: white;
    text-decoration: none;
}

.retry-payment-btn {
    padding: 1.25rem 2rem;
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.retry-payment-btn:hover {
    background: #f8fafc;
    border-color: #0088cc;
    color: #0088cc;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.amount-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.amount-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.amount-currency {
    font-size: 1.1rem;
    opacity: 0.9;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.wallet-address {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.wallet-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.wallet-address-text {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
    color: #0088cc;
    word-break: break-all;
    margin-bottom: 1rem;
    user-select: all;
}

.copy-btn {
    background: #0088cc;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.copy-btn:hover {
    background: #006699;
}

.qr-code {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.qr-code-image {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    margin: 0 auto 1rem;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.payment-instructions {
    background: rgba(255, 248, 220, 0.9);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.instructions-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instructions-list {
    color: #78350f;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 1.5rem;
}

.instructions-list li {
    margin-bottom: 0.5rem;
}

.back-to-order {
    display: flex;
    justify-content: center;
}

.back-btn {
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-btn:hover {
    background: #f8fafc;
    border-color: #0088cc;
    color: #0088cc;
}

.contact-info {
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0088cc;
    color: white;
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: #006699;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .order-section {
        padding: 6rem 0 2rem;
    }

    .order-container {
        padding: 0 1rem;
    }

    .order-form,
    .order-confirmation,
    .payment-section {
        padding: 2rem;
    }

    .order-title,
    .confirmation-title,
    .payment-title {
        font-size: 2rem;
    }

    .package-details {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .upload-text {
        font-size: 0.9rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .confirmation-buttons,
    .failed-actions {
        flex-direction: column;
    }

    .wallet-address-text {
        font-size: 0.8rem;
    }

    .amount-value,
    .timer-display {
        font-size: 2rem;
    }

    .verification-title,
    .failed-title {
        font-size: 2rem;
    }

    .verification-spinner,
    .failed-icon {
        width: 80px;
        height: 80px;
    }

    .failed-icon {
        font-size: 2.5rem;
    }
}


/* End of order.php file style */