.timeline-content .location {
    color: #666; font-size: 0.9rem; margin-bottom: 0.25rem;
}

.timeline-content .time {
    color: var(--jt-red); font-weight: 600; font-size: 0.875rem;
}

.order-info-card {
    background: white; border-radius: var(--border-radius);
    padding: 1.5rem; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem; border: 1px solid #eee;
}

.info-row {
    display: flex; justify-content: space-between;
    padding: 1rem 0; border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child { border-bottom: none; }

.info-label {
    color: #666; font-weight: 500; font-size: 0.9rem;
}

.info-value {
    font-weight: 700; color: var(--jt-dark);
}

.status-badge-custom {
    display: inline-block; padding: 0.5rem 1.25rem;
    border-radius: 50px; font-weight: 600; font-size: 0.875rem;
    background: var(--jt-red); color: white;
}

/* Footer */
footer {
    background: var(--jt-dark); color: white; padding: 5rem 0 0;
}

.footer-widget h4 {
    font-weight: 700; margin-bottom: 1.5rem;
    color: white; font-size: 1.1rem;
}

.footer-widget p {
    color: #aaa; line-height: 1.8; font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #aaa; text-decoration: none; transition: var(--transition);
    display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--jt-red); padding-left: 5px;
}

.social-links {
    display: flex; gap: 0.75rem; margin-top: 1.5rem;
}

.social-links a {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: white; transition: var(--transition); text-decoration: none;
}

.social-links a:hover {
    background: var(--jt-red); transform: translateY(-3px);
}

.contact-info li {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1rem; color: #aaa; font-size: 0.95rem;
}

.contact-info li i {
    color: var(--jt-red); margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid #222; margin-top: 4rem;
    padding: 2rem 0; text-align: center; color: #666; font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 45px; height: 45px; background: var(--jt-red);
    color: white; border-radius: var(--border-radius);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; visibility: hidden;
    transition: var(--transition); z-index: 1000; border: none;
}

.back-to-top.show {
    opacity: 1; visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px); background: #c4000f;
}

/* Reveal Animation */
.reveal {
    opacity: 0; transform: translateY(30px); transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1; transform: translateY(0);
}

/* Magnetic Button Effect */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Loading Spinner */
.loading-spinner {
    display: none;
}

/* Particle Effect */
.particles {
    position: absolute; width: 100%; height: 100%;
    pointer-events: none; overflow: hidden;
}

.particle {
    position: absolute; background: rgba(255, 255, 255, 0.1);
    border-radius: 50%; animation: particleFloat 20s linear infinite;
}

.particle:nth-child(odd) {
    animation-duration: 15s; animation-delay: -5s;
}

.particle:nth-child(3n) {
    animation-duration: 25s; animation-delay: -10s;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Glassmorphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Advanced Hover Effects */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #e60012, #c4000f, #b3000d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse Animation */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from { box-shadow: 0 0 20px rgba(230, 0, 18, 0.3); }
    to { box-shadow: 0 0 40px rgba(230, 0, 18, 0.6); }
}

/* Morphing Shapes */
.morphing-shape {
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 50%; }
    25% { border-radius: 0; }
    50% { border-radius: 50% 0 50% 0; }
    75% { border-radius: 0 50% 0 50%; }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-section { padding: 120px 0 80px; }
    .hero-features { gap: 1.5rem; }
    .hero-actions { gap: 1rem; }
    .hero-stats { gap: 1.5rem; }
}

