/* Static Content Sections Styles */
.content-section {
    padding: 25px 0;
    background: #fff;
}

    .content-section.gray-bg {
        background: #f8f9fa;
    }

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 20px;
}

.feature-image {
    flex: 0 0 350px;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

    .feature-image img {
        width: 100%;
        /*height: 280px;*/
        object-fit: cover;
        display: block;
    }

.feature-content {
    flex: 1;
}

    .feature-content h3 {
        font-size: 32px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 20px;
    }

    .feature-content p {
        font-size: 16px;
        line-height: 1.7;
        color: #555;
        margin-bottom: 12px;
        text-align: justify;
    }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
}

    .feature-list li {
        padding: 2px 0;
        font-size: 15px;
        color: #555;
        display: flex;
        align-items: flex-start;
        line-height: 1.5;
    }

        .feature-list li:before {
            content: "�";
            color: #667eea;
            font-weight: bold;
            font-size: 20px;
            margin-right: 8px;
            line-height: 1.2;
        }

.offers-highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

    .offers-highlight h3 {
        color: #fff !important;
        margin: 0 !important;
    }

/* Top Private Travels Section */
.private-travels-section {
    padding: 40px 0;
    background: #fff;
}

.travels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.travel-logo {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .travel-logo:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    }

/* Popular Routes Section */
.popular-routes-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.route-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .route-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    }

.route-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

    .route-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.route-details {
    flex: 1;
}

    .route-details h4 {
        font-size: 18px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 5px;
    }

    .route-details p {
        font-size: 14px;
        color: #7f8c8d;
        margin: 0;
    }

.route-btn {
    background: #667eea;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

    .route-btn:hover {
        background: #5568d3;
    }

/* Carousel Section */
.carousel-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

    .carousel-section .section-title {
        color: #fff;
    }

    .carousel-section .section-subtitle {
        color: rgba(255,255,255,0.9);
    }

.offers-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .carousel-track::-webkit-scrollbar {
        display: none;
    }

.offer-card {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
}

    .offer-card:hover {
        transform: translateY(-5px);
    }

.offer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
}

.offer-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.offer-card p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.offer-code {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    color: #667eea;
    display: inline-block;
    font-size: 14px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .carousel-btn:hover {
        background: rgba(255,255,255,0.5);
    }

/* Stats Section */
.stats-section {
    padding: 40px 0;
    background: #2c3e50;
    color: #fff;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
    color: #ecf0f1;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-box {
        flex-direction: column;
    }

    .feature-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .offer-card {
        flex: 0 0 240px;
    }

    .section-title {
        font-size: 24px;
    }

    .feature-content h3 {
        font-size: 22px;
    }
}


/* Modal Animation */
.login-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 1000;
}

    .login-modal-overlay.show {
        opacity: 1;
    }

/* Shake animation */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-8px);
    }

    50% {
        transform: translateX(8px);
    }

    75% {
        transform: translateX(-4px);
    }
}

.shake {
    animation: shake 0.4s;
}

/* Toast */
.custom-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    color: #fff;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 2000;
}

    .custom-toast.show {
        opacity: 1;
        transform: translateY(0);
    }

.toast-success {
    background: #2ecc71;
}

.toast-error {
    background: #e74c3c;
}


/* Main Modal Container */
.login-modal {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    animation: modalPop 0.3s ease;
    position: relative;
}

/* Pop animation */
@keyframes modalPop {
    0% {
        transform: scale(0.85);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Header */
.login-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: #f7f9fc;
    border-radius: 12px 12px 0 0;
}

.login-logo {
    max-height: 120px;
}

.modal-close-btn {
    background: transparent;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #666;
    transition: 0.2s;
}

    .modal-close-btn:hover {
        color: #000;
    }

/* Body */
.login-modal-body {
    padding: 20px;
}

    .login-modal-body h2 {
        font-size: 24px;
        margin: 0 0 5px;
        color: #2c3e50;
    }

.login-subtitle {
    margin-bottom: 20px;
    font-size: 14px;
    color: #7f8c8d;
}

/* Inputs */
.login-form-group {
    margin-bottom: 15px;
}

.login-input-wrapper {
    position: relative;
}

.login-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.login-input-wrapper input {
    width: 100%;
    padding: 10px 40px 10px 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
}

    .login-input-wrapper input:focus {
        border-color: #667eea;
        box-shadow: 0 0 3px rgba(102,126,234,0.5);
    }

/* Toggle Password */
.login-toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
}

