/* Customer Care Styles */
.customer-care-section {
    background-color: #f8f9fa;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: white !important;
    text-decoration: none;
    transition: opacity 0.3s;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.navbar .fas.fa-arrow-left {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .navbar h4 {
        font-size: 1.1rem;
    }
    
    .navbar-brand span {
        display: none;
    }
    
    .navbar-brand i {
        margin-right: 0 !important;
    }
}

.help-center-header {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    color: white;
    padding: 3rem 0;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Search bar styles */
.search-container .form-control:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.search-container .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.search-container .form-control {
    border: 1px solid #dee2e6;
    padding: 12px 20px;
    font-size: 16px;
}

.search-container .btn {
    padding: 0 25px;
    border: none;
    background: #0d6efd;
}

.search-container .btn:focus {
    box-shadow: none;
}

.search-container .btn:hover {
    background: #0b5ed7;
}

/* Make search bar responsive */
@media (max-width: 768px) {
    .search-container .form-control {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .search-container .btn {
        padding: 0 15px;
    }
}

/* Quick Links */
.quick-link-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quick-link-card i {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

/* Contact Cards */
.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

/* FAQs Section */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    background: white;
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    background: #0d6efd;
    color: white;
}

/* Order Tracking Styles */
.order-tracking-section {
    max-width: 800px;
    margin: 0 auto;
}

.order-timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.timeline-item.active {
    opacity: 1;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 30px;
    bottom: -30px;
    width: 2px;
    background: #dee2e6;
}

.timeline-item.active:not(:last-child)::after {
    background: #0d6efd;
}

.timeline-icon {
    width: 32px;
    height: 32px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    z-index: 1;
}

.timeline-item.active .timeline-icon {
    background: #0d6efd;
    color: white;
}

.timeline-content {
    flex: 1;
}

.timeline-content h5 {
    margin-bottom: 5px;
}

.timeline-content p {
    margin-bottom: 0;
}

.order-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

/* Form Styles */
.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

.btn-link {
    color: #0d6efd;
}

.btn-link:hover {
    color: #0a58ca;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .timeline-item {
        margin-bottom: 1.5rem;
    }

    .timeline-content h5 {
        font-size: 1rem;
    }

    .timeline-content p,
    .timeline-content small {
        font-size: 0.875rem;
    }
} 