* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F5F2EC;
    /* warm sand */
    color: #1F3D2B;
    overflow-x: hidden;
    line-height: 1.6;
     width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: grid;
}

.section-subhead {
    font-size: 1.25rem;
    color: #6B4F3B;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.fs-2 {
    font-size: 20px !important;
}

.gold-accent {
    color: #C6A75E;
}

.btn-gold {
    background: #C6A75E;
    color: #0F1F17;
    border: none;
    padding: 0.75rem 2.2rem;
    font-weight: 500;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(198, 167, 94, 0.25);
    font-family: 'Poppins', sans-serif;
}

.btn-gold:hover {
    background: #b3924b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(198, 167, 94, 0.35);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: white;
    border-radius: 40px;
    padding: 0.75rem 2.2rem;
    font-weight: 500;
    transition: 0.3s;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #C6A75E;
    color: #fff;
}

section {
    padding: 3rem 0;
}

.bg-soft {
    background-color: #F5F2EC;
}

/* ----- NAVBAR LOGO ----- */
.navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    max-width: 180px;
    /* controls overall logo container size */
    transition: all 0.3s ease;
}

.navbar-brand img {
    width: 100%;
    height: auto;
    max-height: 50px;
    /* optimal height for desktop */
    object-fit: contain;
    transition: all 0.3s ease;
}


/* when navbar becomes solid on scroll */
.navbar-scrolled .navbar-brand img {
    max-height: 60px;
}

/* ----- RESPONSIVE BREAKPOINTS ----- */
@media (min-width: 992px) {
    .navbar-brand {
        max-width: 200px;
    }

    .navbar-brand img {
        max-height: 65px;
    }

    .navbar {
        background-color: #0F1F17 !important;
    }
}

/* Medium devices (tablets, 768px - 991px) */
@media (max-width: 991px) {

    .navbar {
        background-color: #0F1F17 !important;
    }

    .navbar-brand {
        max-width: 160px;
    }

    .navbar-brand img {
        max-height: 45px;
    }

    /* adjust for solid navbar on mobile */
    .navbar-scrolled .navbar-brand img {
        max-height: 50px;
    }
}

/* Small devices (mobile, 576px - 767px) */
@media (max-width: 767px) {
    .navbar {
        background-color: #0F1F17 !important;
    }

    .navbar-brand {
        max-width: 140px;
    }

    .navbar-brand img {
        max-height: 40px;
    }
}

/* Extra small devices (phones, below 576px) */
@media (max-width: 575px) {
    .navbar-brand {
        max-width: 120px;
    }

    .navbar-brand img {
        max-height: 35px;
    }
    
    .hero h1 {
        font-size: 30px;
    }
}


.navbar {
    padding: 1.2rem 2.5rem;
    transition: all 0.4s ease;
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
        background: #0F1F17;
    z-index: 999;
}