/* Forgot Links */
.login-forgot-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.forgot-link {
    font-size: 14px;
    color: #667eea;
    text-decoration: none;
}

    .forgot-link:hover {
        text-decoration: underline;
    }

/* Actions */
.login-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.login-btn-cancel {
    padding: 8px 16px;
    border: none;
    background: #ddd;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.login-btn-signin {
    padding: 8px 16px;
    border: none;
    background: #667eea;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

    .login-btn-signin:hover {
        background: #5568d3;
    }

/* Loading spinner for Sign In button */
.login-btn-signin .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.login-btn-signin.loading {
    pointer-events: none;
    opacity: 0.7;
}

    .login-btn-signin.loading .btn-text {
        display: none;
    }

    .login-btn-signin.loading .spinner {
        display: block;
    }


/*  Terms and COnditions   */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #f8f9fa;
    color: #2c3e50;
}


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

    .hero-section h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .hero-section p {
        font-size: 20px;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }

/* Content Sections */








.terms-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.terms-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.terms-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.terms-content ul {
    margin-left: 18px;
    margin-bottom: 12px;
}

    .terms-content ul li {
        font-size: 15px;
        line-height: 1.7;
        color: #555;
        margin-bottom: 4px;
    }

.effective-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 10px;
}



/* Footer Styles */
.main-footer {
    /*    background: linear-gradient(180deg, rgba(5,35,60,0.95), rgba(5,35,60,0.98)), url("../../images/footer-bg-mountains.jpg") center/cover no-repeat;
*/
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 15px 30px;
    margin-top: 40px;
    position: relative;
    border-radius: 8px;
}

.main-footer-overlay {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.main-footer h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.main-footer .footer-tagline {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.85;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        text-decoration: none;
        color: #ffffff;
        transition: background 0.3s ease, transform 0.3s ease;
    }

        .footer-social a:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }

.footer-links {
    margin: 20px 0 15px;
    font-size: 14px;
}

    .footer-links a {
        color: #ffffff;
        text-decoration: none;
        margin: 0 8px;
        opacity: 0.9;
    }

    .footer-links span.separator {
        color: rgba(255,255,255,0.4);
    }

    .footer-links a:hover {
        text-decoration: underline;
    }

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 20px auto 15px;
    max-width: 900px;
}

.footer-copy {
    font-size: 13px;
    opacity: 0.85;
}


/* Terms and conditions*/


/* privacy policy
          /* Header Styles */
.top-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

/*.logo img {
    max-height: 50px;
}*/

.top-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 15px;
    font-weight: 600;
}

    .top-nav div {
        cursor: pointer;
        transition: color 0.3s ease;
        color: #2c3e50;
    }

        .top-nav div:hover {
            color: #667eea;
        }

/* Hero Section */






/* Content Sections */








