@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,600;14..32,700;14..32,800&amp;display=swap');

body {
    /* Modern Dark Gradient Background */
    background: linear-gradient(180deg,
        #04050a 0%,
        #05080c 40%,
        #0a0d11 100%);

    /* Better modern font stack */
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont,
                 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;

    color: #E2E8F0;           /* Light gray text - easier on eyes */
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* Optional: Add subtle noise/texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://picsum.photos/id/1015/1920/1080') center/cover;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #080a0f;
}

::-webkit-scrollbar-thumb {
    background: #b1316c;
    border-radius: 10px;
}

.glass-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 115, 51, 0.2);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: #c53bc1;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.6);
    transform: translateY(-4px);
}

.btn-primary {
    background: linear-gradient(135deg, #b1316c 0%, #c53bc1 100%);
    border: none;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px -6px rgba(184, 115, 51, 0.4);
}

.btn-primary:hover {
    transform: scale(1.02);
    background: linear-gradient(135deg, #c53bc1, #D4A574);
    box-shadow: 0 12px 28px -8px rgba(184, 115, 51, 0.6);
}

.btn-outline-copper {
    border: 1.5px solid #b1316c;
    background: transparent;
    transition: all 0.2s;
}

.btn-outline-copper:hover {
    background: rgba(184, 115, 51, 0.15);
    border-color: #c53bc1;
    color: white;
}

.hero-grid-bg {
    background-image: radial-gradient(circle at 15% 50%, rgba(184, 115, 51, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* === DESKTOP DROPDOWN === */
.yed-dropdown {
    transition: opacity 0.2s ease, transform 0.2s ease;
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

.group:hover .yed-dropdown,
.group:focus-within .yed-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Bridge gap between link and dropdown */
.group::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 15px;
    z-index: 49;
}

/* Dropdown Links Hover & Focus */
.yed-dropdown a {
    display: block;
    padding: 12px 16px;
    color: #e2e8f0;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 2px 4px;
}

.yed-dropdown a:hover,
.yed-dropdown a:focus {
    background-color: rgba(175, 52, 114, 0.15);   /* Orange tint */
    color: #d62b7b;
    transform: translateX(4px);
}

/* Optional: Active state */
.yed-dropdown a:active {
    background-color: #c53bc1;
}

/* Mobile menu checkbox hack */
#mobile-menu-toggle {
    display: none;
}

@media (max-width: 1023px) {
    #mobile-menu-toggle:checked~.mobile-nav-container {
        max-height: 80vh;
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
        background-color: #050505;
    }

    #mobile-menu-toggle:checked~.mobile-menu-btn .hamb-line {
        background: transparent;
    }

    #mobile-menu-toggle:checked~.mobile-menu-btn .hamb-line::before {
        transform: rotate(-45deg);
        top: 0;
    }

    #mobile-menu-toggle:checked~.mobile-menu-btn .hamb-line::after {
        transform: rotate(45deg);
        top: 0;
    }

    body:has(#mobile-menu-toggle:checked) {
        overflow: hidden;
    }

    /* Mobile submenu expansion */
    .mobile-submenu-toggle {
        display: none;
    }

    .mobile-submenu-toggle:checked~.mobile-submenu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .mobile-submenu-toggle:checked~.mobile-submenu-label .chevron {
        transform: rotate(180deg);
    }
}

@media (min-width: 1024px) {

    .mobile-nav-container,
    .mobile-menu-btn {
        display: none !important;
    }
}