.navbar-scrolled {
    background: #0F1F17;
    backdrop-filter: blur(3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 0.7rem 2.5rem;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white !important;
    letter-spacing: 2px;
}

.navbar-brand span {
    color: #C6A75E;
}

.nav-link {
    color: white !important;
    font-weight: 400;
    margin: 0 0.9rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link:hover {
    color: #C6A75E !important;
}

.btn-book-nav {
    background: #C6A75E;
    color: #0F1F17 !important;
    border-radius: 30px;
    padding: 0.5rem 2rem !important;
    font-weight: 600;
}

.btn-book-nav:hover {
    background: #e0c179;
    color: #1F3D2B !important;
}

.navbar-toggler {
    border: none;
    background: transparent;
}

.navbar-toggler i {
    color: white;
    font-size: 2rem;
}

/* ----- CINEMATIC HERO (full screen) ----- */
.hero {
    height: 90vh;
    background: linear-gradient(135deg, rgba(15, 31, 23, 0.7) 0%, rgba(31, 61, 43, 0.5) 100%),
        url('banner2.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 65px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeUp 1s ease-out;
}

.hero p {
    font-size: 22px;
    margin: 2rem 0 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    animation: fadeUp 1s 0.2s both;
}

.hero-buttons {
    animation: fadeUp 1s 0.4s both;
}

.hero-buttons .btn {
    margin: 0 0.75rem;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- MAIN ATTRACTION: DAY-BY-DAY ITINERARY (luxury safari timeline) ---------- */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.itinerary h2 {
    align-items: center !important;
}

/* central gold line (connector) */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #C6A75E 0%, #C6A75E 70%, transparent 100%);
    transform: translateX(-50%);
    opacity: 0.5;
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: white;
    border-radius: 40px;
    padding: 2.5rem;
    box-shadow: 0 25px 45px -15px rgba(31, 61, 43, 0.2);
    border: 1px solid rgba(198, 167, 94, 0.2);
    transition: all 0.4s;
    position: relative;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 55px -15px #6B4F3B40;
    border-color: #C6A75E60;
}

.timeline-image {
    width: 45%;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 50px -20px #1F3D2B;
    height: 340px;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.timeline-image:hover img {
    transform: scale(1.1);
}

.day-badge {
    background: #C6A75E;
    color: #0F1F17;
    font-weight: 600;
    padding: 0.4rem 2rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(198, 167, 94, 0.3);
}


.timeline-content p {
    color: #2b5437;
    line-height: 1.7;
    font-size: 1rem;
}

/* gold decorative connector dots */
.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #C6A75E;
    border: 4px solid #F5F2EC;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 0 3px rgba(198, 167, 94, 0.3);
}

/* responsive timeline */
@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 50px;
        margin-bottom: 4rem;
    }

    .timeline-content,
    .timeline-image {
        width: 100%;
    }

    .timeline-image {
        height: 280px;
        margin-bottom: 1.5rem;
    }

    .timeline-item::after {
        left: 20px;
        top: 30px;
        transform: translate(0, -50%);
    }

    h2 {
        font-size: 2.5rem;
    }
}

/* ----- WHY CHOOSE US (icon cards) ----- */
.icon-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 36px;
    text-align: center;
    box-shadow: 0 20px 35px -8px rgba(31, 61, 43, 0.05);
    transition: 0.3s;
    border: 1px solid rgba(198, 167, 94, 0.15);
    height: 100%;
}

.icon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 50px -15px #6B4F3B40;
}

.icon-card i {
    font-size: 3.2rem;
    color: #C6A75E;
    margin-bottom: 1.3rem;
}

.icon-card h4 {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
}

/* ----- FACT COUNTER (animated) ----- */
.counter-section {
    background: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?ixlib=rb-4.0.3&auto=format&fit=crop&w=2068&q=80') center/cover fixed no-repeat;
    position: relative;
    color: white;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 31, 23, 0.8);
}

.counter-container {
    position: relative;
    z-index: 2;
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-size: 4.2rem;
    font-weight: 700;
    font-family: 'Playfair Display';
    line-height: 1;
    color: #C6A75E;
}

.counter-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ----- LUXURY ENQUIRY FORM ----- */
.form-luxury {
    background: white;
    border-radius: 48px;
    padding: 3rem;
    box-shadow: 0 40px 60px -20px rgba(31, 61, 43, 0.3);
}

.form-control,
.form-select {
    border: 1px solid #e0d6cb;
    border-radius: 60px;
    padding: 10px 1.8rem;
    font-family: 'Poppins';
    background: #F9F7F3;
}

.form-control:focus,
.form-select:focus {
    border-color: #C6A75E;
    box-shadow: 0 0 0 0.2rem rgba(198, 167, 94, 0.25);
}

/* ----- FOOTER DARK ----- */
.footer {
    background: #0F1F17;
    color: #ddd;
    padding: 4rem 0 2rem;
}

.footer a {
    color: #FFF;
    transition: 0.3s;
}

.footer a:hover {
    color: #e6c87c;
    text-decoration: underline;
}

.social-icons i {
    font-size: 1.8rem;
    margin-right: 1.5rem;
    color: #C6A75E;
}

