/* Base styles */
body {
    font-family: sans-serif;
    color: #000;
    background-color: #fff;
}

/* Header styles */
.header {
    background-color: #17181A;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Navigation styles */
.nav-link {
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #FFBA46;
}

.nav-button {
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #FFBA46;
    color: white;
}

/* Section styles */
.section-dark {
    background-color: #161719;
}

.card-dark {
    background-color: #2B2D30;
    border-radius: 0.75rem;
}

/* Utility classes */
.accent-yellow {
    color: #FFBA46;
}

.bg-accent-yellow {
    background-color: #FFBA46;
}

.bg-dark-gray {
    background-color: #2C2E30;
}

/* Divider styles */
.fade-divider::before,
.fade-divider::after {
    content: '';
    position: absolute;
    top: 0;
    height: 1px;
    width: 50%;
    background: linear-gradient(to left, transparent, rgba(209, 213, 219, 0.5));
}

.fade-divider::before {
    left: 0;
}

.fade-divider::after {
    right: 0;
    background: linear-gradient(to right, transparent, rgba(209, 213, 219, 0.5));
}

/* Testimonial card styles */
.testimonial-card {
    transition: all 0.5s ease;
    padding: 0 16px;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Carousel styles */
.active-dot {
    transform: scale(1.4);
    background-color: #FFBA46;
}

#testimonial-track {
    will-change: transform;
}

/* Responsive styles */
@media (max-width: 767px) {
    .testimonial-card {
        width: 100% !important;
    }
}