.yed-step-num {
    background: linear-gradient(135deg, #b1316c, #c53bc1);
    box-shadow: 0 0 0 4px rgba(184, 115, 51, 0.3);
}

.yed-hs-num {
    background: linear-gradient(120deg, #b1316c, #E8C9A0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-glow {
    border-top: 1px solid rgba(184, 115, 51, 0.3);
}

input,
select,
textarea {
    background: #080a0f;
    border: 1px solid #334155;
    color: #F5F5DC;
    border-radius: 12px;
    transition: 0.2s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #b1316c;
    outline: none;
    box-shadow: 0 0 0 2px rgba(184, 115, 51, 0.3);
}

.ticker-animate {
    animation: scrollTicker 28s linear infinite;
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.text-copper {
    color: #d62b7b;
}


.text-copper-light {
    color: #c53bc1;
}

bg-purple{
    background-color: #d62b7b;
}

bg-purple-200{
    background-color: #c53bc1;
}

.bg-navy-900 {
    background-color: #080a0f;
}

.bg-navy-800 {
    background-color: #020305;
}

.border-navy-600 {
    border-color: #050505;
}

.hover-text-copper:hover {
    color: #d62b7b;
}

.hamb-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #F5F5DC;
    position: relative;
    transition: all 0.3s ease;
}

.hamb-line::before,
.hamb-line::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #F5F5DC;
    transition: all 0.3s ease;
}

.hamb-line::before {
    top: -7px;
}

.hamb-line::after {
    top: 7px;
}

.incoterm-table {
    width: 100%;
    border-collapse: collapse;
}

.incoterm-table th {
    background: rgba(61, 38, 17, 0.3);
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    color: #b1316c;
}

.incoterm-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #334155;
}

.incoterm-table tr:hover td {
    background: rgba(184, 115, 51, 0.1);
}

.info-box {
    border-left: 4px solid #b1316c;
    background: rgba(184, 115, 51, 0.08);
    transition: all 0.3s ease;
}

.info-box:hover {
    background: rgba(184, 115, 51, 0.15);
    transform: translateX(4px);
}


.reg-block {
    transition: all 0.3s ease;
}

.reg-block.open .reg-answer {
    max-height: 1200px;
}

.reg-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.step-timeline {
    position: relative;
}

.step-timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 36px;
    bottom: 20px;
    width: 1px;
    background: rgba(184, 115, 51, 0.3);
}

.warning-callout {
    border-left: 3px solid #b1316c;
}

.info-callout {
    border-left: 3px solid #64748B;
}


.faq-block {
    transition: all 0.3s ease;
}

.faq-block.open .faq-answer {
    max-height: 800px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}


.privacy-section {
    transition: all 0.3s ease;
}

.privacy-section .ps-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.privacy-section.open .ps-body {
    max-height: 2000px;
}

.privacy-section.open .ps-toggle {
    transform: rotate(45deg);
    background: #b1316c;
    border-color: #c53bc1;
    color: white;
}

.privacy-section:hover {
    border-color: rgba(184, 115, 51, 0.5);
}

.toc-item {
    cursor: pointer;
    transition: all 0.2s;
}

.toc-item:hover {
    padding-left: 4px;
}

.toc-item:hover .toc-text {
    color: #c53bc1;
}

.browser-link {
    word-break: break-all;
}

.terms-section {
    transition: all 0.3s ease;
}

.terms-section .ts-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.terms-section.open .ts-body {
    max-height: 2000px;
}

.terms-section.open .ts-toggle {
    transform: rotate(45deg);
    background: #b1316c;
    border-color: #c53bc1;
    color: white;
}

.terms-section:hover {
    border-color: rgba(184, 115, 51, 0.5);
}

.toc-item {
    cursor: pointer;
    transition: all 0.2s;
}

.toc-item:hover {
    padding-left: 4px;
}

.toc-item:hover .toc-text {
    color: #c53bc1;
}


.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #c53bc1;
}

/* Tracking page specific styles */
.tracking-input:focus {
    box-shadow: 0 0 0 4px rgba(184, 115, 51, 0.2);
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #b1316c, #c53bc1, #334155);
}

.timeline-line.completed {
    background: linear-gradient(to bottom, #10b981, #34d399);
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.map-dot {
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(184, 115, 51, 0.7);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(184, 115, 51, 0);
    }
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
