/**
 * Tabora Boys Secondary School - Homepage Styles
 * Updated: Khaki + Gold palette
 */

/* --- Hero Section --- */
.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide.active {
    opacity: 1;
    z-index: 2;
    animation: kenBurns 10s linear forwards;
}

.hero-slideshow .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(61, 46, 24, 0.75), rgba(61, 46, 24, 0.45));
    z-index: 3;
}

/* Hero Content — split layout for 3D logo */
.hero-content-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 0 20px;
    max-width: 1300px;
    width: 100%;
}

.hero-text-layers {
    flex: 1;
    text-align: left;
    color: var(--white);
}

.hero-3d-container {
    flex: 0 0 380px;
    height: 380px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-3d-container canvas {
    width: 100% !important;
    height: 100% !important;
    border-radius: 20px;
}

.hero-3d-fallback {
    width: 280px;
    height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(212, 160, 23, 0.5));
    animation: logoPulse 3s ease-in-out infinite;
}

.hero-badge {
    background: var(--gold-primary);
    color: var(--khaki-dark);
    padding: 8px 25px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: var(--h1-size);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    word-break: break-word;
}

.hero-motto {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold-soft);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 650px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-glass {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--white-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--white);
}

.btn-hero-glass.primary {
    background: var(--gold-primary);
    color: var(--khaki-dark);
    border-color: var(--gold-primary);
}

.btn-hero-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 160, 23, 0.3);
    border-color: var(--gold-primary);
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

.arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
    margin: -5px;
    animation: scrollArrows 2s infinite;
}

.arrows span:nth-child(2) { animation-delay: 0.2s; }
.arrows span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

@keyframes scrollArrows {
    0% { opacity: 0; transform: rotate(45deg) translate(-10px, -10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}

/* --- Quick Actions --- */
.quick-actions {
    margin-top: -80px;
    position: relative;
    z-index: 15;
    padding-bottom: 80px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.action-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border-bottom: 5px solid var(--gold-primary);
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(60, 46, 24, 0.15);
}

.card-icon {
    font-size: 3rem;
    color: var(--khaki-primary);
    margin-bottom: 1.5rem;
}

.action-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--khaki-primary);
}

.action-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-card {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    color: var(--khaki-primary);
    border: 2px solid var(--khaki-primary);
    transition: var(--transition-smooth);
}

.btn-card:hover {
    background: var(--khaki-primary);
    color: var(--white);
}

.stats-section {
    background: var(--khaki-primary);
    padding: 100px 0;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--white-glass);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.stat-icon {
    margin-top: 20px;
    font-size: 1.5rem;
    opacity: 0.3;
}

/* --- Why Choose Section --- */
.why-choose-section {
    padding: 120px 0;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.premium-card {
    position: relative;
    padding: 50px 40px;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(60, 46, 24, 0.12);
}

.card-glass-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.05) 0%, rgba(92, 75, 44, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.premium-card:hover .card-glass-bg {
    opacity: 1;
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--khaki-primary);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.premium-card:hover .card-icon-wrapper {
    background: var(--gold-primary);
    transform: rotateY(360deg);
}

/* --- Legacy Section --- */
.legacy-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--white), var(--light-bg));
    position: relative;
    z-index: 2;
}

.legacy-image-wrapper {
    position: relative;
    padding-right: 25px;
    padding-bottom: 25px;
}

.main-legacy-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.legacy-image-wrapper:hover .main-legacy-img {
    transform: scale(1.02);
}

.floating-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-soft));
    color: var(--khaki-dark);
    padding: 24px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 5;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.floating-badge .year {
    display: block;
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 1px;
}

.floating-badge .text {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mini-timeline {
    position: relative;
    padding-left: 20px;
    margin: 35px 0;
    border-left: 2px dashed rgba(212, 160, 23, 0.4);
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding-left: 15px;
    transition: var(--transition-smooth);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--khaki-primary);
    border: 3px solid var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-primary);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover::before {
    background: var(--gold-primary);
    transform: scale(1.3);
}

.timeline-year {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gold-primary);
    min-width: 70px;
    line-height: 1.2;
}

.timeline-text {
    flex-grow: 1;
}

.timeline-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--khaki-primary);
    margin-bottom: 0.3rem;
}

.timeline-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.btn-legacy {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--khaki-primary), var(--khaki-soft));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid var(--khaki-primary);
    box-shadow: 0 5px 15px rgba(92, 75, 44, 0.25);
}

.btn-legacy:hover {
    background: transparent;
    color: var(--khaki-primary);
    border-color: var(--khaki-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(92, 75, 44, 0.35);
}

.btn-legacy i {
    transition: transform 0.3s ease;
}

.btn-legacy:hover i {
    transform: translateX(5px);
}


/* --- Results Preview --- */
.results-preview-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.result-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-top: 4px solid var(--khaki-primary);
    border-left: 1px solid rgba(0, 0, 0, 0.02);
    border-right: 1px solid rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(92, 75, 44, 0.05);
    border-top-color: var(--gold-primary);
}