/* Policy Content Box */
.policy-box {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-top: 4px solid #667eea;
}

    .policy-box h3 {
        font-size: 24px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .policy-box h4 {
        font-size: 20px;
        font-weight: 600;
        color: #2c3e50;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .policy-box p {
        font-size: 15px;
        color: #555;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .policy-box ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 20px;
    }

        .policy-box ul li {
            font-size: 15px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

            .policy-box ul li:before {
                content: "�";
                color: #667eea;
                font-weight: bold;
                font-size: 20px;
                position: absolute;
                left: 0;
            }

    .policy-box ol {
        padding-left: 20px;
        margin-bottom: 20px;
    }

        .policy-box ol li {
            font-size: 15px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
        }

    .policy-box strong {
        color: #2c3e50;
        font-weight: 600;
    }

    .policy-box a {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
    }

        .policy-box a:hover {
            text-decoration: underline;
        }

/* Info Banner */
.info-banner {
    background: #e8f4f8;
    border-left: 5px solid #3498db;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 8px;
}

    .info-banner h4 {
        font-size: 18px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .info-banner p {
        font-size: 15px;
        color: #555;
        margin: 5px 0;
        line-height: 1.6;
    }

/* Warning Banner */
.warning-banner {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 8px;
}

    .warning-banner h4 {
        font-size: 18px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .warning-banner p {
        font-size: 15px;
        color: #555;
        margin: 5px 0;
        line-height: 1.6;
    }

/* Contact Section */
.contact-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

    .contact-box h3 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .contact-box p {
        font-size: 16px;
        margin: 10px 0;
        line-height: 1.8;
    }

    .contact-box a {
        color: #fff;
        text-decoration: underline;
        font-weight: 600;
    }

        .contact-box a:hover {
            text-decoration: none;
        }

/* Effective Date */


/* Numbered Section */
.numbered-section {
    counter-reset: section;
}

    .numbered-section .policy-box h3:before {
        counter-increment: section;
        margin-right: 10px;
    }

/* Responsive */


/*privacy policy*/



/* Hero Section */






/* Content Sections */








/* Policy Content Box */














/* Info Banner */






/* Warning Banner */






/* Contact Section */










/* Effective Date */


/* Responsive */


/* Contact Section */
.contact-section {
    background: #2c3e50;
    color: #fff;
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.contact-item {
    text-align: center;
}

.contact-icon {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #3498db;
}

.contact-item p {
    font-size: 16px;
    color: #ecf0f1;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
}

    .contact-item a:hover {
        text-decoration: underline;
    }

/* Responsive */


/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    color: #fff;
}

    .highlight-box h3 {
        color: #fff !important;
        margin-bottom: 10px;
    }

    .highlight-box p {
        color: #fff !important;
        margin: 0;
    }


/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 35px;
    color: #fff;
    text-align: center;
}

    .value-card h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .value-card p {
        font-size: 15px;
        line-height: 1.7;
    }

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 25px rgba(0,0,0,0.12);
    }

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* ================================================
   INDEX PAGE - Unique styles (.index-page)
   ================================================ */

/* Navigation Card Container */
.index-page .idx-nav-card-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 100;
    padding: 0 20px;
    transform: translateY(-40%) translateX(5%);
}

.index-page .idx-nav-card {
    background: white;
    border-radius: 16px;
    padding: 5px 5px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 100;
}

.index-page .idx-top-header {
    position: relative;
    background: white;
    padding-bottom: 20px;
    z-index: 99 !important;
}

.index-page .idx-search-section {
    position: relative;
    margin-top: -45px;
    z-index: 50;
}

.index-page .idx-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    position: relative;
}

