
/* membership */
/* Pricing Section */
        .pricing-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        
        .pricing-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            border: 1px solid #e5e7eb;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(135deg, #021a51 0%, #021a51  100%);
        }
        
        .pricing-badge {
            background: linear-gradient(135deg, #021a51 0%, #021a51 100%);
            color: #021a51;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .pricing-badge i {
            margin-right: 5px;
            color: #fff;
        }
        
        .pricing-title {
            font-size: 2rem;
            font-weight: 700;
            color: #021a51;
            margin-bottom: 20px;
        }
        
        .pricing-price {
            margin-bottom: 20px;
        }
        
        .pricing-price .currency {
            font-size: 2rem;
            color: #6b7280;
            vertical-align: top;
        }
        
        .pricing-price .amount {
            font-size: 4rem;
            font-weight: 700;
            color: #021a51;
        }
        
        .pricing-price .period {
            font-size: 1.5rem;
            color: #6b7280;
            font-weight: 300;
        }
        
        .pricing-description {
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 40px;
        }
        
        .pricing-features {
            margin-bottom: 40px;
        }
        
        .features-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .features-list li {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .features-list i {
            color: #10b981;
            font-size: 1.1rem;
            margin-right: 15px;
            min-width: 20px;
        }
        
        .features-list span {
            color: #374151;
            font-size: 1rem;
        }
        
        .btn-subscribe {
            background: linear-gradient(135deg, #021a51 0%, #1e3a8a 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(2, 26, 81, 0.3);
            width: 100%;
            max-width: 300px;
        }
        
        .btn-subscribe:hover {
            background: linear-gradient(135deg, #1e3a8a 0%, #021a51 100%);
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(2, 26, 81, 0.4);
            color: white;
        }
        
        .btn-subscribe i {
            margin-right: 10px;
        }
        
        .pricing-note {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #6b7280;
        }
        
        .pricing-note i {
            color: #10b981;
            margin-right: 5px;
        }

/* login */
.form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-group.has-error input {
            border-color: #faaa09;
        }

        .error-message {
            color: #faaa09;
            font-size: 12px;
            margin-top: 5px;
            display: none;
            position: absolute;
            bottom: -18px;
        }

        .form-group.has-error .error-message {
            display: block;
        }

        /* Loading state for button */
        .btn-login.loading {
            position: relative;
            color: transparent;
            pointer-events: none;
        }

        .btn-login.loading::after {
            content: "";
            position: absolute;
            width: 20px;
            height: 20px;
            top: 50%;
            left: 50%;
            margin: -10px 0 0 -10px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            border-left-color: transparent;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            100% {
                transform: rotate(360deg);
            }
        }

        .login-container {
            max-width: 500px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .login-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .login-header h3 {
            color: #021a51;
            margin-bottom: 10px;
        }

        .login-header p {
            color: #666;
            margin-bottom: 0;
        }

        .forgot-password {
            text-align: right;
            margin-top: -10px;
            margin-bottom: 20px;
        }

        .forgot-password a {
            color: #faaa09;
            text-decoration: none;
            font-size: 14px;
        }

        .forgot-password a:hover {
            text-decoration: underline;
        }

        .login-link {
            text-align: center;
            margin-top: 20px;
        }

        .login-link p {
            margin-bottom: 5px;
            color: #666;
        }

        .login-link a {
            color: #faaa09;
            text-decoration: none;
        }

        .login-link a:hover {
            text-decoration: underline;
        }

        .remember-me {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .remember-me input[type="checkbox"] {
            margin-right: 8px;
        }

        .remember-me label {
            color: #666;
            font-size: 14px;
            margin-bottom: 0;
        }

/* profile */
.profile-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(8, 32, 85, 0.3);
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .form-header h1 {
            color: #082055;
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .form-header p {
            color: #666;
            font-size: 0.95rem;
        }

        .alert {
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .alert-success {
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #15803d;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #082055;
            font-size: 0.95rem;
        }

        .form-group input {
            width: 100%;
            padding: 15px;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #082055;
            box-shadow: 0 0 0 3px rgba(8, 32, 85, 0.1);
        }

        .error-message {
            color: #dc2626;
            font-size: 0.85rem;
            margin-top: 5px;
        }

        .password-group {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #082055;
            cursor: pointer;
            font-size: 1.1rem;
            padding: 5px;
        }

        .form-actions {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, #082055 0%, #0a2861 100%);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(8, 32, 85, 0.4);
        }

        .btn-secondary {
            background: rgba(8, 32, 85, 0.1);
            color: #082055;
        }

        .btn-secondary:hover {
            background: rgba(8, 32, 85, 0.2);
        }

        @media (max-width: 600px) {
            .profile-container {
                padding: 30px 20px;
            }
            
            .form-actions {
                flex-direction: column;
            }
        }

/* thankyou */
.thank-you-section {
            padding: 100px 0;
            color: white;
            text-align: center;
        }
        
        .thank-you-card {
            background: rgba(255, 255, 255, 0.95);
            color: #333;
            padding: 60px 40px;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .thank-you-icon {
            font-size: 80px;
            color: #28a745;
            margin-bottom: 30px;
        }
        
        .thank-you-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .thank-you-message {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #666;
        }
        
        .credential-info {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 4px solid #007bff;
        }
        
        .credential-info h4 {
            color: #007bff;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .btn-home {
            background: linear-gradient(45deg, #007bff, #0056b3);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-top: 20px;
            transition: transform 0.3s ease;
        }
        
        .btn-home:hover {
            transform: translateY(-2px);
            color: white;
            text-decoration: none;
        }
        
        .features-list {
            text-align: left;
            margin-top: 25px;
        }
        
        .features-list li {
            margin: 10px 0;
            padding-left: 25px;
            position: relative;
        }
        
        .features-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }

/* reset */
.form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-group.has-error input {
            border-color: #faaa09;
        }

        .error-message {
            color: #faaa09;
            font-size: 12px;
            margin-top: 5px;
            display: none;
            position: absolute;
            bottom: -18px;
        }

        .form-group.has-error .error-message {
            display: block;
        }

        .btn-reset.loading {
            position: relative;
            color: transparent;
            pointer-events: none;
        }

        .btn-reset.loading::after {
            content: "";
            position: absolute;
            width: 20px;
            height: 20px;
            top: 50%;
            left: 50%;
            margin: -10px 0 0 -10px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            border-left-color: transparent;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            100% {
                transform: rotate(360deg);
            }
        }

        .reset-container {
            max-width: 500px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .reset-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .reset-header h3 {
            color: #021a51;
            margin-bottom: 10px;
        }

        .reset-header p {
            color: #666;
            margin-bottom: 0;
        }

        .password-requirements {
            background-color: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 5px;
            padding: 15px;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .password-requirements h5 {
            color: #021a51;
            margin-bottom: 10px;
        }

        .password-requirements ul {
            margin: 0;
            padding-left: 20px;
        }

        .password-requirements li {
            color: #666;
            margin-bottom: 5px;
        }

        .login-link {
            text-align: center;
            margin-top: 20px;
        }

        .login-link a {
            color: #faaa09;
            text-decoration: none;
        }

        .login-link a:hover {
            text-decoration: underline;
        }

/* blog-detail */
h2, h3 {
            margin-bottom: 18px;
        }

/* blog-detail */
.blog-detail-page {
            padding: 80px 0;
        }
        
        .blog-article {
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .blog-meta .meta-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        
        .blog-meta .meta-list li {
            color: #666;
            font-size: 0.9rem;
        }
        
        .blog-meta .meta-list li i {
            margin-right: 0.5rem;
            color: #007bff;
        }
        
        .blog-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
        }
        
        .blog-content p {
            margin-bottom: 1.5rem;
        }
        
        .blog-sidebar {
            padding-left: 2rem;
        }
        
        .sidebar-widget {
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }
        
        .widget-title {
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #007bff;
            color: #333;
        }
        
        .related-post-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }
        
        .related-post-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .related-post-item .post-image {
            flex-shrink: 0;
            width: 80px;
            height: 60px;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .related-post-item .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .related-post-item .post-content h6 a {
            color: #333;
            text-decoration: none;
            line-height: 1.4;
        }
        
        .related-post-item .post-content h6 a:hover {
            color: #007bff;
        }
        
        .related-post-item .post-date {
            font-size: 0.85rem;
            color: #666;
            margin-top: 0.5rem;
        }
        
        @media (max-width: 991px) {
            .blog-sidebar {
                padding-left: 0;
                margin-top: 3rem;
            }
        }

/* ===== React SPA layout & visibility fixes ===== */

#root .wow,
#root [class*="fadeIn"] {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

#root .text-anime-style-3,
#root .text-anime-style-3 * {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

#root .reveal,
#root .image-anime {
    visibility: visible !important;
    overflow: visible;
}

/* Hero banner */
#root .our-contract.home-hero {
    background-image: url('/assets/images/bg/banner-image.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 80px 0 100px;
    min-height: 520px;
    display: flex;
    align-items: center;
}

#root .our-contract.home-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

#root .our-contract.home-hero::before {
    opacity: 0.82;
}

#root .our-contract-title h2,
#root .home-hero .our-contract-title h2 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff !important;
}

#root .our-contract-body p,
#root .home-hero .our-contract-body p {
    font-size: 17px;
    line-height: 1.75;
    color: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-width: 780px;
    margin-bottom: 24px;
}

#root .banner-form {
    position: relative;
    z-index: 2;
}

#root .banner-form .get-quote {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

#root .banner-form .get-quote h2 {
    font-size: 26px;
    margin-bottom: 6px;
    color: var(--primary-color) !important;
}

#root .get-quote-form .form-control {
    background: #f3f5f9;
    border: 1px solid #dde3ec;
    border-radius: 8px;
}

#root .get-quote-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 125, 68, 0.15);
}

/* Service cards under hero */
#root .cargo-shipment {
    margin-top: -60px !important;
    margin-bottom: 0;
    position: relative;
    z-index: 3;
}

#root .cargo-shipment-item {
    border-radius: 12px;
    min-height: 100%;
}

/* Services button grid band */
#root .our-contract.services-grid-band {
    background-image: url('/assets/images/bg/section-bg.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    padding: 50px 0 55px;
    min-height: auto;
}

#root .our-contract.services-grid-band .container {
    position: relative;
    z-index: 2;
}

