
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a2c3d;
    --accent: #f45b2b;
    --accent-light: #f9b234;
    --bg-light: #fafbfc;
    --text-dark: #1a1e24;
    --text-muted: #4a5a72;
    --white: #ffffff;
    --shadow: 0 8px 20px rgba(0,0,0,0.02);
    --gradient-primary: linear-gradient(135deg, var(--primary), #1e4a6d);
    --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-light));
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(90deg, #0a2c3d 0%, #1e4a6d 50%, #f45b2b 100%);
    color: white;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-light);
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--accent-light);
    font-size: 1rem;
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--accent-light);
}

.contact-info .divider {
    color: rgba(255,255,255,0.3);
    font-weight: 300;
}

.top-bar-social {
    display: flex;
    gap: 12px;
}

.top-bar-social a {
    color: white;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.top-bar-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244,91,43,0.3);
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-light));
    border-image-slice: 1;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(5deg);
    transition: transform 0.3s;
}

.logo-icon i {
    font-size: 28px;
    color: white;
    transform: rotate(-5deg);
}

.logo-container:hover .logo-icon {
    transform: rotate(0deg) scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.logo-main .highlight {
    color: var(--accent);
    position: relative;
}

.logo-main .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-light);
    opacity: 0.3;
    z-index: -1;
}

.logo-tagline {
    font-size: 11px;
    font-weight: 500;
    color: #666;
    letter-spacing: 1px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(244,91,43,0.2);
}