.index-page .idx-nav-item:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.index-page .idx-nav-icon-container {
    width: 70px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.index-page .idx-nav-item:hover .idx-nav-icon-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.index-page .idx-nav-icon-container img {
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.index-page .idx-nav-label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-align: center;
    transition: color 0.3s ease;
}

.index-page .idx-nav-item:hover .idx-nav-label {
    color: #667eea;
}

/* Active Navigation Item */
.index-page .idx-nav-item.active-nav {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.index-page .idx-nav-item.active-nav .idx-nav-icon-container {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.index-page .idx-nav-item.active-nav .idx-nav-label {
    color: white;
    font-weight: 700;
}

.index-page .idx-nav-item.active-nav:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .index-page .idx-nav-card-container {
        transform: translate(0%, -40%);
    }

    .index-page .idx-nav-card {
        gap: 35px;
        padding: 20px 30px;
    }

    .index-page .idx-nav-icon-container {
        width: 60px;
        height: 60px;
    }

    .index-page .idx-nav-icon-container img {
        width: 38px;
        height: 38px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .index-page .idx-nav-card-container {
        transform: translate(0%, -40%);
        padding: 0 8px;
        max-width: 100%;
        margin-bottom: -25px;
    }

    .index-page .idx-nav-card {
        gap: 18px;
        padding: 10px 12px;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .index-page .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .index-page .idx-nav-card::-webkit-scrollbar {
        height: 6px;
    }

    .index-page .idx-nav-card::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .index-page .idx-nav-card::-webkit-scrollbar-thumb {
        background: #667eea;
        border-radius: 10px;
    }

    .index-page .idx-nav-card::-webkit-scrollbar-thumb:hover {
        background: #764ba2;
    }

    .index-page .idx-nav-item {
        padding: 10px 12px;
        min-width: 90px;
    }

    .index-page .idx-nav-icon-container {
        width: 50px;
        height: 50px;
    }

    .index-page .idx-nav-icon-container img {
        width: 32px;
        height: 32px;
    }

    .index-page .idx-nav-label {
        font-size: 12px;
        margin-top: 3px;
    }

    .index-page .logo img {
        max-width: 180px !important;
    }

    .index-page .top-nav {
        font-size: 12px;
        gap: 8px;
    }

    .index-page .top-nav > div {
        padding: 5px 8px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .index-page .idx-nav-card-container {
        transform: translate(0%, -30%);
        padding: 0 5px;
        margin-bottom: -25px;
    }

    .index-page .idx-nav-card {
        gap: 12px;
        padding: 10px 8px;
    }

    .index-page .idx-nav-item {
        padding: 8px 10px;
        min-width: 85px;
    }

    .index-page .idx-nav-icon-container {
        width: 45px;
        height: 45px;
    }

    .index-page .idx-nav-icon-container img {
        width: 30px;
        height: 30px;
    }

    .index-page .idx-nav-icon-container span {
        font-size: 32px;
    }

    .index-page .idx-nav-label {
        font-size: 11px;
        margin-top: 2px;
    }

    .index-page .idx-top-header {
        padding: 6px 0;
    }

    .index-page .logo img {
        max-width: 140px !important;
    }

    .index-page .top-nav {
        font-size: 9px;
        gap: 3px;
        flex-wrap: wrap;
    }

    .index-page .top-nav > div {
        padding: 3px 5px;
        font-size: 9px;
        white-space: nowrap;
    }

    .index-page .idx-search-section {
        margin-top: -50px !important;
    }

    .index-page .search-card {
        padding: 15px 12px !important;
    }

    .index-page .search-card input[type="text"],
    .index-page .search-card input[type="date"] {
        font-size: 13px !important;
        padding: 8px !important;
    }

    .index-page .search-card label {
        font-size: 12px !important;
        margin-bottom: 3px !important;
    }

    .index-page .search-card button {
        padding: 10px !important;
        font-size: 14px !important;
    }

    .index-page .date-shortcuts button {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }

    .index-page .content-section {
        padding: 15px 8px !important;
    }

    .index-page .content-section h2,
    .index-page .content-section h3 {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }

    .index-page .content-section p,
    .index-page .content-section li {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
    }

    .index-page body {
        font-size: 13px !important;
    }
}

/* ================================================
   FORGOT MPIN PAGE - Unique styles (.forgot-mpin-page)
   ================================================ */

.forgot-mpin-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.forgot-mpin-page .fmp-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    width: 100%;
    padding: 40px;
    animation: fmpSlideIn 0.4s ease-out;
}

@keyframes fmpSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.forgot-mpin-page .fmp-logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.forgot-mpin-page .fmp-logo-container img {
    max-width: 200px;
    height: auto;
}

.forgot-mpin-page .fmp-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.forgot-mpin-page .fmp-subtitle {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.forgot-mpin-page .form-group {
    margin-bottom: 20px;
}

.forgot-mpin-page .form-group label {
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.forgot-mpin-page .fmp-input-wrapper {
    position: relative;
}

.forgot-mpin-page .fmp-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.forgot-mpin-page .form-control {
    padding: 12px 15px 12px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.forgot-mpin-page .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.forgot-mpin-page .fmp-btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.forgot-mpin-page .fmp-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.forgot-mpin-page .fmp-btn-submit:active {
    transform: translateY(0);
}

.forgot-mpin-page .fmp-back-link {
    text-align: center;
    margin-top: 20px;
}

.forgot-mpin-page .fmp-back-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-mpin-page .fmp-back-link a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.forgot-mpin-page .fmp-success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    border: 1px solid #c3e6cb;
}

.forgot-mpin-page .fmp-error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    border: 1px solid #f5c6cb;
}

.forgot-mpin-page .fmp-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: fmpSpin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes fmpSpin {
    to { transform: rotate(360deg); }
}

.forgot-mpin-page .fmp-btn-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.forgot-mpin-page .fmp-btn-submit.loading .btn-text {
    display: none;
}

.forgot-mpin-page .fmp-btn-submit.loading .fmp-spinner {
    display: block;
}

/* ================================================
   FORGOT PASSWORD PAGE - Unique styles (.forgot-password-page)
   ================================================ */

.forgot-password-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.forgot-password-page .fpw-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    width: 100%;
    padding: 40px;
    animation: fpwSlideIn 0.4s ease-out;
}

@keyframes fpwSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.forgot-password-page .fpw-logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.forgot-password-page .fpw-logo-container img {
    max-width: 200px;
    height: auto;
}

.forgot-password-page .fpw-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.forgot-password-page .fpw-subtitle {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.forgot-password-page .form-group {
    margin-bottom: 20px;
}

.forgot-password-page .form-group label {
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.forgot-password-page .fpw-input-wrapper {
    position: relative;
}

.forgot-password-page .fpw-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.forgot-password-page .form-control {
    padding: 12px 15px 12px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.forgot-password-page .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.forgot-password-page .fpw-btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.forgot-password-page .fpw-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.forgot-password-page .fpw-btn-submit:active {
    transform: translateY(0);
}

.forgot-password-page .fpw-back-link {
    text-align: center;
    margin-top: 20px;
}

.forgot-password-page .fpw-back-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password-page .fpw-back-link a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.forgot-password-page .fpw-success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    border: 1px solid #c3e6cb;
}

.forgot-password-page .fpw-error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    border: 1px solid #f5c6cb;
}

.forgot-password-page .fpw-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: fpwSpin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes fpwSpin {
    to { transform: rotate(360deg); }
}

.forgot-password-page .fpw-btn-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.forgot-password-page .fpw-btn-submit.loading .btn-text {
    display: none;
}

.forgot-password-page .fpw-btn-submit.loading .fpw-spinner {
    display: block;
}

/* ================================================
   CONTACT US PAGE - Unique styles (.contact-us-page)
   ================================================ */

.contact-us-page {
    font-family: 'Arial', sans-serif;
    background: #f8f9fa;
    color: #2c3e50;
}

.contact-us-page .cu-top-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.contact-us-page .top-nav div {
    cursor: pointer;
    transition: color 0.3s ease;
    color: #2c3e50;
}

.contact-us-page .top-nav div:hover {
    color: #667eea;
}

.contact-us-page .cu-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.contact-us-page .cu-hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-us-page .cu-hero-section p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-us-page .cu-content-section {
    padding: 60px 0;
    background: #fff;
}

.contact-us-page .cu-content-section.gray-bg {
    background: #f8f9fa;
}

.contact-us-page .cu-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.contact-us-page .cu-section-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
    text-align: center;
}

.contact-us-page .cu-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-us-page .cu-contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #667eea;
}

.contact-us-page .cu-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.contact-us-page .cu-contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.contact-us-page .cu-contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-us-page .cu-contact-card p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-us-page .cu-contact-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-us-page .cu-contact-card a:hover {
    color: #5568d3;
    text-decoration: underline;
}

.contact-us-page .cu-contact-detail {
    margin: 10px 0;
    font-size: 16px;
}

.contact-us-page .cu-contact-detail strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.contact-us-page .cu-office-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.contact-us-page .cu-office-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.contact-us-page .cu-office-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.contact-us-page .cu-office-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-us-page .cu-info-banner {
    background: #e8f4f8;
    border-left: 5px solid #3498db;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.contact-us-page .cu-info-banner h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-us-page .cu-info-banner p {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.contact-us-page .cu-working-hours {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 8px;
    text-align: center;
}

.contact-us-page .cu-working-hours h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-us-page .cu-working-hours p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.contact-us-page .cu-effective-date {
    text-align: center;
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 20px;
}

/* Contact Us Page - Responsive */
@media (max-width: 768px) {
    .contact-us-page .cu-hero-section h1 {
        font-size: 32px;
    }

    .contact-us-page .cu-hero-section p {
        font-size: 16px;
    }

    .contact-us-page .cu-section-title {
        font-size: 28px;
    }

    .contact-us-page .cu-contact-card {
        padding: 25px;
    }

    .contact-us-page .cu-office-box {
        padding: 30px 20px;
    }
}

/* ================================================
   DISCLAIMER PAGE - Unique styles (.disclaimer-page)
   ================================================ */

.disclaimer-page .dis-effective-date {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

/* ================================================
   PAYMENT & SECURITY PAGE - Unique styles (.payment-security-page)
   ================================================ */

.payment-security-page .ps-warning-banner {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
}

.payment-security-page .ps-warning-banner h4 {
    color: #856404;
    margin-bottom: 10px;
}

.payment-security-page .ps-warning-banner p {
    color: #856404;
    margin: 0;
}

.payment-security-page .ps-info-banner {
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
}

.payment-security-page .ps-info-banner h4 {
    color: #0c5460;
    margin-bottom: 10px;
}

.payment-security-page .ps-info-banner p {
    color: #0c5460;
    margin: 0;
}

.payment-security-page .ps-contact-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 35px;
    border-radius: 12px;
    margin-top: 30px;
}

.payment-security-page .ps-contact-box h3 {
    color: white;
    margin-bottom: 20px;
}

.payment-security-page .ps-contact-box p {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.payment-security-page .ps-contact-box a {
    color: white;
    text-decoration: underline;
}

.payment-security-page .ps-effective-date {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

/* ================================================
   PRIVACY POLICY PAGE - Unique styles (.privacy-policy-page)
   ================================================ */

.privacy-policy-page {
    font-family: 'Arial', sans-serif;
    background: #f8f9fa;
    color: #2c3e50;
}

/* ================================================
   REFUND & CANCELLATION PAGE - Unique styles (.refund-cancellation-page)
   ================================================ */

.refund-cancellation-page {
    font-family: 'Arial', sans-serif;
    background: #f8f9fa;
    color: #2c3e50;
}

/* ================================================
   SHIPPING & DELIVERY PAGE - Unique styles (.shipping-delivery-page)
   ================================================ */

.shipping-delivery-page .sd-gray-bg {
    background: #ffffff;
}

.shipping-delivery-page .sd-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 30px;
    text-align: center;
}

.shipping-delivery-page .sd-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.shipping-delivery-page .sd-policy-box {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.shipping-delivery-page .sd-policy-box h3 {
    color: #667eea;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.shipping-delivery-page .sd-policy-box h4 {
    color: #764ba2;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.shipping-delivery-page .sd-policy-box p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.shipping-delivery-page .sd-policy-box ul {
    padding-left: 25px;
    margin-top: 15px;
}

.shipping-delivery-page .sd-policy-box ul li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #555;
}

.shipping-delivery-page .sd-warning-banner {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
}

.shipping-delivery-page .sd-warning-banner h4 {
    color: #856404;
    margin-bottom: 10px;
}

.shipping-delivery-page .sd-warning-banner p {
    color: #856404;
    margin: 0;
}

.shipping-delivery-page .sd-info-banner {
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
}

.shipping-delivery-page .sd-info-banner h4 {
    color: #0c5460;
    margin-bottom: 10px;
}

.shipping-delivery-page .sd-info-banner p {
    color: #0c5460;
    margin: 0;
}

.shipping-delivery-page .sd-success-banner {
    background: #d4edda;
    border-left: 4px solid #28a745;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
}

.shipping-delivery-page .sd-success-banner h4 {
    color: #155724;
    margin-bottom: 10px;
}

.shipping-delivery-page .sd-success-banner p {
    color: #155724;
    margin: 0;
}

.shipping-delivery-page .sd-delivery-modes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.shipping-delivery-page .sd-delivery-mode-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.shipping-delivery-page .sd-delivery-mode-card:hover {
    transform: translateY(-5px);
}

.shipping-delivery-page .sd-delivery-mode-card h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.shipping-delivery-page .sd-delivery-mode-card p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.95;
}

.shipping-delivery-page .sd-contact-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 35px;
    border-radius: 12px;
    margin-top: 30px;
}

.shipping-delivery-page .sd-contact-box h3 {
    color: white;
    margin-bottom: 20px;
}

.shipping-delivery-page .sd-contact-box p {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.shipping-delivery-page .sd-contact-box a {
    color: white;
    text-decoration: underline;
}

.shipping-delivery-page .sd-effective-date {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}