#root .our-contract.services-grid-band::before {
    opacity: 0.85;
}

#root .services-grid-band .our-cta-box {
    padding: 0 15px;
}

#root .services-grid-band .our-cta-box .row {
    row-gap: 12px;
    margin: 0 -8px;
}

#root .services-grid-band .our-cta-box .col-md-3 {
    padding: 0 8px;
}

#root .contract-btn {
    visibility: visible !important;
    opacity: 1 !important;
    display: inline-block !important;
    width: 100%;
    border-radius: 8px;
    padding: 14px 12px;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: #fff !important;
    background-color: var(--accent-color) !important;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

#root .contract-btn:hover {
    transform: translateY(-2px);
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

/* Section rhythm */
#root .home-transportation,
#root .providing-service,
#root .our-goals,
#root .service-page.providing-service {
    padding: 70px 0;
}

#root .section-title h2 {
    line-height: 1.2;
}

#root .section-title h2 span {
    color: var(--accent-color);
}

#root .providing-content-body p,
#root .home-transportation-body p {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
}

#root .our-goals-item {
    border-radius: 12px;
}

@media only screen and (max-width: 1680px) {
    #root .cargo-shipment {
        margin-top: -60px !important;
    }
}

@media only screen and (max-width: 991px) {
    #root .our-contract.home-hero {
        padding: 50px 0 60px;
        min-height: auto;
    }

    #root .banner-form {
        margin-top: 28px;
    }

    #root .cargo-shipment {
        margin-top: 0 !important;
    }

    #root .services-grid-band .our-cta-box .col-md-3 {
        width: 50%;
    }
}

