:root {
    --accent-color: #ec1d25;
    --accent-hover: #d11922;
    --secondary-color: #f8f9fa;
    --dark-color: #212529;
    --text-muted: #6c757d;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 29, 37, 0.3);
}


.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.btn-outline:focus {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(236, 29, 37, 0.25);
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--accent-color) !important;
}

.brand-logo {
    width: auto;
    height: 40px;
    object-fit: contain;
}

.hero-section {
    background: var(--hero-bg) no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.order-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(236, 29, 37, 0.25);
}

.error-text {
    font-size: 0.8rem;
    color: var(--error-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-color);
    overflow-wrap: break-word;
}

.stats-section {
    background: var(--accent-color);
    color: white;
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
}

.footer-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-description {
    color: #adb5bd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-social-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #adb5bd;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 29, 37, 0.3);
    border-color: var(--accent-color);
}

.copyright-text {
    color: #adb5bd;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0 1.5rem;
}

.footer-tagline {
    color: #adb5bd;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0;
    opacity: 0.8;
}

.footer-bottom {
    margin-top: 1rem;
}

.process-arrow {
    position: absolute;
    right: -30px;
    top: 30px;
    font-size: 2rem;
    color: var(--accent-color);
}

.dashboard-preview {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-top: 2rem;
}

.order-status-badge {
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tracking-id {
    color: var(--text-muted);
    font-family: monospace;
    font-size: 0.9rem;
}

/* Navbar bar */
.navbar-nav {
    gap: 1.5rem;
    align-items: center;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    transition: color 0.2s ease;
    display: inline-block;
    padding: 0;
}

.navbar-light .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link:focus::after,
.navbar-light .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-light .navbar-nav .nav-link.active {
    transform: scaleX(1);
}

.navbar.sticky-top.scrolled {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: saturate(180%) blur(6px);
}

/* Reveal utility */
.reveal {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.show {
    opacity: 1;
    transform: none;
}

.reveal-up {
    transform: translateY(16px);
}

.reveal-left {
    transform: translateX(-16px);
}

.reveal-right {
    transform: translateX(16px);
}

.reveal-up.show,
.reveal-left.show,
.reveal-right.show {
    transform: none;
}

/* Floating subtle animation helper (for illustrations) */
.float-slow {
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    .btn-accent,
    .feature-card,
    .reveal,
    .float-slow,
    .nav-link:after {
        transition: none !important;
        animation: none !important;
    }
}

/* Accent text helper */
.text-accent {
    color: var(--accent-color) !important;
}

/* Auth Success Modal */
.auth-modal {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.auth-modal__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: #fff;
}

.auth-tabs .nav-link {
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    padding: 0.75rem 1rem;
    position: relative;
}

.auth-tabs .nav-link.active,
.auth-tabs .nav-link:hover {
    color: var(--dark-color);
}

.auth-tabs .nav-link.active::after,
.auth-tabs .nav-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

.auth-tabs-pane {
    background: #fff;
    border: 1px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.auth-modal .form-control {
    border-radius: 10px;
}

/* Video Modal */
.video-modal {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.video-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
}

.video-modal__header {
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 1.25rem;
}

.video-modal .btn-close:focus {
    box-shadow: 0 0 0 0.2rem rgba(236, 29, 37, 0.2);
}

.video-modal__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-modal__frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Loader Styles */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loader-overlay.show {
    opacity: 1;
    visibility: visible;
}

.loader-container {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e9ecef;
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loader-text {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.loader-subtext {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Button loading state */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading .btn-text {
    opacity: 0;
}

.btn-loading .btn-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Multistep Form Styles */
.step-indicators {
    margin-bottom: 2rem;
}

.step-indicator {
    text-align: center;
    position: relative;
    padding: 1rem 0.5rem;
    transition: all 0.3s ease;
}

.step-indicator.active .step-number {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.step-indicator.completed .step-number {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 0.5rem;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step-indicator.active .step-title {
    color: var(--accent-color);
    font-weight: 600;
}

.step-indicator.completed .step-title {
    color: #28a745;
    font-weight: 600;
}

.step-content {
    min-height: 400px;
}

.step-navigation {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.product-url-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.product-url-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(236, 29, 37, 0.1);
}

.remove-url-btn {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.remove-url-btn:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Select2 overrides to match frontend form style */
.select2-container .select2-selection--single {
    height: auto;
    min-height: 48px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 10px 40px 10px 14px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 26px;
    font-size: 1rem;
    color: #212529;
    padding-left: 0;
}

.select2-container .select2-selection--single .select2-selection__placeholder {
    color: var(--text-muted);
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #6c757d transparent transparent transparent;
}

/* Focus state consistent with .form-control */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default .select2-selection--single:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(236, 29, 37, 0.25);
    outline: 0;
}

/* Disabled state */
.select2-container--default .select2-selection--single[aria-disabled="true"],
.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #f8f9fa;
    color: #6c757d;
}

/* Dropdown */
.select2-container .select2-dropdown {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.select2-container .select2-results__options {
    max-height: 240px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: rgba(236, 29, 37, 0.08);
    color: var(--dark-color);
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: rgba(236, 29, 37, 0.12);
    color: var(--dark-color);
}

/* Multiple selection */
.select2-container .select2-selection--multiple {
    min-height: 48px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 6px 8px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: rgba(236, 29, 37, 0.1);
    border: 1px solid rgba(236, 29, 37, 0.2);
    color: var(--dark-color);
    border-radius: 6px;
    padding: 2px 8px;
    margin-top: 6px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: var(--accent-color);
    margin-right: 6px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(236, 29, 37, 0.25);
}

/* Clear button */
.select2-container--default .select2-selection--single .select2-selection__clear {
    color: var(--text-muted);
    margin-right: 26px;
}

/* User Dropdown Styles */
.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.user-info {
    text-align: left;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.2;
    margin: 0;
}

.user-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.2;
    margin: 0;
}

.navbar .dropdown-toggle {
    border: none;
    background: none;
    padding: 0.5rem 0.75rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.navbar .dropdown-toggle:hover {
    color: var(--accent-color);
    background: rgba(236, 29, 37, 0.05);
    border-radius: 8px;
}

.navbar .dropdown-toggle:focus {
    box-shadow: none;
    color: var(--accent-color);
}

.navbar .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
}

.navbar .dropdown-item {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.navbar .dropdown-item:hover {
    background-color: rgba(236, 29, 37, 0.08);
    color: var(--accent-color);
}

.navbar .dropdown-item.text-danger:hover {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545 !important;
}

.navbar .dropdown-divider {
    margin: 0.5rem 0;
    border-color: #e9ecef;
}

/* Hero Section Enhancements */
.hero-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.bg-accent-subtle {
    background-color: rgba(236, 29, 37, 0.1) !important;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stats {
    margin-top: 2rem;
}

.hero-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-image-container {
    position: relative;
    padding: 2rem;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Video Tutorial Section */
.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin: 0 auto;
}

/* Combined How It Works Section */
#how-it-works .video-container {
    margin-bottom: 3rem;
}

#how-it-works .row:last-child {
    margin-top: 2rem;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    display: block;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    max-width: 100%;
}

/* Enforce 1:1 aspect ratio for hero video thumbnail */
.hero-section .video-thumbnail {
    aspect-ratio: 4/3;
}

.hero-section .video-thumbnail img {
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    z-index: 1;
}

.video-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.video-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Process Cards */
.process-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid #e9ecef;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.process-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(236, 29, 37, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.process-features {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(236, 29, 37, 0.1);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Enhanced Feature Cards */
.feature-highlight {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 0.9rem;
}

.mini-feature-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.mini-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mini-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin: 0 auto 1rem;
}

/* Enhanced Stats Section */
.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.stat-sublabel {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    color: var(--dark-color);
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.author-location {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 24px 24px 0 0;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-badge {
    display: inline-block;
}

.bg-success-subtle {
    background-color: rgba(40, 167, 69, 0.1) !important;
}

.pricing-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.2;
}

.pricing-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Pricing Breakdown */
.pricing-breakdown {
    margin: 2rem 0;
}

.pricing-item {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
}

.pricing-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(236, 29, 37, 0.2);
}

.pricing-item.featured {
    background: linear-gradient(135deg, rgba(236, 29, 37, 0.05), rgba(236, 29, 37, 0.1));
    border-color: var(--accent-color);
    position: relative;
}

.pricing-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.pricing-item.featured .pricing-item-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    box-shadow: 0 8px 25px rgba(236, 29, 37, 0.3);
}

.pricing-item:hover .pricing-item-icon {
    transform: scale(1.1);
}

.pricing-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.pricing-item-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.pricing-item-highlight {
    background: rgba(236, 29, 37, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.pricing-item.featured .pricing-item-highlight {
    background: var(--accent-color);
    color: white;
}

/* Pricing Guarantee */
.pricing-guarantee {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(40, 167, 69, 0.1));
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.guarantee-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.guarantee-text {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.guarantee-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.guarantee-badge i {
    font-size: 1.2rem;
}


/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-hover);
}


/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .user-avatar {
        width: 30px;
        height: 30px;
    }

    .navbar-nav {
        align-items: start;
    }

    .navbar .dropdown-menu {
        min-width: 180px;
    }

    .navbar .dropdown-item {
        font-size: 0.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: .5rem;
    }

    .hero-actions .btn-lg,
    #submitBtn.btn-lg {
        --bs-btn-padding-x: 0.75rem;
        --bs-btn-padding-y: 0.375rem;
        --bs-btn-font-family: ;
        --bs-btn-font-size: 1rem;
        --bs-btn-font-weight: 400;
        --bs-btn-line-height: 1.5;
    }

    .hero-image-container {
        margin-top: 20px;
        padding: 0;
    }

    .floating-card {
        display: none;
    }

    .process-arrow {
        display: none;
    }

    .pricing-card {
        padding: 2rem;
    }

    .price-number {
        font-size: 3rem;
    }


    .video-container {
        margin: 0;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .video-overlay {
        padding: 1rem;
    }

    .video-overlay h4 {
        font-size: 1.2rem;
    }

    .video-overlay p {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .process-card {
        padding: 1.2rem;
    }

    .process-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .process-card h4 {
        font-size: 1.1rem;
    }

    .process-card p {
        font-size: 0.9rem;
    }

    .process-features {
        gap: 0.25rem;
    }

    .feature-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
        line-height: 1;
    }

    .order-form {
        padding: 1.5rem 1rem;
    }

    .hero-stats .stat-number {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
        line-height: 1.2;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        margin-bottom: .5rem;
    }

    .stat-sublabel {
        margin-top: 0;
    }

    .pricing-guarantee {
        padding: 1.5rem;
    }

    .guarantee-badge {
        padding: 0.75rem 1rem;
        margin-top: 1rem;
    }

    .guarantee-title {
        font-size: 1.1rem;
        text-align: center;
    }

    .guarantee-text {
        text-align: center;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .author-avatar img {
        width: 44px;
        height: 44px;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-card h4 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .process-arrow {
        display: none;
    }

    .hero-section {
        padding: 0 0 60px 0;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        margin: 2rem 0;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .footer-copyright {
        text-align: center !important;
        margin-top: 1rem;
    }

    .footer-bottom {
        margin-top: 0;
    }

    .footer-description {
        text-align: center;
    }

    .footer-tagline {
        font-size: 0.78rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-title {
        font-size: 1.8rem;
    }

    .pricing-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .pricing-item-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .pricing-item-title {
        font-size: 1.1rem;
    }

    .pricing-guarantee {
        padding: 1.5rem;
    }

    .guarantee-badge {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .video-modal__header {
        padding: 0.75rem 1rem;
    }
}

/* Brand Logos Section */
.brand-logos-section {
    margin: 3rem 0;
}

.brand-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.brand-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.brand-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 0 1rem;
}

.brand-logo-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    min-height: 120px;
}

.brand-logo-card:hover {
    text-decoration: none;
    color: inherit;
}


.brand-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 29, 37, 0.05) 0%, rgba(236, 29, 37, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.brand-logo-card:hover::before {
    opacity: 1;
}

.brand-logo-img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.brand-logo-card:hover .brand-logo-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.brand-note {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.brand-note i {
    color: var(--accent-color);
}

/* Responsive adjustments for brand logos */
@media (max-width: 768px) {
    .brand-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .brand-logo-card {
        padding: 0.75rem;
        min-height: 100px;
    }

    .brand-section-title {
        font-size: 1.6rem;
    }

    .brand-section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .brand-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.75rem;
    }

    .brand-logo-card {
        padding: 0.5rem;
        min-height: 80px;
    }
}

/* Track Order Page Styles (reused for About and Contact pages) */
.track-order-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #fef7f7 0%, #fdf2f2 100%);
}

/* Tracking Header */
.tracking-header {
    padding: 2.5rem 0 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d32f2f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.tracking-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.tracking-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    color: white;
}

.tracking-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    color: white;
}

/* Tracking Form Section */
.tracking-form-section {
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.tracking-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: none;
    margin-bottom: 2rem;
}

.card-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d32f2f 100%);
    color: white;
    padding: 1rem;
    border: none;
}

.card-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.card-body {
    padding: 2rem;
}

/* Timeline Card */
.timeline-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.timeline {
    position: relative;
    padding-left: 1rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -15px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e9ecef;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #e9ecef;
    z-index: 2;
}

.timeline-item.active .timeline-marker {
    background: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-color);
}

.timeline-item.completed .timeline-marker {
    background: #28a745;
    box-shadow: 0 0 0 2px #28a745;
}

.timeline-content {
    padding-left: 1rem;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.timeline-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Order Summary Card */
.order-summary-card,
.quick-actions-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: var(--dark-color);
}

.summary-value {
    color: var(--text-muted);
    font-weight: 500;
}

/* Order Details Section */
.order-details-section {
    padding: 3rem 0;
}

.order-details-section.p-0 {
    padding: 0;
}

/* Responsive Design for Track Order Styles */
@media (max-width: 768px) {
    .tracking-title {
        font-size: 2rem;
    }

    .tracking-subtitle {
        font-size: 1rem;
    }

    .tracking-form-section {
        padding: 2.5rem 0;
    }

    .card-header {
        padding: 1.25rem;
    }

    .card-body {
        padding: 1.25rem;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-marker {
        left: -12px;
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 576px) {
    .tracking-header {
        padding: 1.5rem 0 0.75rem;
    }

    .tracking-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .tracking-subtitle {
        font-size: 0.9rem;
    }

    .tracking-form-section {
        margin-top: -0.5rem;
        padding: 2rem 0;
    }

    .tracking-form-card {
        margin: 0 0.5rem;
    }

    .card-header {
        padding: 1rem;
    }

    .card-body {
        padding: 1rem;
    }

    .timeline-card,
    .order-summary-card,
    .quick-actions-card {
        margin: 0 0.5rem 1rem 0.5rem;
    }

    .timeline {
        padding-left: 0.75rem;
    }

    .timeline-marker {
        left: -8px;
        width: 10px;
        height: 10px;
    }

    .timeline-content {
        padding-left: 0.75rem;
    }

    .timeline-title {
        font-size: 1rem;
    }

    .timeline-description {
        font-size: 0.85rem;
    }

    .summary-item {
        padding: 0.75rem 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .summary-label {
        font-size: 0.9rem;
    }

    .summary-value {
        font-size: 0.9rem;
    }
}

/* Footer Link Styles */
.footer-links a {
    color: #adb5bd;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}