@media (max-width: 991px) {
    .hero-section { padding: 100px 0 60px; text-align: center; min-height: auto; }
    .hero-content { padding: 0 1rem; }
    .hero-content p { margin-left: auto; margin-right: auto; max-width: 500px; }
    .hero-features { flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
    .feature-item { padding: 0.5rem 1rem; font-size: 0.9rem; }
    .hero-actions { flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
    .hero-cta, .hero-secondary { width: 100%; justify-content: center; padding: 1rem 2rem; }
    .hero-stats { justify-content: center; gap: 1rem; }
    .stat-item { min-width: 120px; padding: 1.5rem 1rem; }
    .hero-visual { margin-top: 3rem; }
    .floating-cards { display: none; }
    .experience-badge { right: 10px; bottom: 10px; padding: 1rem 1.5rem; }
    .experience-badge .years { font-size: 2rem; }
    .pricing-card.featured { transform: none; margin: 2rem 0; }
    .pricing-card.featured:hover { transform: translateY(-10px); }
    .testimonial-card { margin: 0.5rem; }
    .partners-section .row { gap: 1rem; }
    .partner-logo { height: 30px; }
}

@media (max-width: 768px) {
    .navbar-brand { font-size: 1.4rem; }
    .nav-link { font-size: 0.9rem; margin: 0 0.5rem; }
    .hero-section { padding: 80px 0 40px; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); line-height: 1.2; }
    .hero-subtitle { font-size: clamp(1.2rem, 5vw, 2rem); }
    .hero-description { font-size: 1rem; margin-bottom: 2rem; }
    .search-box { padding: 1.5rem; margin-top: -40px; }
    .search-input-group { flex-direction: column; gap: 0.5rem; }
    .search-input-group input { padding: 0.75rem 1rem; }
    .btn-track { width: 100%; justify-content: center; padding: 0.75rem 1rem; }
    .section-header h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .section-header p { font-size: 1rem; }
    .stat-card { padding: 1.5rem 1rem; margin-bottom: 1rem; }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.85rem; }
    .service-card { padding: 1.5rem 1rem; margin-bottom: 1rem; }
    .service-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .service-card h4 { font-size: 1.1rem; }
    .service-card p { font-size: 0.9rem; }
    .about-section { padding: 4rem 0; }
    .about-content h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
    .about-content p { font-size: 0.95rem; line-height: 1.7; }
    .pricing-section { padding: 4rem 0; }
    .pricing-card { padding: 2rem 1.5rem; margin-bottom: 2rem; }
    .pricing-price { font-size: 2.5rem; }
    .pricing-features li { font-size: 0.9rem; padding: 0.5rem 0; }
    .testimonials-section { padding: 4rem 0; }
    .testimonial-card { padding: 1.5rem; }
    .testimonial-header { gap: 0.75rem; }
    .testimonial-avatar { width: 50px; height: 50px; font-size: 1.2rem; }
    .testimonial-info h5 { font-size: 1rem; }
    .testimonial-text { font-size: 0.9rem; }
    .faq-section { padding: 4rem 0; }
    .accordion-button { padding: 1rem; font-size: 0.95rem; }
    .accordion-body { padding: 1rem; font-size: 0.9rem; }
    .cta-section { padding: 4rem 0; }
    .cta-content h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
    .cta-content p { font-size: 1rem; }
    .btn-cta { padding: 0.9rem 2rem; font-size: 1rem; }
    footer { padding: 3rem 0 0; }
    .footer-widget h4 { font-size: 1rem; }
    .footer-widget p { font-size: 0.9rem; }
    .footer-links a { font-size: 0.9rem; }
    .contact-info li { font-size: 0.9rem; }
    .footer-bottom { padding: 1.5rem 0; font-size: 0.85rem; }
    .back-to-top { bottom: 1.5rem; right: 1.5rem; width: 40px; height: 40px; }
    .hero-stats { flex-direction: column; gap: 1rem; text-align: center; }
    .hero-stat { text-align: center; }
}

