/* ==========================================================================
   HOTEL DARSHAN - CRAZY ROYAL LUXURY TESTIMONIALS STYLESHEET
   ========================================================================== */

:root {
    --hd-bg-cream: #FAF8F5;
    --hd-surface: #FFFFFF;
    --hd-dark: #1A1613;
    --hd-muted: #6E685E;
    --hd-gold: #C79A3B;
    --hd-gold-light: #E6CA85;
    --hd-gold-glow: rgba(199, 154, 59, 0.18);
    --hd-border: #E8E2D8;
    --hd-shadow-soft: 0 12px 35px rgba(26, 22, 19, 0.05);
    --hd-shadow-hover: 0 22px 50px rgba(199, 154, 59, 0.2);
    --hd-radius: 20px;
    --hd-font-heading: 'Cormorant Garamond', Georgia, serif;
    --hd-font-body: 'Poppins', 'Manrope', sans-serif;
}

.darshan-testimonials-section {
    position: relative;
    width: 100%;
    background-color: var(--hd-bg-cream);
    color: var(--hd-dark);
    padding: 7rem 0 8rem 0;
    z-index: 5;
    overflow: hidden;
}

/* Background Soft Glows */
.testi-bg-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 154, 59, 0.08) 0%, rgba(250, 248, 245, 0) 70%);
    pointer-events: none;
    z-index: 1;
}
.testi-bg-glow.glow-1 { top: -100px; left: -100px; }
.testi-bg-glow.glow-2 { bottom: -100px; right: -100px; }

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Editorial Section Header */
.testimonials-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3.5rem auto;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonials-badge .badge-line {
    width: 35px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hd-gold), transparent);
}

.testimonials-badge .badge-text {
    font-family: var(--hd-font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--hd-gold);
    text-transform: uppercase;
}

.testimonials-title {
    font-family: var(--hd-font-heading);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--hd-dark);
    margin: 0 0 1.25rem 0;
}

.testimonials-title .title-line { display: block; }
.testimonials-title .italic-gold {
    font-style: italic;
    color: var(--hd-gold);
    background: linear-gradient(135deg, #C79A3B 0%, #A67C2E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-description {
    font-family: var(--hd-font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--hd-muted);
    margin-bottom: 2.25rem;
}

/* Top Summary Bar */
.testimonials-summary-bar {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.8rem 2.25rem;
    background: var(--hd-surface);
    border: 1px solid var(--hd-border);
    border-radius: 100px;
    box-shadow: var(--hd-shadow-soft);
}

.summary-item { display: flex; align-items: center; gap: 0.5rem; }
.summary-stars { color: var(--hd-gold); font-size: 0.95rem; letter-spacing: 2px; }
.summary-score { font-family: var(--hd-font-heading); font-size: 1.25rem; font-weight: 600; color: var(--hd-dark); }
.summary-highlight { font-family: var(--hd-font-heading); font-size: 1.35rem; font-weight: 600; color: var(--hd-gold); }
.summary-label { font-size: 0.8rem; font-weight: 500; color: var(--hd-muted); }
.summary-divider { width: 1px; height: 20px; background-color: var(--hd-border); }
.verified-svg { width: 16px; height: 16px; stroke: var(--hd-gold); }

/* Marquee Track Container */
.testimonials-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0 2.5rem 0;
    cursor: grab;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testimonials-marquee-wrapper:active { cursor: grabbing; }

.testimonials-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    will-change: transform;
}

/* CRAZY LUXURY CARD DESIGN */
.testimonial-card {
    position: relative;
    width: 380px; /* Perfectly proportioned width */
    height: 280px; /* Fixed consistent height */
    flex-shrink: 0;
    padding: 1.75rem;
    border-radius: var(--hd-radius);
    background-color: var(--hd-surface);
    border: 1px solid var(--hd-border);
    box-shadow: var(--hd-shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-sizing: border-box;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--hd-gold);
    box-shadow: var(--hd-shadow-hover);
}

/* Watermark Quote */
.card-quote-watermark {
    position: absolute;
    bottom: -10px;
    right: 15px;
    font-family: var(--hd-font-heading);
    font-size: 7.5rem;
    line-height: 1;
    color: rgba(199, 154, 59, 0.06);
    pointer-events: none;
    font-style: italic;
}

/* Header Row */
.card-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.guest-profile { display: flex; align-items: center; gap: 0.85rem; }

.avatar-frame {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--hd-gold) 0%, var(--hd-border) 100%);
    flex-shrink: 0;
}

.guest-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--hd-bg-cream);
}

.guest-details { display: flex; flex-direction: column; }

.guest-name {
    font-family: var(--hd-font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--hd-dark);
    margin: 0;
    line-height: 1.2;
}

.guest-city {
    font-family: var(--hd-font-body);
    font-size: 0.75rem;
    color: var(--hd-muted);
}

/* Verified Pill */
.verified-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    background: rgba(39, 174, 96, 0.08);
    border: 1px solid rgba(39, 174, 96, 0.25);
    font-size: 0.68rem;
    font-weight: 600;
    color: #27ae60;
}
.pill-svg { width: 11px; height: 11px; stroke: #27ae60; }

/* Rating Row */
.card-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.85rem 0 0.5rem 0;
    z-index: 2;
}

.card-stars { font-size: 0.85rem; letter-spacing: 2px; }
.star-active { color: var(--hd-gold); }
.star-inactive { color: #E0DAD0; }

.stay-type-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--hd-gold);
    background: var(--hd-gold-glow);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

/* Review Body with Multi-line Clamp */
.card-body {
    flex: 1;
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
    z-index: 2;
}

.card-review-text {
    font-family: var(--hd-font-body);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
    color: #4A443C;
    margin: 0;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Card Footer */
.card-footer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(232, 226, 216, 0.7);
    font-size: 0.725rem;
    color: var(--hd-muted);
    z-index: 2;
}

.stay-date { display: inline-flex; align-items: center; gap: 0.35rem; }
.hotel-tag { font-weight: 600; color: var(--hd-gold); }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonial-card { width: 320px; height: 270px; padding: 1.25rem; }
    .testimonials-summary-bar { flex-direction: column; gap: 0.5rem; border-radius: 20px; padding: 1rem; }
    .summary-divider { display: none; }
}