.result-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.result-card-header i {
    font-size: 1.7rem;
    color: var(--gold-primary);
    filter: drop-shadow(0 0 5px rgba(212, 160, 23, 0.3));
}

.result-card-header h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--khaki-primary);
    margin-bottom: 0;
}

.btn-result-link {
    display: inline-flex;
    align-items: center;
    color: var(--khaki-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    margin-top: 1.5rem;
    transition: var(--transition-smooth);
}

.btn-result-link i {
    transition: transform 0.3s ease;
}

.btn-result-link:hover {
    color: var(--gold-primary);
}

.btn-result-link:hover i {
    transform: translateX(5px);
}


/* --- News Preview --- */
.news-preview-section {
    padding: 120px 0;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.news-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    color: var(--khaki-primary);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    padding: 10px 24px;
    border-radius: 30px;
    border: 2px solid var(--khaki-primary);
    font-size: 0.9rem;
}

.btn-view-all:hover {
    background: var(--khaki-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(92, 75, 44, 0.2);
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: var(--transition-smooth);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--khaki-primary);
}

.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover img {
    transform: scale(1.06);
    opacity: 0.9;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--khaki-primary), var(--khaki-soft));
    color: rgba(255, 255, 255, 0.15);
    font-size: 4rem;
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold-primary);
    color: var(--khaki-dark);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 750;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
    z-index: 3;
}

.news-card.featured .card-img-wrapper {
    height: 380px;
}

.news-card.featured .card-content {
    padding: 35px;
}

.news-card.featured .card-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--khaki-primary);
    margin: 10px 0 15px;
    line-height: 1.3;
    transition: var(--transition-smooth);
}

.news-card.featured:hover .card-content h3 {
    color: var(--gold-primary);
}

.news-card.featured .read-more {
    display: inline-flex;
    align-items: center;
    background: var(--khaki-primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(92, 75, 44, 0.2);
}

.news-card.featured .read-more:hover {
    background: var(--gold-primary);
    color: var(--khaki-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 160, 23, 0.35);
}

.news-card.featured {
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.news-card.featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 5px 15px rgba(212, 160, 23, 0.08);
    border-color: rgba(212, 160, 23, 0.2);
}

/* Sidebar News Cards */
.news-card.horizontal {
    display: flex;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    height: 120px;
}

.news-card.horizontal:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    border-color: rgba(212, 160, 23, 0.2);
}

.news-card.horizontal .card-img-wrapper {
    width: 120px;
    min-width: 120px;
    height: 100%;
}

.news-card.horizontal .card-content {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.news-card.horizontal .card-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.news-card.horizontal h4 {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 6px;
    color: var(--khaki-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: var(--transition-smooth);
}

.news-card.horizontal:hover h4 {
    color: var(--gold-primary);
}

.news-card.horizontal .link-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--khaki-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.news-card.horizontal .link-more:hover {
    color: var(--gold-primary);
}


/* --- Admissions CTA --- */
.admissions-cta-section {
    position: relative;
    z-index: 2;
    padding: 150px 0;
    background: url('/static/core/img/cta-bg.jpg') center/cover fixed;
    color: var(--white);
    text-align: center;
}

.admissions-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(61, 46, 24, 0.88);
}

.cta-panel {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
}

.cta-panel h2 {
    font-size: var(--h2-size);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-panel p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 3rem;
}

.btn-cta-premium {
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.btn-cta-premium.gold {
    background: var(--gold-primary);
    color: var(--khaki-dark);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-cta-premium.gold:hover {
    background: var(--gold-soft);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.5);
}

.btn-cta-premium.glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
}

.btn-cta-premium.glass:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    border-color: var(--white);
}


/* --- Gallery Preview --- */
.gallery-preview-section {
    padding: 120px 0;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    aspect-ratio: 1.1;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(61, 46, 24, 0.9) 10%, rgba(61, 46, 24, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-item:hover .img-overlay {
    opacity: 1;
}

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

.gallery-caption {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}


/* --- Testimonials --- */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2a1f0e 0%, var(--khaki-dark) 40%, var(--khaki-primary) 100%);
    color: var(--white);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.testimonials-section .section-title-premium {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.testimonials-section .section-title-premium::after {
    background: var(--gold-primary);
}

.testimonials-section .section-subtitle {
    color: rgba(255,255,255,0.85);
}

.testimonials-slider-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.testimonials-slider {
    display: flex;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    padding: 15px;
    box-sizing: border-box;
}

.card-glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 50px 60px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.quote-icon {
    font-size: 2.8rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    opacity: 0.7;
    filter: drop-shadow(0 0 10px rgba(212, 160, 23, 0.4));
}

.testimonial-text {
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.97);
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
}

.author-info span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--gold-primary);
    transform: scale(1.3);
    box-shadow: 0 0 12px var(--gold-primary);
}