@media (max-width: 576px) {
    .navbar-brand { font-size: 1.25rem; }
    .navbar-toggler { padding: 0.25rem 0.5rem; }
    .hero-section { padding: 70px 0 30px; }
    .hero-badge { padding: 0.5rem 1rem; margin-bottom: 1.5rem; font-size: 0.8rem; }
    .hero-title { font-size: clamp(1.8rem, 10vw, 2.5rem); margin-bottom: 1rem; }
    .hero-subtitle { font-size: clamp(1rem, 6vw, 1.5rem); }
    .hero-description { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .feature-item { padding: 0.4rem 0.8rem; font-size: 0.85rem; }
    .hero-cta, .hero-secondary { padding: 0.9rem 1.5rem; font-size: 0.95rem; }
    .stat-item { min-width: 80px; padding: 0.8rem 0.3rem; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.75rem; }
    .search-box { padding: 1rem; margin-top: -30px; }
    .search-box h3 { font-size: 1.2rem; margin-bottom: 1rem; }
    .search-input-group input { padding: 0.6rem 0.8rem; font-size: 0.9rem; }
    .btn-track { padding: 0.6rem 1rem; font-size: 0.9rem; }
    .section-header { margin-bottom: 3rem; }
    .section-header h2 { font-size: clamp(1.5rem, 8vw, 2rem); margin-bottom: 0.5rem; }
    .section-tag { font-size: 0.8rem; padding: 0.4rem 0.8rem; margin-bottom: 0.5rem; }
    .stat-card { padding: 1rem; }
    .service-card { padding: 1.2rem; }
    .service-icon { width: 50px; height: 50px; font-size: 1.2rem; }
    .service-card h4 { font-size: 1rem; }
    .service-card p { font-size: 0.85rem; }
    .about-image-wrapper { margin-bottom: 2rem; }
    .experience-badge { padding: 0.8rem 1.2rem; }
    .experience-badge .years { font-size: 1.8rem; }
    .experience-badge span { font-size: 0.8rem; }
    .pricing-card { padding: 1.5rem 1rem; }
    .pricing-header h4 { font-size: 1.3rem; }
    .pricing-price { font-size: 2rem; }
    .pricing-features li { font-size: 0.85rem; padding: 0.5rem 0; }
    .testimonial-card { padding: 1rem; margin: 0.25rem; }
    .testimonial-header { flex-direction: column; text-align: center; gap: 0.5rem; }
    .testimonial-avatar { width: 45px; height: 45px; font-size: 1rem; }
    .testimonial-info h5 { font-size: 0.95rem; }
    .testimonial-text { font-size: 0.85rem; }
    .accordion-button { padding: 0.8rem; font-size: 0.9rem; }
    .accordion-body { padding: 0.8rem; font-size: 0.85rem; }
    .partners-section { padding: 3rem 0; }
    .partner-logo { height: 25px; }
    .cta-content h2 { font-size: clamp(1.3rem, 8vw, 2.2rem); }
    .cta-content p { font-size: 0.95rem; }
    .btn-cta { padding: 0.8rem 1.5rem; font-size: 0.95rem; }
    .footer-widget { margin-bottom: 2rem; }
    .footer-widget h4 { font-size: 0.95rem; }
    .footer-widget p { font-size: 0.85rem; }
    .footer-links a { font-size: 0.85rem; }
    .contact-info li { font-size: 0.85rem; }
    .social-links { margin-top: 1rem; }
    .social-links a { width: 35px; height: 35px; }
    .footer-bottom { padding: 1rem 0; font-size: 0.8rem; }
    .back-to-top { bottom: 1rem; right: 1rem; width: 35px; height: 35px; }
    .btn-primary-custom, .btn-outline-custom { width: 100%; justify-content: center; margin-bottom: 0.5rem; padding: 0.8rem 1.5rem; font-size: 0.95rem; }
    .hero-content h1 { font-size: 2rem; }
    .hero-image-container { max-width: 300px; margin: 0 auto; }
    .hero-main-image { width: 100%; height: auto; }
}

@media (max-width: 480px) {
    .container { padding-left: 1rem; padding-right: 1rem; }
    .hero-section { padding: 60px 0 20px; }
    .hero-title { font-size: clamp(1.6rem, 12vw, 2.2rem); }
    .hero-subtitle { font-size: clamp(0.9rem, 7vw, 1.3rem); }
    .hero-description { font-size: 0.9rem; }
    .stat-item { min-width: 80px; padding: 0.8rem 0.3rem; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.75rem; }
    .search-box { padding: 0.8rem; margin-top: -20px; }
    .section-header h2 { font-size: clamp(1.3rem, 10vw, 1.8rem); }
    .service-card { padding: 1rem; }
    .pricing-card { padding: 1.2rem 0.8rem; }
    .testimonial-card { padding: 1rem; }
    .cta-content h2 { font-size: clamp(1.3rem, 10vw, 2rem); }
    .btn-cta { padding: 0.7rem 1.2rem; font-size: 0.9rem; }
}
