/* ══════════════════════════════════════════
   OGC Testimonials Slider — Gold Theme
   Colors: #d4af37 (gold), #fef08a (light gold), #b08d1e (dark gold)
   ══════════════════════════════════════════ */

.ogc-testimonials-section {
    background: #f5f0e4;
    width: 100%;
    padding: 72px 48px 64px;
    position: relative;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    box-sizing: border-box;
}
.ogc-testimonials-section *,
.ogc-testimonials-section *::before,
.ogc-testimonials-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Progress bar */
.ogc-test-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #b08d1e, #d4af37, #fef08a);
    border-radius: 0 2px 2px 0;
    z-index: 2;
}

/* Header */
.ogc-test-section-header {
    text-align: center;
    margin-bottom: 52px;
}
.ogc-test-section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1710;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.2;
}
.ogc-test-section-header p {
    color: #7a7060;
    font-size: 15px;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

/* Slider viewport — draggable */
.ogc-test-slider-viewport {
    overflow: hidden;
    margin: 0 -10px;
    cursor: grab;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}
.ogc-test-slider-viewport.ogc-dragging {
    cursor: grabbing;
}

/* Track — JS controls transform & transition directly */
.ogc-test-slider-track {
    display: flex;
    will-change: transform;
}

/* Cards — JS sets explicit px width; CSS provides padding + defaults */
.ogc-test-card {
    flex: 0 0 25%;
    padding: 0 10px;
    min-width: 0;
}
.ogc-test-card-inner {
    background: #ffffff;
    border: 1px solid #e6dcc5;
    border-radius: 10px;
    padding: 32px 28px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), transform 0.35s cubic-bezier(0.4,0,0.2,1);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.ogc-test-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #b08d1e, #d4af37, #fef08a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.ogc-test-card-inner:hover::before {
    transform: scaleX(1);
}
.ogc-test-card-inner:hover {
    box-shadow: 0 4px 12px rgba(180,155,60,0.10), 0 8px 32px rgba(180,155,60,0.06);
    transform: translateY(-3px);
}

/* Prevent images from being dragged by browser */
.ogc-test-card-inner img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Quote icon */
.ogc-test-quote-icon {
    width: 36px;
    height: 28px;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.ogc-test-quote-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Text */
.ogc-test-text {
    color: #4a4538;
    font-size: 14px;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Divider */
.ogc-test-divider {
    height: 1px;
    background: #e6dcc5;
    margin-bottom: 20px;
}

/* Author */
.ogc-test-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ogc-test-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(212,175,55,0.25);
}
.ogc-test-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ogc-test-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 700;
    font-size: 15px;
    color: #b08d1e;
    background: rgba(212,175,55,0.12);
}
.ogc-test-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ogc-test-author-name {
    font-weight: 700;
    font-size: 14.5px;
    color: #1a1710;
    letter-spacing: 0.1px;
}
.ogc-test-author-role {
    font-size: 12.5px;
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Navigation */
.ogc-test-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 44px;
}
.ogc-test-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #d4c9a8;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    color: #4a4538;
    padding: 0;
    outline: none;
}
.ogc-test-nav-btn:hover {
    background: #fdf8eb;
    border-color: #d4af37;
    color: #b08d1e;
    transform: scale(1.06);
}
.ogc-test-nav-btn:active {
    transform: scale(0.96);
}
.ogc-test-nav-btn svg {
    width: 18px;
    height: 18px;
}

/* Dots */
.ogc-test-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.ogc-test-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4c9a8;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    outline: none;
}
.ogc-test-dot.active {
    background: #d4af37;
    width: 24px;
    border-radius: 4px;
}
.ogc-test-dot:hover:not(.active) {
    background: #b08d1e;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .ogc-test-card { flex: 0 0 33.333%; }
}
@media (max-width: 820px) {
    .ogc-testimonials-section { padding: 56px 28px 48px; }
    .ogc-test-card { flex: 0 0 50%; }
    .ogc-test-section-header h2 { font-size: 30px; }
}
@media (max-width: 520px) {
    .ogc-testimonials-section { padding: 44px 16px 40px; }
    .ogc-test-card { flex: 0 0 100%; }
    .ogc-test-section-header h2 { font-size: 26px; }
    .ogc-test-card-inner { padding: 24px 20px 22px; }
}