/* ----- MODAL LUXURY ----- */
.modal-content {
    border-radius: 42px;
    background: #F5F2EC;
}

.modal-header {
    border-bottom: 1px solid rgba(198, 167, 94, 0.3);
}

/* ----- FLOATING WHATSAPP ----- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    font-size: 2.7rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background: #20b859;
    transform: scale(1.1);
    color: white;
}






/* ---------- INCLUSIONS & EXCLUSIONS SECTION (hero focus) ---------- */
.inclusion-section {
    background: #F5F2EC;
    position: relative;
}

.inclusion-card {
    background: white;
    border-radius: 48px;
    padding: 3.5rem 3rem;
    height: 100%;
    box-shadow: 0 30px 50px -20px rgba(31, 61, 43, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(198, 167, 94, 0.1);
    position: relative;
    overflow: hidden;
}

.inclusion-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 45px 65px -15px #6B4F3B80;
    border-color: #C6A75E80;
}

/* subtle gold shimmer effect on hover */
.inclusion-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(198, 167, 94, 0.1), transparent);
    transition: left 0.7s;
}

.inclusion-card:hover::after {
    left: 100%;
}

.inclusion-icon {
    font-size: 4rem;
    color: #C6A75E;
    margin-bottom: 2rem;
    text-align: center;
}

.inclusion-title {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    color: #1F3D2B;
    border-bottom: 2px solid #C6A75E40;
    padding-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.inclusion-title i {
    font-size: 2.4rem;
}

.inclusion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusion-list li {
    margin-bottom: 1.4rem;
    font-size: 1.15rem;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-bottom: 1px dashed #e0d6cb;
    padding-bottom: 1rem;
}

.inclusion-list li:last-child {
    border-bottom: none;
}

.inclusion-list i {
    font-size: 1.6rem;
    min-width: 32px;
    text-align: center;
}

.inclusion-list .fa-check-circle {
    color: #2e7d32;
}

.inclusion-list .fa-times-circle {
    color: #b33;
}

.exclusion-card {
    background: white;
    border-radius: 48px;
    padding: 3.5rem 3rem;
    height: 100%;
    box-shadow: 0 30px 50px -20px rgba(31, 61, 43, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(198, 167, 94, 0.1);
    position: relative;
    overflow: hidden;
}

.exclusion-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 45px 65px -15px #6B4F3B80;
    border-color: #C6A75E80;
}

.exclusion-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(198, 167, 94, 0.1), transparent);
    transition: left 0.7s;
}

.exclusion-card:hover::after {
    left: 100%;
}

/* responsive fine-tuning */
@media (max-width: 992px) {
    h2 {
        font-size: 2.5rem;
    }

    .inclusion-card,
    .exclusion-card {
        padding: 2.5rem 2rem;
    }

    .inclusion-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .inclusion-list li {
        font-size: 1rem;
        gap: 12px;
    }

    .inclusion-list i {
        font-size: 1.3rem;
        min-width: 26px;
    }

    .hero h1 {
        font-size: 35px;
    }

    .hero p {
        font-size: 18px;
    }
}








