/*
 * Thai2Music Platform - Custom Styles
 * Bootstrap 5 Based
 */

/* Global Styles */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

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

body {
    font-family: 'Sarabun', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #212529;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar-brand {
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-search {
    max-width: 700px;
    margin: 0 auto;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.artist-card {
    position: relative;
    height: 100%;
}

.artist-card .card-body {
    display: flex;
    flex-direction: column;
}

.artist-card .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    background-color: #f8f9fa;
}

.artist-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.95);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.artist-rating {
    color: #ffc107;
    font-weight: 600;
}

.price-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Buttons */
.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-outline-primary {
    border-width: 2px;
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* Search & Filter */
.search-bar {
    border-radius: 50px;
    border: 2px solid #e9ecef;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.search-bar:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.filter-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.filter-section .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.filter-section .form-select,
.filter-section .form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

/* Stats/Features Section */
.feature-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Profile Section */
.profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.profile-info h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.badge-custom {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.9;
}

/* Dashboard */
.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

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

.dashboard-stat .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.dashboard-stat .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.dashboard-stat .label {
    color: #6c757d;
    font-weight: 500;
}

/* Booking Status */
.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-accepted {
    background-color: #d1e7dd;
    color: #0f5132;
}

.status-rejected {
    background-color: #f8d7da;
    color: #842029;
}

.status-completed {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Messages/Chat */
.message-list {
    max-height: 500px;
    overflow-y: auto;
}

.message-item {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: background 0.2s ease;
}

.message-item:hover {
    background-color: #f8f9fa;
}

.message-item.unread {
    background-color: #e7f3ff;
}

.chat-box {
    height: 500px;
    overflow-y: auto;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.chat-message {
    margin-bottom: 1rem;
}

.chat-message.sent {
    text-align: right;
}

.chat-bubble {
    display: inline-block;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    max-width: 70%;
}

.chat-bubble.sent {
    background-color: var(--primary-color);
    color: white;
}

.chat-bubble.received {
    background-color: white;
    color: #333;
}

/* Reviews */
.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.review-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

/* Footer */
footer a:hover {
    color: white !important;
}

footer ul li {
    margin-bottom: 0.5rem;
}

.social-links a {
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* Loading Spinner */
.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state i {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

.empty-state h4 {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #adb5bd;
}

/* Utilities */
.text-muted-light {
    color: #adb5bd;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.shadow-custom {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Artist Availability Calendar */
.availability-calendar {
    padding: 1.5rem;
    background: white;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid #e9ecef;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: #495057;
    padding: 0.5rem;
    font-size: 0.95rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
}

.calendar-day {
    aspect-ratio: 1 / 1;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    transition: all 0.2s ease;
    background: white;
    cursor: default;
    padding: 0.5rem;
    min-height: 80px;
    overflow: hidden;
}

.calendar-day.empty {
    border: none;
    background: transparent;
    min-height: 0;
}

.calendar-day.past {
    background: #f8f9fa;
    color: #adb5bd;
    border-color: #e9ecef;
    opacity: 0.6;
}

.calendar-day.today {
    border-color: #667eea;
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.calendar-day.available {
    border-color: #28a745;
    background: #f1f9f3;
    cursor: pointer;
}

.calendar-day.available:hover {
    background: #d4edda;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.calendar-day.available:active {
    transform: scale(0.98);
}

.calendar-day.booked {
    border-color: #0d6efd;
    background: #e7f1ff;
}

.calendar-day.booked[style*="cursor: pointer"] {
    cursor: pointer;
}

.calendar-day.booked:hover {
    transform: scale(1.03);
}

.calendar-day.booked[style*="cursor: pointer"]:hover {
    background: #cfe2ff;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.calendar-day.blocked {
    border-color: #dc3545;
    background: #f8d7da;
}

.calendar-day.blocked:hover {
    transform: scale(1.03);
}

.day-number {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.day-status {
    font-size: 1.1rem;
    line-height: 1;
    margin-top: 0.25rem;
}

.calendar-day.available .day-status {
    color: #28a745;
}

.calendar-day.booked .day-status {
    color: #0d6efd;
}

.calendar-day.blocked .day-status {
    color: #dc3545;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.legend-item i {
    font-size: 1.3rem;
}

.legend-item small {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Calendar */
@media (max-width: 768px) {
    .availability-calendar {
        padding: 1rem;
    }

    .calendar-day-header {
        font-size: 0.8rem;
        padding: 0.25rem;
    }

    .calendar-day {
        min-height: 50px;
        padding: 0.25rem;
    }

    .day-number {
        font-size: 0.9rem;
    }

    .day-status {
        font-size: 0.9rem;
    }

    .calendar-grid,
    .calendar-header {
        gap: 0.4rem;
    }

    .legend-item {
        padding: 0.25rem;
    }

    .legend-item i {
        font-size: 1.1rem;
    }

    .legend-item small {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .availability-calendar {
        padding: 0.5rem;
    }

    .calendar-day {
        min-height: 45px;
        border-radius: 6px;
    }

    .calendar-grid,
    .calendar-header {
        gap: 0.25rem;
    }

    .day-number {
        font-size: 0.85rem;
    }

    .day-status {
        font-size: 0.85rem;
    }
}

/* Artist Profile New Design Components */

/* Trust Bar */
.trust-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 0.75rem 0;
}

.trust-bar .col-md-4 {
    padding: 0.5rem;
}

.trust-bar i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.trust-bar small {
    color: #495057;
    font-size: 0.9rem;
}

/* Statistics Boxes */
.stat-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Timeline Component */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

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

.timeline-marker {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid white;
    box-shadow: 0 0 0 2px #667eea;
}

.timeline-content {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

.timeline-content:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateX(3px);
}

.timeline-date {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.timeline-event {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.timeline-location {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Enhanced Review Cards */
.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.review-card .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-card .reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.review-card .reviewer-info {
    flex-grow: 1;
}

.review-card .reviewer-name {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.review-card .review-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.review-rating {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.review-rating i {
    margin-right: 2px;
}

.review-text {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0;
}

/* FAQ Accordion Customization */
.accordion-button {
    font-weight: 600;
    color: #212529;
    background-color: white;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23667eea'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: #495057;
    line-height: 1.7;
}

.accordion-item {
    border: 1px solid rgba(0,0,0,.125);
    margin-bottom: 0.5rem;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Sidebar Enhancements */
.sticky-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.sidebar-cta h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sidebar-cta .price-highlight {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
}

.sidebar-cta .btn {
    background: white;
    color: #667eea;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.sidebar-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

/* Quick Dates Preview */
.quick-dates-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-dates-list li {
    padding: 0.75rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quick-dates-list li:last-child {
    border-bottom: none;
}

.date-label {
    font-weight: 500;
    color: #495057;
}

.date-status-icon {
    font-size: 1.2rem;
}

.date-status-icon.available {
    color: #28a745;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
}

.badge-item.verified {
    background: #d1f2eb;
    border-color: #28a745;
    color: #0f5132;
}

.badge-item i {
    font-size: 1.1rem;
}

/* Video Preview Section */
.video-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.video-preview-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.video-preview-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.video-preview-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.video-preview-item .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-preview-item .play-overlay i {
    font-size: 3rem;
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.video-preview-item:hover .play-overlay i {
    transform: scale(1.2);
    opacity: 1;
}

/* Package Card Highlight */
.package-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.package-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.package-card.popular {
    border: 2px solid #667eea;
    position: relative;
}

.package-card.popular::before {
    content: 'ยอดนิยม';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-card .package-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #212529;
}

.package-card .package-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.package-card .package-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.package-card .package-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.package-card .package-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
}

.package-card .package-details li:last-child {
    border-bottom: none;
}

.package-card .package-details li i {
    margin-right: 0.5rem;
    color: #28a745;
}

/* Modal Enhancements */
.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-title {
    color: white;
    font-weight: 700;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1rem 2rem;
}

/* Responsive Adjustments for New Components */
@media (max-width: 768px) {
    .trust-bar small {
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-marker {
        left: -2rem;
    }

    .sidebar-cta {
        padding: 1.5rem;
    }

    .sidebar-cta .price-highlight {
        font-size: 1.5rem;
    }

    .sticky-sidebar {
        position: relative;
        top: 0;
    }

    .video-preview-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .package-card .package-name {
        font-size: 1.1rem;
    }

    .package-card .package-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .trust-bar .col-md-4 {
        font-size: 0.75rem;
    }

    .trust-bar i {
        font-size: 1rem;
    }

    .stat-box {
        padding: 1rem;
    }

    .timeline-content {
        padding: 0.75rem;
    }

    .review-card {
        padding: 1rem;
    }

    .accordion-button,
    .accordion-body {
        padding: 1rem;
    }
}
