/* ============================================================
   NEW UI STYLES FOR HOLIDAY TRAVEL
   ============================================================ */

/* Tour Videos Section styling */
.tour-videos-section {
    padding: 80px 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.video-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.video-section-header .section-title-new {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.video-section-header .section-title-new::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0f6cbf, #2563eb);
    margin: 12px auto 0;
    border-radius: 2px;
}

.video-section-header .section-subtitle-new {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Video Card New styling */
.video-card-new {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid #f1f5f9;
}

.video-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    border-color: rgba(37, 99, 235, 0.15);
}

/* Responsive iframe wrapper (16:9 Aspect Ratio) */
.video-ratio-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000000;
}

.video-ratio-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Video details inside card */
.video-card-info-new {
    padding: 20px;
}

.video-card-title-new {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.video-card-new:hover .video-card-title-new {
    color: #0f6cbf;
}

.video-card-tag-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.video-card-new:hover .video-card-tag-new {
    background: #ef4444;
    color: #ffffff;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .tour-videos-section {
        padding: 60px 0;
    }

    .video-section-header .section-title-new {
        font-size: 2.1rem;
    }
}

/* Video Filter buttons styling */
.video-filters-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.btn-filter-new {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.btn-filter-new:hover {
    color: #0f6cbf;
    border-color: #0f6cbf;
    background-color: rgba(15, 108, 191, 0.02);
    transform: translateY(-1px);
}

.btn-filter-new.active {
    color: #ffffff;
    background: linear-gradient(135deg, #0f6cbf 0%, #2563eb 100%);
    border-color: #0f6cbf;
    box-shadow: 0 4px 15px rgba(15, 108, 191, 0.25);
}

/* Category Badge inside Card */
.video-card-badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Video Wrapper for new page */
.videos-gallery-wrapper {
    background-color: #f8fafc;
    padding: 60px 0 85px;
}

/* Filter animations */
@keyframes fadeInUpVideo {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-item-col {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.video-item-col.show-anim {
    animation: fadeInUpVideo 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* ============================================================
   TESTIMONIALS PAGE STYLES
   ============================================================ */

.testimonials-wrapper {
    background-color: #f8fafc;
    padding: 60px 0 80px;
}

/* Spotlight Card (Featured Review) */
.testimonial-spotlight-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    margin-bottom: 50px;
    position: relative;
    padding: 40px;
}

.testimonial-spotlight-card::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 8rem;
    color: rgba(15, 108, 191, 0.04);
    pointer-events: none;
}

.spotlight-avatar-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #0f6cbf, #ffb703);
    box-shadow: 0 8px 20px rgba(15, 108, 191, 0.2);
    margin: 0 auto 20px;
}

.spotlight-avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

/* Filter buttons for testimonials */
.testimonial-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Unique Grid Testimonial Card */
.testimonial-card-unique {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.03);
    padding: 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-card-unique::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3.5rem;
    color: rgba(15, 108, 191, 0.03);
    pointer-events: none;
    transition: all 0.4s ease;
}

.testimonial-card-unique:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 108, 191, 0.15);
}

.testimonial-card-unique:hover::before {
    color: rgba(15, 108, 191, 0.07);
    transform: scale(1.1);
}

/* Star ratings */
.rating-stars-new {
    color: #ffb703;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

/* Testimonial user info */
.testimonial-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.testimonial-user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: border-color 0.3s;
}

.testimonial-card-unique:hover .testimonial-user-avatar {
    border-color: #0f6cbf;
}

.testimonial-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-user-details h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.testimonial-user-details span {
    font-size: 0.78rem;
    color: #64748b;
    display: block;
}

.testimonial-user-details .destination-tag {
    color: #0f6cbf;
    font-weight: 600;
}

/* Verification Badge */
.verified-tag-new {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

/* Form Styles */
.testimonial-form-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.testimonial-form-card {
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

/* Interactive Star Rating Selection */
.star-rating-select {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6px;
    font-size: 1.8rem;
}

.star-rating-select input {
    display: none;
}

.star-rating-select label {
    color: #cbd5e1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating-select input:checked~label,
.star-rating-select label:hover,
.star-rating-select label:hover~label {
    color: #ffb703;
}

/* Input Fields styling */
.testimonial-form-card .form-control,
.testimonial-form-card .form-select {
    border-radius: 10px;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    transition: all 0.3s;
}

.testimonial-form-card .form-control:focus,
.testimonial-form-card .form-select:focus {
    border-color: #0f6cbf;
    box-shadow: 0 0 0 4px rgba(15, 108, 191, 0.08);
}

.testimonial-form-card .btn-submit-review {
    background: linear-gradient(135deg, #0f6cbf 0%, #0a4d8a 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 14px 30px;
    border: none;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(15, 108, 191, 0.2);
}

.testimonial-form-card .btn-submit-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 108, 191, 0.3);
}

/* Animation trigger class for testimonials */
.testimonial-item-col {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.testimonial-item-col.show-anim {
    animation: fadeInUpVideo 0.55s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@media (max-width: 767px) {
    .testimonial-spotlight-card {
        padding: 30px 20px;
    }

    .testimonial-form-card {
        padding: 30px 20px;
    }
}

/* Google Review Badge & Icon */
.google-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #475569;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.google-icon-color {
    background: linear-gradient(135deg, #4285F4 0%, #EA4335 30%, #FBBC05 60%, #34A853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Premium Travel Review Form CSS */
.premium-feedback-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
}

.form-group-premium {
    margin-bottom: 20px;
}

.form-label-premium {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
    display: inline-block;
}

.premium-input,
.premium-select,
.premium-textarea {
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    font-size: 0.95rem !important;
    color: #1e293b !important;
    background-color: #f8fafc !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.premium-input:focus,
.premium-select:focus,
.premium-textarea:focus {
    border-color: #0f6cbf !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(15, 108, 191, 0.08) !important;
    outline: none !important;
}

/* Premium Custom File Upload Styling */
.premium-file-upload-wrap {
    position: relative;
    width: 100%;
}

.premium-file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.premium-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 24px;
    background-color: #f8fafc;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    margin-bottom: 0;
}

.premium-file-label span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.premium-file-input:hover+.premium-file-label {
    border-color: #0f6cbf;
    background-color: rgba(15, 108, 191, 0.02);
}

/* Review Submit Button */
.btn-premium-submit {
    background: linear-gradient(135deg, #0f6cbf 0%, #0a4d8a 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 14px 40px;
    border: none;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(15, 108, 191, 0.2);
}

.btn-premium-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 108, 191, 0.3);
    color: #ffffff;
}

@media (max-width: 767px) {
    .premium-feedback-card {
        padding: 25px 20px;
    }
}

/* Sticky Sidebar Form styling to reduce scrolling */
.sticky-sidebar-form {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    z-index: 10;
}

@media (max-width: 991px) {
    .sticky-sidebar-form {
        position: static;
        margin-top: 40px;
    }
}


/* feedback */


/* Premium Form Styling */
.feedback-card {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.form-input-premium {
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: var(--ink);
}

.form-input-premium:focus {
    border-color: var(--blue);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(2, 86, 238, 0.1);
    outline: none;
}

.form-label-premium {
    font-weight: 600;
    color: #475569;
    font-size: 0.88rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label-premium i {
    color: var(--blue);
}

.file-upload-box {
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
    padding: 12px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.file-upload-box:hover {
    border-color: var(--blue);
    background: #ffffff;
}