/* ==========================================================================
TESTIMONIALS SECTION LAYOUT ENGINE (testimonials.css)
========================================================================== */

/* Typography Overrides & Layout Utilities */
.section-subtitle {
display: block;
font-size: 13px;
font-weight: 700;
color: var(--gold);
letter-spacing: 1.5px;
text-transform: uppercase;
margin-bottom: 12px;
}

.gold-text {
color: var(--gold) !important;
}

.testimonial-section-title {
font-size: 38px;
font-weight: 800;
line-height: 1.25;
color: var(--text-dark);
margin-bottom: 20px;
letter-spacing: -0.5px;
}

.section-header-centered {
text-align: center;
max-width: 700px;
margin: 0 auto 56px;
}

.section-intro {
font-size: 16px;
color: var(--text-gray);
line-height: 1.6;
}

/* 1. Testimonial Hero Banner (Matching ratings tablet background in testimonial_2.jpg) */
.testimonial-hero {
position: relative;
background: linear-gradient(rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.88)),
url('https://images.unsplash.com/photo-1450133064473-71024230f91b?auto=format&fit=crop&w=1600&q=80') no-repeat center center / cover;
padding: 135px 0 115px;
color: var(--white);
}

.testimonial-hero-content {
max-width: 680px;
}

.testimonial-hero-content .hero-title {
font-size: 46px;
font-weight: 800;
line-height: 1.15;
color: var(--white);
margin-bottom: 20px;
letter-spacing: -0.8px;
}

.testimonial-hero-content .hero-desc {
font-size: 16.5px;
color: #E5E7EB;
line-height: 1.6;
}

/* 2. Experience Testimonials Cards Grid (Perfect mapping of cards in testimonial_2.jpg) */
.experiences-section {
padding: 90px 0;
background-color: var(--white);
}

.experiences-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.experience-card {
background-color: var(--white);
border: 1px solid var(--border-light);
border-radius: 20px;
padding: 24px;
box-shadow: 0 4px 20px rgba(0,0,0,0.01);
display: flex;
flex-direction: column;
justify-content: space-between;
transition: all 0.3s ease;
}

.experience-card:hover {
transform: translateY(-5px);
border-color: rgba(194, 155, 98, 0.25);
box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}

.video-thumbnail-box {
position: relative;
border-radius: 12px;
overflow: hidden;
height: 190px;
margin-bottom: 18px;
}

.video-thumbnail-box .thumb-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.play-icon-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 50px;
height: 50px;
background-color: rgba(255, 255, 255, 0.95);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
border: none;
cursor: pointer;
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
transition: all 0.2s ease;
}

.play-icon-overlay i {
color: var(--navy);
font-size: 14px;
margin-left: 3px;
}

.experience-card:hover .play-icon-overlay {
background-color: var(--gold);
}

.experience-card:hover .play-icon-overlay i {
color: var(--white);
}

.rating-bar {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 14px;
}

.google-tag {
display: flex;
align-items: center;
gap: 6px;
font-size: 14px;
font-weight: 700;
color: #4285F4;
}

.rating-bar .stars {
display: flex;
gap: 3px;
color: #FBBF24;
font-size: 12px;
}

.testimonial-comment {
font-size: 15px;
color: var(--text-gray);
line-height: 1.55;
margin-bottom: 24px;
font-style: italic;
flex-grow: 1;
}

.author-info-row {
display: flex;
align-items: center;
gap: 14px;
padding-top: 18px;
border-top: 1px solid var(--border-light);
}

.author-avatar {
width: 44px;
height: 44px;
border-radius: 50%;
object-fit: cover;
}

.author-meta h4 {
font-size: 15px;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 2px;
}

.author-meta p {
font-size: 12px;
color: var(--text-gray);
font-weight: 600;
}

/* 3. Why Stay With RBA Split Row Section */
.why-stay-section {
padding: 90px 0;
background-color: #F9FAFB;
border-top: 1px solid var(--border-light);
}

.why-stay-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: center;
}

.rounded-media-img {
width: 100%;
height: 480px;
object-fit: cover;
border-radius: 28px;
display: block;
}

.why-stay-content .why-stay-intro {
font-size: 16px;
color: var(--text-gray);
line-height: 1.6;
margin-bottom: 28px;
}

.why-stay-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 16px;
}

.why-stay-list li {
display: flex;
align-items: flex-start;
gap: 14px;
font-size: 15.5px;
font-weight: 600;
color: var(--text-dark);
}

.why-stay-list li i {
color: var(--gold);
font-size: 20px;
margin-top: 2px;
flex-shrink: 0;
}

/* 4. Large Success Video Block */
.success-stories {
padding: 100px 0;
background-color: var(--white);
}

.success-stories-grid {
display: grid;
grid-template-columns: 0.9fr 1.1fr;
gap: 60px;
align-items: center;
}

.success-stories-content .success-intro {
font-size: 16px;
color: var(--text-gray);
line-height: 1.65;
margin-bottom: 32px;
}

.success-video-card {
position: relative;
border-radius: 24px;
overflow: hidden;
height: 380px;
box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.success-video-thumb {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.success-play-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
background-color: rgba(255, 255, 255, 0.95);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
transition: transform 0.3s ease, background-color 0.3s ease;
}

.success-play-overlay i {
color: var(--navy);
font-size: 22px;
margin-left: 5px;
}

.success-video-card:hover .success-play-overlay {
background-color: var(--gold);
transform: translate(-50%, -50%) scale(1.08);
}

.success-video-card:hover .success-play-overlay i {
color: var(--white);
}

/* 5. Brand Logos Section (Direct transition to footer) */
.testimonial-brands {
padding: 70px 0;
background-color: #F9FAFB;
border-top: 1px solid var(--border-light);
border-bottom: 1px solid var(--border-light);
text-align: center;
}

.testimonial-brands h4 {
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
color: var(--text-gray);
letter-spacing: 1.5px;
margin-bottom: 30px;
}

.brands-row {
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
flex-wrap: wrap;
}

.brand-item {
font-family: var(--font-heading);
font-size: 18px;
font-weight: 800;
color: #9CA3AF;
letter-spacing: 2px;
}

.brand-separator {
width: 1px;
height: 24px;
background-color: var(--border-light);
}

/* Header image adjustments */
.logo span {
font-family: var(--font-heading);
color: var(--gold);
font-weight: 800;
font-size: 24px;
letter-spacing: 0.5px;
}

.logo img {
height: 38px;
width: auto;
}

/* ==========================================================================
RESPONSIVE DESIGN SYSTEM OVERRIDES
========================================================================== */
@media (max-width: 1199px) {
.experiences-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 991px) {
.why-stay-grid,
.success-stories-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.why-stay-media,
.success-stories-video {
    order: -1;
}

.rounded-media-img {
    height: 360px;
}

.brand-separator {
    display: none;
}

.brands-row {
    gap: 24px;
}


}

@media (max-width: 768px) {
.testimonial-hero {
padding: 90px 0;
}
.testimonial-hero-content .hero-title {
font-size: 34px;
}
.testimonial-section-title {
font-size: 28px;
}
.experiences-grid {
grid-template-columns: 1fr;
}
}