/* ==============================
   GLOBAL RESET
============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f7f9fc;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ==============================
   HEADER (STICKY SAFE VERSION)
============================== */

.header {
    position: sticky;
    top: 0;
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s ease;
}

nav a:hover {
    color: #ff6b00;
}

/* ==============================
   HERO SECTION
============================== */

.hero {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    padding: 90px 0 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 18px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* ==============================
   BUTTONS
============================== */

.btn-primary {
    background: #ff6b00;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #e55d00;
}

.btn-outline {
    border: 2px solid white;
    padding: 12px 28px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    margin-left: 10px;
}

.btn-light {
    background: white;
    color: #ff6b00;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

/* ==============================
   FEATURES
============================== */

.features {
    padding: 70px 0;
    background: #ffffff;
}

.features-grid {
    display: flex;
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    flex: 1;
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
}

/* ==============================
   HOW IT WORKS
============================== */

.how {
    padding: 80px 0;
    background: #f0f4f8;
    text-align: center;
}

.section-title {
    font-size: 30px;
    margin-bottom: 40px;
    font-weight: 600;
}

.steps-modern {
    display: flex;
    gap: 25px;
}

.step-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    flex: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
}

.step-number {
    width: 55px;
    height: 55px;
    background: #ff6b00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 18px;
}

/* ==============================
   PRICING
============================== */

.pricing {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.pricing-grid {
    display: flex;
    gap: 25px;
}

.pricing-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    flex: 1;
    transition: 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-card.featured {
    background: #ff6b00;
    color: white;
    transform: scale(1.05);
}

.pricing-card ul {
    list-style: none;
    margin: 20px 0;
}

.pricing-card ul li {
    margin-bottom: 8px;
}

/* ==============================
   CTA
============================== */

.cta {
    background: linear-gradient(90deg, #ff6b00, #ff8c42);
    padding: 70px 0;
    text-align: center;
    color: white;
}

.cta h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

/* ==============================
   CONTACT
============================== */

.contact {
    padding: 60px 0;
    text-align: center;
    background: #f7f9fc;
}

/* ==============================
   FOOTER
============================== */

.footer {
    background: #264754;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* ==============================
   RESPONSIVE
============================== */

@media(max-width: 900px) {

    .features-grid,
    .steps-modern,
    .pricing-grid {
        flex-direction: column;
    }

    nav a {
        margin-left: 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

}
/* ==============================
   PRINT PAGE
============================== */

.print-section {
    padding: 60px 0;
}

.print-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.print-card h2 {
    margin-bottom: 30px;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    margin-bottom: 6px;
    font-weight: 500;
}

input, select, textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-family: inherit;
}

textarea {
    resize: none;
    height: 80px;
}

.total-box {
    margin-top: 25px;
    padding: 20px;
    background: #f7f9fc;
    border-radius: 10px;
    text-align: center;
}

.full-btn {
    width: 100%;
    margin-top: 20px;
}

/* Responsive */

@media(max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
/* ==============================
   PRICE INFO SECTION
============================== */

.price-info {
    margin-top: 10px;
}

.price-details {
    background: #f0f4f8;
    padding: 18px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.price-details p {
    margin-bottom: 6px;
}

.courier-note {
    color: #ff6b00;
    font-weight: 600;
}
/* ==============================
   DYNAMIC PRICE BOX
============================== */

.dynamic-price-wrapper {
    margin-top: 10px;
}

.dynamic-price-box {
    background: #fff8e6;
    padding: 18px 22px;
    border-radius: 10px;
    border-left: 5px solid #ff6b00;
}

.dynamic-price-box h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b00;
}

.courier-info {
    margin-top: 8px;
    font-size: 13px;
    color: #555;
}
/* ==============================
   THANK YOU PAGE
============================== */

.thankyou-section {
    padding: 80px 0;
    background: #f7f9fc;
    text-align: center;
}

.thankyou-card {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: auto;
}

.payment-box {
    margin-top: 30px;
    padding: 25px;
    background: #fff8e6;
    border-radius: 12px;
    border-left: 5px solid #ff6b00;
}

.qr-image {
    width: 200px;
    margin: 20px 0;
}

.note {
    font-size: 14px;
    margin-bottom: 20px;
}
/* ==============================
   SCROLLABLE PRICING
============================== */

.pricing {
    padding: 80px 0;
    background: #ffffff;
}

.pricing-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.pricing-scroll::-webkit-scrollbar {
    height: 6px;
}

.pricing-scroll::-webkit-scrollbar-thumb {
    background: #ff6b00;
    border-radius: 10px;
}

.pricing-card {
    min-width: 250px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    flex-shrink: 0;
    transition: 0.3s;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-6px);
}
/* ==============================
   BINDING SECTION
============================== */

.binding-section {
    padding: 80px 0;
    background: #f7f9fc;
    text-align: center;
}

.binding-grid {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.binding-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    flex: 1;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.binding-card:hover {
    transform: translateY(-8px);
}

.btn-outline-dark {
    border: 2px solid #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    color: #333;
    display: inline-block;
    margin-top: 15px;
}

.btn-outline-dark:hover {
    background: #333;
    color: white;
}

@media(max-width: 900px) {
    .binding-grid {
        flex-direction: column;
    }
}
/* ==============================
   AUTO SCROLL PRICING
============================== */

/* ==============================
   CLEAN AUTO SCROLL
============================== */

.pricing {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.pricing-scroll-wrapper {
    overflow: hidden;
    position: relative;
}

.pricing-scroll {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollLoop 30s linear infinite;
}

.pricing-scroll:hover {
    animation-play-state: paused;
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.pricing-card {
    min-width: 260px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    flex-shrink: 0;
    text-align: center;
    position: relative;
}

.badge {
    position: absolute;
    top: -10px;
    left: 15px;
    background: #ff6b00;
    color: white;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
}

/* FADE EFFECT LEFT & RIGHT */

.pricing::before,
.pricing::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.pricing::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.pricing::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}
/* ==============================
   HOME BUTTON
============================== */

.btn-outline-home {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #ff6b00;
    border-radius: 6px;
    text-decoration: none;
    color: #ff6b00;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline-home:hover {
    background: #ff6b00;
    color: white;
}
/* ==============================
   EXTRA SERVICES SECTION
============================== */

.extra-services {
    padding: 80px 0;
    background: #f7f9fc;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #ff6b00;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.service-btn:hover {
    background: #e55d00;
}
/* ==============================
   FOOTER FIX
============================== */

footer {
    background: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: #ff6b00;   /* Your theme orange */
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}
/* ==============================
   FLOATING BUTTON
============================== */

#floatingPrintBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #ff6b00;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 999;
}

#floatingPrintBtn:hover {
    background: #e55d00;
}

/* ==============================
   MODAL POPUP
============================== */

.quick-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.quick-modal-content {
    background: white;
    width: 400px;
    max-width: 90%;
    margin: 8% auto;
    padding: 25px;
    border-radius: 12px;
    position: relative;
}

.quick-modal-content input,
.quick-modal-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.quick-submit-btn {
    width: 100%;
    padding: 12px;
    background: #ff6b00;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
}
/* ==============================
   SEO CONTENT SECTION
============================== */

.seo-content {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

.seo-content h2 {
    margin-bottom: 20px;
}

.seo-content p {
    max-width: 800px;
    margin: 0 auto 15px auto;
    line-height: 1.6;
    color: #555;
}