@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        margin-left: 50px;
        margin-bottom: 4rem;
    }
    
    .timeline-content,
    .timeline-image {
        width: 100%;
    }
    
    .timeline-image {
        height: 280px;
        margin-bottom: 1.5rem;
    }
    
    .timeline-item::after {
        left: 20px;
        top: 30px;
        transform: translate(0, -50%);
    }
    
    .inclusion-card,
    .exclusion-card {
        padding: 2.5rem;
    }
    
    .inclusion-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-subhead {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-buttons .btn {
        min-width: 140px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        padding: 1.8rem;
    }
    
    .timeline-content h3 {
        font-size: 1.5rem;
    }
    
    .inclusion-card,
    .exclusion-card {
        padding: 2rem;
    }
    
    .inclusion-title {
        font-size: 1.6rem;
    }
    
    .inclusion-list li {
        font-size: 1rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-label {
        font-size: 0.9rem;
    }
    
    .form-luxury {
        padding: 2rem;
    }
    
    .footer .col-md-3 {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 5px 0;
    }
    
    .timeline-item {
        margin-left: 35px;
    }
    
    .timeline-item::after {
        width: 16px;
        height: 16px;
        left: 15px;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .day-badge {
        font-size: 0.85rem;
        padding: 0.3rem 1.2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    .location {
        font-size: 0.9rem;
    }
    
    .icon-card {
        padding: 1.5rem 1rem;
    }
    
    .icon-card i {
        font-size: 2.5rem;
    }
    
    .icon-card h4 {
        font-size: 1.2rem;
    }
    
    .inclusion-card,
    .exclusion-card {
        padding: 1.5rem;
        border-radius: 30px;
    }
    
    .inclusion-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .inclusion-title {
        font-size: 1.3rem;
        gap: 8px;
    }
    
    .inclusion-list li {
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .inclusion-list i {
        font-size: 1.2rem;
        min-width: 24px;
    }
    
    .form-luxury {
        padding: 1.5rem;
        border-radius: 30px;
    }
    
    .form-control,
    .form-select {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .navbar-brand {
        max-width: 120px;
    }
    
    .navbar-brand img {
        max-height: 35px;
    }
    
    .navbar-toggler i {
        font-size: 1.6rem;
    }
}


/* Mobile View Fix */
@media (max-width:468px){

.hero{
  height: auto;
  min-height: 62vh;
  padding: 100px 10px 50px;
  background-position: center top;
}

.hero h1{
  font-size: 25px;
  line-height: 1.2;
}

.hero p{
  font-size: 14px;
}

}

@media (max-width:468px){
.hero{
  background-position: 60% center;
}
}







/* ----- TESTIMONIALS SECTION (FULLY FIXED) ----- */
.testimonials-section {
    background: #F5F2EC;
    padding: 5rem 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.testimonials-section .section-subhead {
    text-align: center;
    margin-bottom: 3rem;
}

/* Slider Container */
.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Track */
.testimonials-track-container {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

/* Testimonial Card */
.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 40px -15px rgba(31, 61, 43, 0.2);
    border: 1px solid rgba(198, 167, 94, 0.15);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px -15px #6B4F3B60;
    border-color: #C6A75E;
}

/* Quote Icon */
.testimonial-quote {
    color: #C6A75E;
    font-size: 2.5rem;
    opacity: 0.3;
}

/* Rating Stars */
.testimonial-rating {
    color: #C6A75E;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    margin-right: 2px;
}

/* Text */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #1F3D2B;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(198, 167, 94, 0.2);
    padding-top: 1.2rem;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #C6A75E;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #1F3D2B;
}

.author-info p {
    font-size: 0.85rem;
    color: #6B4F3B;
}

/* Navigation Buttons */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid #C6A75E;
    color: #C6A75E;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-nav:hover {
    background: #C6A75E;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
    left: 0;
}

.testimonial-nav.next {
    right: 0;
}

/* Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C6A75E;
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.testimonial-dot.active {
    opacity: 1;
    transform: scale(1.3);
    background: #C6A75E;
}

.testimonial-dot:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonials-slider {
        padding: 0 40px;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-slider {
        padding: 0 35px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ----- TESTIMONIALS READ MORE STYLES ----- */
.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px; /* Fixed minimum height for consistency */
}

.testimonial-text-container {
    flex: 1;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #1F3D2B;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial-read-more {
    background: none;
    border: none;
    color: #C6A75E;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    text-align: left;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    border-bottom: 1px solid transparent;
    align-self: flex-start;
}

.testimonial-read-more:hover {
    color: #b3924b;
    border-bottom-color: #C6A75E;
    transform: translateX(5px);
}

.testimonial-read-more:focus {
    outline: none;
}

/* Ensure consistent card heights on all devices */
@media (max-width: 992px) {
    .testimonial-card {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        min-height: auto;
        min-height: 380px;
    }
    
    .testimonial-read-more {
        font-size: 0.85rem;
    }
}