/*--------------------------------------------------------------
# Tracking Form Styles
--------------------------------------------------------------*/

.tracking-form-container {
    background: linear-gradient(135deg, rgba(253, 85, 35, 0.1) 0%, rgba(6, 47, 58, 0.1) 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    margin: 60px auto;
    max-width: 500px;
}

.tracking-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(253, 85, 35, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.tracking-form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--tanspot-black);
    margin-bottom: 10px;
    text-align: center;
    position: relative;
}

.tracking-form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--tanspot-base), #ff6b35);
    border-radius: 2px;
}

.tracking-form-subtitle {
    font-size: 16px;
    color: var(--tanspot-gray);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
}

.tracking-input-group {
    position: relative;
    margin-bottom: 25px;
}

.tracking-input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--tanspot-black);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tracking-input-group input[type="text"] {
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(230, 230, 230, 0.5);
    border-radius: 15px;
    padding: 0 20px 0 50px;
    font-size: 16px;
    font-weight: 500;
    color: var(--tanspot-black);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.tracking-input-group input[type="text"]:focus {
    outline: none;
    border-color: var(--tanspot-base);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(253, 85, 35, 0.15);
    transform: translateY(-2px);
}

.tracking-input-group input[type="text"]::placeholder {
    color: #999;
    font-weight: 400;
}

.tracking-input-group::before {
    content: '\f002';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tanspot-base);
    font-size: 18px;
    z-index: 2;
    pointer-events: none;
}

.track-btn {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, var(--tanspot-base) 0%, #ff6b35 100%);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(253, 85, 35, 0.3);
}

.track-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.track-btn:hover::before {
    left: 100%;
}

.track-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(253, 85, 35, 0.4);
    background: linear-gradient(135deg, #ff6b35 0%, var(--tanspot-base) 100%);
}

.track-btn:active {
    transform: translateY(-1px);
}

.track-btn i {
    margin-right: 10px;
    font-size: 18px;
}

.tracking-form-info {
    margin-top: 25px;
    padding: 20px;
    background: rgba(244, 245, 249, 0.8);
    border-radius: 12px;
    border-left: 4px solid var(--tanspot-base);
}

.tracking-form-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--tanspot-black);
    margin-bottom: 10px;
}

.tracking-form-info p {
    font-size: 14px;
    color: var(--tanspot-gray);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tracking-form-container {
        padding: 30px 20px;
        margin: 40px auto;
        max-width: 100%;
    }
    
    .tracking-form-title {
        font-size: 24px;
    }
    
    .tracking-input-group input[type="text"] {
        height: 55px;
        font-size: 15px;
    }
    
    .track-btn {
        height: 55px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .tracking-form-container {
        padding: 25px 15px;
        margin: 30px auto;
    }
    
    .tracking-form-title {
        font-size: 22px;
    }
    
    .tracking-form-subtitle {
        font-size: 14px;
    }
}

/* Animation for form elements */
.tracking-form-container {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tracking-input-group {
    animation: slideInLeft 0.6s ease-out 0.2s both;
}

.track-btn {
    animation: slideInRight 0.6s ease-out 0.4s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*--------------------------------------------------------------
# Tracking Features Styles
--------------------------------------------------------------*/

.tracking-features {
    padding: 40px 0;
}

.tracking-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.tracking-feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.tracking-feature-item:nth-child(3) {
    animation-delay: 0.4s;
}

.tracking-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tanspot-base), #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(253, 85, 35, 0.3);
    transition: all 0.3s ease;
}

.tracking-feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(253, 85, 35, 0.4);
}

.feature-icon i {
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--tanspot-white);
    margin-bottom: 8px;
    margin-top: 0;
}

.feature-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* Responsive adjustments for tracking features */
@media (max-width: 768px) {
    .tracking-features {
        padding: 20px 0;
    }
    
    .tracking-feature-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature-content h4 {
        font-size: 16px;
    }
    
    .feature-content p {
        font-size: 13px;
    }
} 