:root {
    --gold: #FFD700;
    --navy: #232B38;
    --white: #fff;
    --light-bg: #F8F9FA;
    --gray: #6C757D;
    --font-main: 'Poppins', 'Montserrat', Arial, sans-serif;
}

/* Testimonials Hero */
.hero-section {
    min-height: 50vh;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0 40px 0;
    position: relative;
    overflow: hidden;
}
.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(35,43,56,0.8);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--gold);
    text-shadow: 0 4px 24px rgba(35,43,56,0.12);
    font-family: var(--font-main);
}
.section-subtitle {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(35,43,56,0.07);
    padding: 2rem 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 320px;
}
.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(35,43,56,0.13);
    transform: translateY(-6px) scale(1.03);
}
.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(35,43,56,0.08);
}
.testimonial-text {
    font-style: italic;
    color: var(--navy);
    margin: 1.5rem 0;
}
.author-name {
    font-weight: 700;
    color: var(--navy);
    font-family: var(--font-main);
    margin-bottom: 0.25rem;
}
.author-position {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.badge {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 30px;
}

/* Video Testimonials */
.video-testimonial-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(35,43,56,0.07);
    transition: box-shadow 0.2s, transform 0.2s;
    border: none;
}
.video-testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(35,43,56,0.13);
    transform: translateY(-6px) scale(1.03);
}
.video-play-button {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.video-play-button:hover {
    background: var(--navy);
    transform: scale(1.1);
}
.video-play-button i {
    color: var(--navy);
}

/* Partner Testimonials */
.partner-logo {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    max-height: 60px;
    object-fit: contain;
}
.testimonial-card:hover .partner-logo {
    filter: grayscale(0%);
}

/* CTA Section */
.section.bg-primary {
    background: linear-gradient(90deg, var(--gold) 0%, #ffe066 100%) !important;
    color: var(--navy);
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 8px 32px rgba(35,43,56,0.12);
}
.section.bg-primary h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    font-family: var(--font-main);
}
.section.bg-primary .btn-light {
    background: var(--navy);
    color: var(--gold);
    border: none;
    box-shadow: 0 4px 24px rgba(35,43,56,0.12);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.section.bg-primary .btn-light:hover {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 8px 32px rgba(35,43,56,0.18);
}

/* Section Styles */
.section {
    padding: 60px 0;
}
.section-title {
    color: var(--navy);
    font-weight: 800;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-family: var(--font-main);
}
.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    margin: 0.5rem auto 0 auto;
}
.bg-light {
    background: var(--light-bg) !important;
}

/* Responsive */
@media (max-width: 767px) {
    .hero-title { font-size: 1.7rem; }
    .testimonial-card { min-height: 220px; padding: 1.2rem 0.5rem; }
    .testimonial-image { width: 60px; height: 60px; }
    .section.bg-primary h2 { font-size: 1.3rem; }
} 