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

/* HERO SECTION */
.hero-tracking {
    position: relative;
    background-color: #072D26;
    padding: 100px 0 150px;
    overflow: hidden;
}

.hero-tracking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #072D26
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* SEARCH LAYOUT - TWO COLUMNS */
.search-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

.hero-left {
    text-align: left;
    padding: 40px;
}

.hero-left .icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #072D26;
    border-radius: 20px;
    color: white;
    margin-bottom: 32px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    animation: float 3s ease-in-out infinite;
}

.hero-left .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: #072D26;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-left .hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* STATUS CARD POSITIONED RIGHT */


.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider path {
    fill: #f8f9fa;
}

/* TRACKING SECTION */
.tracking-section {
    background: #f8f9fa;
    padding: 60px 0 100px;
}

.tracking-section.with-hero {
    padding-top: 60px;
}

.tracking-section.no-hero {
    padding-top: 40px;
}

/* STATUS CARD */
.status-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.status-card-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.status-info {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: between;
    flex-wrap: wrap;
}

.tracking-number .label,
.tracking-status .label {
    font-size: 0.875rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.tracking-number .number {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

.status-badge.success {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    color: #155724;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #155724;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.status-decoration {
    position: absolute;
    right: -50px;
    top: -50px;
    opacity: 0.05;
}

.decoration-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 30px solid #667eea;
    position: absolute;
}

.decoration-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    right: 100px;
    top: 100px;
}

/* TIMELINE */
.timeline-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.timeline-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.timeline-count {
    background: #072D26;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.timeline-wrapper {
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 24px;
    position: relative;
    padding-bottom: 40px;
}

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

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-marker {
    position: relative;
    flex-shrink: 0;
}

.marker-dot {
    width: 16px;
    height: 16px;
    background: #072D26;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #e9ecef;
    position: relative;
    z-index: 2;
}

.marker-line {
    position: absolute;
    left: 7px;
    top: 16px;
    width: 2px;
    height: calc(100% + 24px);
    background: #e9ecef;
}

.timeline-content {
    flex: 1;
    background: #f8f9fa;
    padding: 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.timeline-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.timeline-type {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.timeline-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057;
    font-size: 0.9375rem;
}

.detail-row svg {
    color: #667eea;
    flex-shrink: 0;
}

.timeline-observation {
    margin-top: 12px;
    padding: 12px;
    background: white;
    border-left: 3px solid #667eea;
    border-radius: 8px;
    color: #495057;
    font-size: 0.9375rem;
    font-style: italic;
}

/* SEARCH FORM */
.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-card {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.search-illustration {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: #072D26;
    border-radius: 50%;
    color: white;
    margin-bottom: 32px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.search-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.search-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.search-form {
    text-align: left;
}

.input-group-custom {
    position: relative;
    margin-bottom: 24px;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 18px 20px 18px 56px;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.error-message {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #dc3545;
    font-size: 0.875rem;
    margin-bottom: 16px;
    padding: 12px;
    background: #fff5f5;
    border-radius: 8px;
}

.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: #072D26;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.5);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    display: flex;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .status-card {
        padding: 24px;
    }

    .status-info {
        gap: 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-card {
        padding: 24px;
    }

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

    .search-card {
        padding: 40px 24px;
    }

    .search-title {
        font-size: 1.5rem;
    }
}