.nav-links a i {
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.nav-links a:hover i {
    transform: scale(1.2);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: #f8f9fa;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.action-phone i {
    font-size: 24px;
    color: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.action-phone .phone-numbers {
    display: flex;
    flex-direction: column;
}

.action-phone small {
    font-size: 10px;
    color: #666;
}

.action-phone strong {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
}

.action-phone:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(244,91,43,0.3);
}

.action-phone:hover i,
.action-phone:hover small,
.action-phone:hover strong {
    color: white;
}

.action-track {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(90deg, var(--primary), #1e4a6d);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.action-track:hover {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(244,91,43,0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
}

.mobile-menu-toggle:hover {
    color: var(--accent);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 2000;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary), #1e4a6d);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
}

.mobile-logo i {
    font-size: 24px;
    color: var(--accent);
}

.close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-links {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s;
}

.mobile-menu-links a i {
    width: 25px;
    color: var(--accent);
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    color: white;
    transform: translateX(5px);
}

.mobile-menu-links a:hover i {
    color: white;
}

.mobile-menu-contact {
    padding: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.mobile-menu-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    color: #666;
}

.mobile-menu-contact i {
    color: var(--accent);
    width: 20px;
}

.mobile-menu-social {
    padding: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mobile-menu-social a {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-menu-social a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* ===== PAGE BANNER ===== */
.page-banner {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,44,61,0.7);
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.breadcrumb-links {
    margin-top: 20px;
}

.breadcrumb-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
}

.breadcrumb-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.breadcrumb-links span {
    color: var(--accent);
    font-weight: 600;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
    line-height: 1.2;
}

.section-badge {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(145deg, #eaf3fa 0%, var(--white) 70%);
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1 1 400px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
}

.hero-content h1 span {
    color: var(--accent);
    border-bottom: 4px solid var(--accent-light);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 25px 0;
}

.hero-image {
    flex: 1 1 400px;
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 16px rgba(244,91,43,0.25);
}

.btn-primary:hover {
    background: #d94418;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(244,91,43,0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* ===== PREVIEW CARDS ===== */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.preview-item {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.preview-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10,44,61,0.1);
}

.preview-img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.preview-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-text {
    flex: 2 1 400px;
}

.about-main-img {
    width: 100%;
    border-radius: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-stats {
    flex: 1 1 300px;
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(10,44,61,0.08);
}

.stat-item {
    text-align: center;
    margin: 30px 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.timeline-item {
    background: white;
    padding: 25px;
    border-radius: 20px;
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow);
}

.year {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

/* ===== SERVICES PAGE ===== */
.services-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card-full {
    background: white;
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card-full:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -10px var(--primary);
}

.service-ai-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #eef5ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2.4rem;
    color: var(--primary);
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    margin: 10px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features i {
    color: var(--accent);
}

.service-tag {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== TRACKING PAGE ===== */
.tracking-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.tracking-card {
    flex: 2 1 500px;
    background: #ecf3fa;
    border-radius: 40px;
    padding: 40px;
}

.tracking-form .input-group {
    display: flex;
    background: white;
    border-radius: 60px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(10,44,61,0.1);
}

.tracking-form input {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 1.1rem;
    background: transparent;
    outline: none;
}

.btn-ai-track {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 60px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-ai-track:hover {
    background: var(--accent);
}

.tracking-info {
    flex: 1 1 300px;
    background: white;
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.support-box {
    background: #f0f7ff;
    border-radius: 20px;
    padding: 25px;
    margin-top: 20px;
}

.support-box i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

/* ===== SHIPMENT SHOWCASE SECTION ===== */
.shipment-showcase {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.shipment-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(244,91,43,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Header */
.text-center {
    text-align: center;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.highlight-text {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent-light);
    opacity: 0.3;
    z-index: -1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 20px;
}

/* Shipment Grid */
.shipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Feature Cards */
.shipment-feature-card {
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(244,91,43,0.1);
}

.shipment-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(244,91,43,0.12);
    border-color: rgba(244,91,43,0.2);
}

.shipment-feature-card.featured {
    background: linear-gradient(145deg, #ffffff, #fcf5f0);
    border: 2px solid var(--accent);
    transform: scale(1.02);
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Feature Icon */
.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 25px rgba(244,91,43,0.2);
}

.feature-icon i {
    font-size: 36px;
    color: white;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 25px;
    background: var(--accent);
    opacity: 0.3;
    animation: icon-pulse 2s infinite;
    z-index: 1;
}

@keyframes icon-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.shipment-feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.shipment-feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Feature Stats */
.feature-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.feature-stats .stat {
    flex: 1;
}

.feature-stats .stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

.feature-stats .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Feature Progress */
.feature-progress {
    margin-top: 25px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.progress-bar {
    height: 8px;
    background: #eef2f8;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 10px;
    animation: progress-fill 2s ease-out;
}

@keyframes progress-fill {
    from { width: 0; }
    to { width: 85%; }
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.feature-list i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Shipment Stats */
.shipment-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
    padding: 40px;
    background: white;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(244,91,43,0.1);
}

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

.shipment-stats .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shipment-stats .stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.stat-trend {
    font-size: 0.9rem;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
}

.stat-trend.positive {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.stat-trend i {
    margin-right: 5px;
}

/* Shipment Timeline */
.shipment-timeline {
    margin: 60px 0;
    padding: 40px;
    background: white;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.timeline-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 0.3;
    z-index: 1;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-marker {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    border: 3px solid var(--accent-light);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.timeline-step.active .step-marker {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    transform: scale(1.1);
}

.step-marker i {
    font-size: 24px;
    color: var(--primary);
}

.timeline-step.active .step-marker i {
    color: white;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.step-content h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.step-time {
    display: inline-block;
    padding: 4px 12px;
    background: #eef2f8;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

/* Shipment Calculator */
.shipment-calculator {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary), #1e4a6d);
    border-radius: 40px;
    color: white;
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.calculator-header h3 i {
    color: var(--accent);
    margin-right: 10px;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.calculator-form {
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.form-group label i {
    color: var(--accent);
    margin-right: 8px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 15px;
    background: white;
    font-size: 1rem;
    color: var(--text-dark);
}

.form-group input[readonly] {
    background: rgba(255,255,255,0.9);
    cursor: not-allowed;
}

.calculator-result {
    background: white;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-box {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 20px;
}

.result-label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.result-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

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

.btn-calculate {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-calculate:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(244,91,43,0.4);
}

/* Trust Badges */
.shipment-trust {
    margin: 40px 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(244,91,43,0.1);
}

.badge-item i {
    font-size: 1.4rem;
    color: var(--accent);
}

.badge-item span {
    font-weight: 500;
    color: var(--primary);
}

/* CTA Section */
.shipment-cta {
    margin: 60px 0 0;
    padding: 60px;
    background: linear-gradient(135deg, #f45b2b, #f9b234);
    border-radius: 40px;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: var(--primary);
    color: white;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0a2c3d 0%, #1a3a4f 50%, #2a4a5f 100%);
    color: #b0c4de;
    position: relative;
    margin-top: 50px;
}

.footer-wave {
    position: relative;
    top: -1px;
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-icon i {
    font-size: 28px;
    color: white;
}

.footer-logo .logo-main {
    font-size: 22px;
    font-weight: 800;
    color: white;
}

.footer-logo .logo-main .highlight {
    color: var(--accent);
}

.footer-description {
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-item i {
    width: 20px;
    color: var(--accent);
}

.contact-item a,
.contact-item span {
    color: #b0c4de;
    text-decoration: none;
}

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

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0c4de;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.newsletter-input-group {
    display: flex;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 5px;
    margin: 20px 0;
}

.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: white;
}

.newsletter-input-group button {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none;
    width: 45px;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-input-group button:hover {
    transform: scale(1.1);
}

.payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 28px;
    color: #b0c4de;
    transition: 0.3s;
}

.payment-methods i:hover {
    color: var(--accent);
}

.copyright-bar {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    color: #8a9bb5;
}

.copyright-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.copyright-email,
.copyright-phone {
    color: var(--accent) !important;
    font-weight: 600;
}

/* ===== AI ASSISTANT ===== */
.ai-assistant {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.ai-assistant-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(244,91,43,0.4);
    animation: pulse-ai 2s infinite;
    position: relative;
}

@keyframes pulse-ai {
    0% { box-shadow: 0 0 0 0 rgba(244,91,43,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(244,91,43,0); }
    100% { box-shadow: 0 0 0 0 rgba(244,91,43,0); }
}

.ai-assistant-button i {
    color: white;
    font-size: 28px;
    animation: robot-spin 10s linear infinite;
}

@keyframes robot-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ai-tooltip {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.ai-assistant-button:hover .ai-tooltip {
    opacity: 1;
    visibility: visible;
    top: -50px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    .newsletter-col {
        grid-column: span 4;
    }
}

@media (max-width: 992px) {
    .nav-links, .action-phone {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .company-info {
        grid-column: span 2;
    }
    .newsletter-col {
        grid-column: span 2;
    }
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .shipment-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    .timeline-steps {
        flex-direction: column;
        gap: 30px;
    }
    .timeline-steps::before {
        display: none;
    }
    .timeline-step {
        display: flex;
        gap: 20px;
        text-align: left;
    }
    .step-marker {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .contact-info {
        justify-content: center;
    }
    .contact-info .divider {
        display: none;
    }
    .contact-info {
        flex-direction: column;
        gap: 8px;
    }
    .banner-content h1 {
        font-size: 2.5rem;
    }
    .section {
        padding: 50px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .company-info,
    .newsletter-col {
        grid-column: span 1;
    }
    .copyright-content {
        flex-direction: column;
        text-align: center;
    }
    .shipment-stats {
        grid-template-columns: 1fr;
    }
    .trust-badges {
        gap: 15px;
    }
    .badge-item {
        width: calc(50% - 15px);
    }
    .cta-buttons {
        flex-direction: column;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    .contact-item {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .badge-item {
        width: 100%;
    }
}
/* ===== PREMIUM SHIPMENT SECTION ===== */
.shipment-premium {
    position: relative;
    padding: 100px 0;
    background: #0a0c12;
    overflow: hidden;
}

/* Abstract Background Elements */
.premium-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.orb-1 {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, #f45b2b, transparent 70%);
    animation: orb-float 20s infinite;
}

.orb-2 {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, #f9b234, transparent 70%);
    animation: orb-float 20s infinite reverse;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(100px, 100px) rotate(120deg); }
    66% { transform: translate(-100px, -100px) rotate(240deg); }
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(244, 91, 43, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 91, 43, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-shift 10s linear infinite;
}

@keyframes grid-shift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(244, 91, 43, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Premium Header */
.premium-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.header-glitch {
    margin-bottom: 20px;
}

.glitch-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #f45b2b;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 100% { transform: skew(0deg, 0deg); opacity: 1; }
    95% { transform: skew(5deg, 2deg); opacity: 0.8; }
    96% { transform: skew(-5deg, -2deg); opacity: 0.9; }
    97% { transform: skew(3deg, 1deg); opacity: 0.8; }
}

.premium-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    color: white;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.title-gradient {
    display: block;
    background: linear-gradient(135deg, #f45b2b, #f9b234, #f45b2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-shift 3s linear infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.premium-subtitle {
    font-size: 1.2rem;
    color: #8a8f99;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Floating Stats Cards */
.stats-floating {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.stat-floating-card {
    background: rgba(20, 25, 35, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 91, 43, 0.2);
    border-radius: 30px;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    animation: float 6s infinite;
}

.stat-floating-card:nth-child(1) { animation-delay: 0s; }
.stat-floating-card:nth-child(2) { animation-delay: 0.5s; }
.stat-floating-card:nth-child(3) { animation-delay: 1s; }
.stat-floating-card:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.stat-floating-card .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(244,91,43,0.2), rgba(249,178,52,0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #f45b2b;
    position: relative;
    z-index: 2;
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: #8a8f99;
}

.stat-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(244,91,43,0.4), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.stat-floating-card:hover .stat-glow {
    opacity: 1;
}

/* 3D Feature Cards */
.feature-cards-3d {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
    perspective: 2000px;
}

.card-3d {
    transform-style: preserve-3d;
    transform: rotateY(0deg) rotateX(0deg);
    transition: transform 0.5s;
    cursor: pointer;
    height: 380px;
}

.card-3d:hover {
    transform: rotateY(10deg) rotateX(5deg) translateY(-20px);
}

.card-3d.featured {
    transform: scale(1.05) translateY(-10px);
    z-index: 4;
}

.card-3d.featured:hover {
    transform: scale(1.05) rotateY(10deg) rotateX(5deg) translateY(-30px);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: rgba(20, 25, 35, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 91, 43, 0.2);
    border-radius: 30px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(244,91,43,0.1) 0%, transparent 30%);
    opacity: 0.5;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f45b2b, #f9b234);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
    box-shadow: 0 0 20px rgba(244,91,43,0.5);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f45b2b, #f9b234);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(244,91,43,0.3);
    animation: icon-pulse 3s infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.card-front h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.card-front p {
    color: #8a8f99;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-stats {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
}

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

.mini-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #f45b2b;
}

.mini-label {
    font-size: 0.8rem;
    color: #8a8f99;
}

/* Progress Circle */
.progress-circle {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 20px auto;
}

.progress-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 6;
}

.progress-fill {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 6;
    stroke-linecap: round;
    animation: progress 2s ease-out forwards;
}

@keyframes progress {
    from { stroke-dashoffset: 251.2; }
    to { stroke-dashoffset: 75.36; }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: 700;
    color: #f45b2b;
}

.progress-label {
    font-size: 0.9rem;
    color: #8a8f99;
}

/* Sensor Grid */
.sensor-grid {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.sensor {
    background: rgba(255,255,255,0.05);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: white;
}

.sensor i {
    color: #f45b2b;
}

/* Eco Meter */
.eco-meter {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin: 20px 0 10px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #f45b2b, #f9b234);
    border-radius: 10px;
    animation: meter-fill 2s ease-out;
}

@keyframes meter-fill {
    from { width: 0; }
}

.eco-label {
    font-size: 0.9rem;
    color: #8a8f99;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(244,91,43,0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.card-3d:hover .card-glow {
    opacity: 1;
}

/* Journey Timeline */
.journey-timeline {
    margin: 80px 0;
    position: relative;
    z-index: 3;
}

.timeline-heading {
    text-align: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.heading-dot {
    width: 10px;
    height: 10px;
    background: #f45b2b;
    border-radius: 50%;
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.timeline-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.timeline-progress {
    position: absolute;
    top: 60px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: linear-gradient(90deg, #f45b2b, #f9b234);
    transform: scaleX(0.5);
    transform-origin: left;
    animation: progress-grow 3s ease-out forwards;
}

@keyframes progress-grow {
    from { transform: scaleX(0); }
    to { transform: scaleX(0.5); }
}

.timeline-node {
    position: relative;
    flex: 1;
    text-align: center;
}

.node-marker {
    width: 80px;
    height: 80px;
    background: rgba(20, 25, 35, 0.9);
    border: 2px solid rgba(244,91,43,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.3s;
}

.timeline-node.active .node-marker {
    border-color: #f45b2b;
    box-shadow: 0 0 30px rgba(244,91,43,0.5);
    transform: scale(1.1);
}

.node-marker i {
    font-size: 32px;
    color: white;
}

.node-pulse {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid #f45b2b;
    animation: node-pulse 2s infinite;
    opacity: 0;
}

.timeline-node.active .node-pulse {
    opacity: 1;
}

@keyframes node-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.node-content h4 {
    color: white;
    margin-bottom: 5px;
}

.node-content p {
    color: #8a8f99;
    margin-bottom: 5px;
}

.node-time {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(244,91,43,0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #f45b2b;
}

/* Premium Calculator */
.calculator-premium {
    margin: 80px 0;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.calculator-glow {
    position: absolute;
    inset: -1px;
    background: linear-gradient(90deg, #f45b2b, #f9b234, #f45b2b);
    filter: blur(10px);
    opacity: 0.3;
    animation: border-glow 3s linear infinite;
}

@keyframes border-glow {
    0% { filter: blur(10px) hue-rotate(0deg); }
    100% { filter: blur(10px) hue-rotate(360deg); }
}

.calculator-content {
    position: relative;
    background: rgba(20, 25, 35, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 50px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    border: 1px solid rgba(244,91,43,0.3);
}

.calc-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(244,91,43,0.2);
    border-radius: 30px;
    font-size: 0.8rem;
    color: #f45b2b;
    margin-bottom: 20px;
}

.calculator-left h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

.calculator-left p {
    color: #8a8f99;
    margin-bottom: 30px;
}

.input-futuristic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #8a8f99;
    font-size: 0.9rem;
}

.input-group label i {
    color: #f45b2b;
    margin-right: 8px;
}

.input-field {
    position: relative;
}

.input-field input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(244,91,43,0.3);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-field input:focus {
    outline: none;
    border-color: #f45b2b;
    box-shadow: 0 0 20px rgba(244,91,43,0.3);
}

.input-field input[readonly] {
    cursor: default;
}

.input-border {
    position: absolute;
    inset: 0;
    border-radius: 15px;
    border: 2px solid transparent;
    background: linear-gradient(90deg, #f45b2b, #f9b234) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.input-field:hover .input-border {
    opacity: 1;
}

.calculator-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.result-display {
    background: rgba(255,255,255,0.03);
    border-radius: 30px;
    padding: 30px;
    border: 1px solid rgba(244,91,43,0.2);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.result-label {
    color: #8a8f99;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f45b2b;
}

.result-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #f45b2b, transparent);
    margin: 20px 0;
}

.result-confidence {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 30px;
}

.confidence-dot {
    width: 10px;
    height: 10px;
    background: #4caf50;
    border-radius: 50%;
    animation: dot-pulse 2s infinite;
}

.btn-neon {
    position: relative;
    padding: 18px 30px;
    background: linear-gradient(90deg, #f45b2b, #f9b234);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244,91,43,0.5);
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    animation: btn-shine 3s infinite;
}

@keyframes btn-shine {
    100% { transform: translateX(100%); }
}

/* Trust Bad