/* ========================================
   Seniors Hive - Main Stylesheet
   ======================================== */

/* Variables */
:root {
    --primary-color: #1a9a9a;
    --primary-dark: #148585;
    --secondary-color: #f5a623;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #888888;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    padding: 10px 0;
    box-shadow: none;
    background: var(--white) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 65px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 12px 40px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
    margin: 0 8px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    background: linear-gradient(135deg, #1a9a9a 0%, #148585 100%);
    padding: 50px 0 40px;
    padding-top: 140px; /* Account for fixed navbar */
}

.page-header .page-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
}

/* ========================================
   Video Hero Section
   ======================================== */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.video-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.video-hero-content h1 {
    color: #ffffff;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .video-hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .video-hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .video-hero {
        height: 60vh;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    padding: 120px 0 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('../images/slider-bg.jpg') no-repeat center bottom;
    background-size: cover;
}

.hero-section .container {
    position: static;
    z-index: 3;
}

.hero-section .row {
    min-height: calc(100vh - 120px);
    align-items: center;
}


.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.app-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
}

.download-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.store-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--text-dark);
    border-radius: 6px;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.store-icon:hover {
    background: var(--primary-color);
    color: var(--white);
}

.app-download-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-download-link:hover {
    transform: translateY(-3px);
}

.download-btn-img {
    max-width: 350px;
    height: auto;
}

.hero-image {
    position: absolute;
    bottom: 0;
    right: 5%;
    z-index: 2;
    text-align: right;
}

.hero-image img {
    max-height: 85vh;
    object-fit: contain;
    vertical-align: bottom;
    display: block;
}

/* ========================================
   Stats Section
   ======================================== */
.stats-section {
    padding: 80px 0;
    background: #e0f7f7;
}

.video-container {
    position: relative;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.stats-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-left: 40px;
}

.stat-item {
    margin-bottom: 20px;
    text-align: center;
    width: 75%;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a9a9a;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.stat-label {
    display: block;
    width: 100%;
    padding: 10px 30px;
    border: 2px solid #1a9a9a;
    border-radius: 5px;
    font-size: 1.15rem;
    color: var(--text-dark);
    background: transparent;
    letter-spacing: 1px;
    text-align: center;
}

/* ========================================
   Section Separator
   ======================================== */
.section-separator {
    height: 20px;
    background: var(--white);
}

/* ========================================
   Section Title
   ======================================== */
.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
    position: relative;
}

/* ========================================
   Team Section
   ======================================== */
.team-section {
    padding: 80px 0;
    background: #e0f7f7;
}

.team-grid {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
}

.member-card {
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    padding: 15px 15px 20px;
    text-align: center;
}

.member-img {
    height: 280px;
    overflow: hidden;
    margin-bottom: 15px;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.member-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.member-role {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin: 0;
}

.btn-learn-more {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-learn-more:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   Sessions Section
   ======================================== */
.sessions-section {
    padding: 80px 0;
    background: #e0f7f7;
}

/* Session Date Tabs */
.session-date-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.date-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 90px;
}

.date-tab:hover {
    background: rgba(26, 154, 154, 0.1);
}

.date-tab.active {
    background: var(--primary-color);
    color: var(--white);
}

.date-tab .date-day {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.8;
}

.date-tab .date-label {
    font-size: 1.1rem;
    font-weight: 700;
}

.date-tab.active .date-day,
.date-tab.active .date-label {
    color: var(--white);
}

/* No Sessions / Loading States */
.no-sessions,
.sessions-loading {
    text-align: center;
    padding: 40px 20px;
    border: 2px dashed var(--primary-color);
    border-radius: 20px;
    max-width: 80%;
    margin: 0 auto;
}

.no-sessions p,
.sessions-loading p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.sessions-list {
    max-width: 80%;
    margin: 0 auto;
}

.session-card {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    margin-bottom: 25px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
    min-height: 100px;
}

.session-instructor {
    display: flex;
    align-items: center;
    min-width: 280px;
    position: relative;
}

.session-instructor img {
    width: 100px;
    height: 110px;
    object-fit: cover;
    object-position: top;
    margin-right: 15px;
    border-radius: 8px;
}

.instructor-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.instructor-info p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
}

.session-details {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.session-details h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.session-time {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0;
}

.session-price {
    min-width: 100px;
    text-align: right;
}

.badge-free {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: 80px 0;
    background: #e0f7f7;
}

.testimonials-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 25px 25px 0;
    flex: 0 0 calc(33.333% - 20px);
    max-width: 380px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial-content {
    flex: 1;
}

.quote-icon {
    width: 40px;
    height: auto;
    margin-bottom: 15px;
    display: block;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 10px;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-media {
    position: relative;
    margin: 0 -25px;
    text-align: center;
}

.testimonial-media img {
    width: 100%;
    max-width: 250px;
    display: block;
    margin: 0 auto;
}

.play-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ddd;
}

.play-btn i {
    font-size: 0.8rem;
    color: var(--text-dark);
}

.play-btn span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.play-btn:hover {
    background: var(--white);
    transform: scale(1.05);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

/* ========================================
   Download App Section
   ======================================== */
.download-section {
    padding: 60px 0;
    background: #e0f7f7;
}

.download-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.download-mobile {
    flex: 0 0 auto;
}

.download-mobile img {
    max-width: 220px;
    height: auto;
}

.download-info {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.download-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.download-info p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.store-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.store-btn:hover img {
    transform: scale(1.05);
}

.download-qr {
    flex: 0 0 auto;
    text-align: center;
}

.download-qr img {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
}

.download-qr p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 50px 0 40px;
    background: #e0f7f7;
}

.contact-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.contact-form .form-control {
    padding: 14px 16px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 0.95rem;
    background: var(--white);
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form .form-control:focus {
    border-color: var(--primary-dark);
    box-shadow: none;
    outline: none;
    background: var(--white);
}

.contact-form .form-control::placeholder {
    color: #888;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 100px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.1rem;
    border: none;
    margin-top: 15px;
    transition: all 0.3s ease;
    min-width: 320px;
}

.btn-submit:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.contact-info {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0;
    border-top: none;
}

.contact-info p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin: 0;
}

.contact-info p a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info p a:hover {
    color: var(--primary-color);
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Contact Page Specific */
.contact-page {
    padding-top: 80px;
}

/* Captcha Styles */
.captcha-group {
    margin-top: 10px;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.captcha-image {
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    height: 50px;
}

.refresh-captcha {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0;
}

.refresh-captcha:hover {
    color: var(--primary-dark);
}

.captcha-input {
    max-width: 200px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: url('../images/footer-bg.jpg') repeat-x left top;
    background-size: auto 100%;
    padding: 60px 0 20px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-company p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.footer-links h5,
.footer-social h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 6px;
}

.footer-links ul li a {
    font-size: 1rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-social-row {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
}

.footer-social-row h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: none;
}

.footer-bottom p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   Founding Team Section (About Us Page)
   ======================================== */
.founding-team-section {
    padding: 50px 0 40px;
    background: var(--white);
}

.founding-team-section .container {
    max-width: 900px;
}

.founding-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: center;
}

.founder-card {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.founder-image {
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
}

.founder-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    border: 1px solid var(--primary-color);
}

.founder-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 15px;
    margin-bottom: 5px;
}

.founder-role {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
}

.founder-bio {
    flex: 1;
    padding-top: 20px;
}

.founder-bio p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.read-more-link {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: var(--primary-dark);
}

/* Team Section White Variant (About Us Page) */
.team-section-white {
    background: var(--white);
    padding-top: 30px;
}

.team-section-white .section-title {
    font-size: 2rem;
}

/* ========================================
   Travel Section (Travel Page)
   ======================================== */
.travel-section {
    padding: 50px 0 80px;
    background: var(--white);
}

.travel-section .container {
    max-width: 900px;
}

.travel-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: left;
}

.travel-card {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.travel-image {
    flex: 0 0 280px;
    width: 280px;
}

.travel-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.travel-content {
    flex: 1;
}

.travel-destination {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.travel-destination a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.travel-destination a:hover {
    color: var(--secondary-color);
}

.travel-dates {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.travel-itinerary {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

.itinerary-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.itinerary-day {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.itinerary-desc {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 10px;
}

.travel-separator {
    height: 1px;
    background: var(--primary-color);
    margin: 20px 0;
}

/* ========================================
   Recent Travels Section
   ======================================== */
.recent-travels-section {
    padding: 60px 0;
    background: #fff;
}

.recent-travels-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.recent-travels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.recent-travel-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recent-travel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.recent-travel-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.recent-travel-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.recent-travel-title {
    padding: 15px 20px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-align: center;
}

@media (max-width: 768px) {
    .recent-travels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .recent-travels-section .section-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   Travel Testimonials Section
   ======================================== */
.travel-testimonials-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.travel-testimonials-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.travel-testimonials-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 10px 0 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.travel-testimonials-carousel::-webkit-scrollbar {
    height: 6px;
}

.travel-testimonials-carousel::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 3px;
}

.travel-testimonials-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.travel-testimonial-card {
    flex: 0 0 calc(25% - 19px);
    min-width: 220px;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.travel-testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 130%;
    border-radius: 10px;
    overflow: hidden;
    background: #ddd;
}

.testimonial-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-thumbnail .thumbnail-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ccc;
    font-size: 3rem;
    color: #999;
}

.testimonial-thumbnail .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.travel-testimonial-card:hover .play-overlay {
    opacity: 1;
}

.testimonial-thumbnail .play-overlay i {
    font-size: 4rem;
    color: #fff;
}

.testimonial-name {
    text-align: center;
    margin-top: 12px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Travel Video Modal */
.travel-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.travel-video-modal.active {
    display: flex;
}

.travel-video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
}

.travel-video-modal-content iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.travel-video-modal .close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.travel-video-modal .close-modal:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .travel-testimonial-card {
        flex: 0 0 calc(33.333% - 17px);
    }
}

@media (max-width: 768px) {
    .travel-testimonial-card {
        flex: 0 0 calc(50% - 13px);
    }

    .travel-testimonials-section .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .travel-testimonial-card {
        flex: 0 0 80%;
        min-width: 200px;
    }

    .travel-video-modal-content {
        width: 95%;
    }

    .travel-video-modal .close-modal {
        top: -35px;
        right: 5px;
        font-size: 1.8rem;
    }

    .recent-travel-title {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
}

/* ========================================
   Travel Detail Page
   ======================================== */
.travel-detail-section {
    padding: 50px 0 80px;
    background: var(--white);
}

.travel-detail-header {
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--secondary-color);
}

.travel-detail-banner {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.travel-detail-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.travel-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 30px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.travel-detail-content {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.travel-detail-image img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.travel-detail-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.travel-detail-description h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 15px;
}

.travel-detail-description p {
    margin-bottom: 15px;
}

.travel-detail-description .travel-dates {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 991px) {
    /* Remove nav link underline on mobile */
    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
        margin: 0;
    }

    .hero-section {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        text-align: left;
        margin-bottom: 40px;
    }

    .hero-text {
        margin: 0 0 30px;
    }

    .app-download-link {
        display: inline-block;
    }

    .hero-image {
        text-align: center;
    }

    .hero-image img {
        max-height: 400px;
    }

    .video-placeholder {
        min-height: 280px;
        margin-bottom: 30px;
    }

    .download-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .download-mobile {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .download-info {
        flex: 0 0 60%;
    }

    .download-qr {
        flex: 0 0 30%;
    }

    .stats-container {
        padding-left: 0;
        margin-top: 30px;
        align-items: center;
    }

    .stat-item {
        text-align: center;
        width: 100%;
    }

    .sessions-list {
        max-width: 100%;
    }

    .session-date-tabs {
        gap: 10px;
        margin-bottom: 30px;
    }

    .date-tab {
        padding: 10px 18px;
        min-width: 75px;
    }

    .date-tab .date-day {
        font-size: 0.7rem;
    }

    .date-tab .date-label {
        font-size: 0.95rem;
    }

    .no-sessions,
    .sessions-loading {
        max-width: 100%;
    }

    .session-card {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        padding: 15px;
    }

    .session-instructor {
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 90px;
        margin-right: 15px;
    }

    .session-instructor img {
        width: 60px;
        height: 70px;
        margin-right: 0;
        margin-bottom: 8px;
    }

    .instructor-info h5 {
        font-size: 0.75rem;
    }

    .instructor-info p {
        font-size: 0.65rem;
    }

    .session-details {
        text-align: center;
        padding: 0 10px;
        flex: 1;
    }

    .session-details h4 {
        font-size: 1.1rem;
    }

    .session-time {
        font-size: 0.95rem;
    }

    .session-price {
        min-width: auto;
    }

    .badge-free {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 0.9rem;
    }

    .app-download-btn {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .download-label {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .download-content {
        flex-direction: column;
        text-align: center;
    }

    .download-mobile {
        order: 1;
    }

    .download-info {
        order: 2;
    }

    .download-qr {
        order: 3;
    }

    .download-mobile img {
        max-width: 180px;
    }

    .download-info h3 {
        font-size: 1.6rem;
    }

    .download-qr img {
        width: 120px;
        height: 120px;
    }

    .contact-section .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 0 15px;
    }

    .contact-info {
        padding: 0 15px;
    }

    .contact-info .row {
        gap: 15px;
    }

    .contact-info .col-md-6.text-md-end {
        text-align: left !important;
    }

    .founding-team-section {
        padding: 40px 0 30px;
    }

    .founder-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .founder-image {
        width: 200px;
    }

    .founder-image img {
    }

    .founder-bio {
        padding-top: 0;
    }

    .team-section-white {
        padding-top: 20px;
    }

    .travel-section {
        padding: 40px 0 60px;
    }

    .travel-card {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .travel-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
    }

    .travel-image img {
        height: 200px;
    }

    .travel-content {
        text-align: left;
    }

    .travel-destination {
        font-size: 1.8rem;
    }

    .travel-section .section-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .travel-dates {
        font-size: 1.1rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
        max-width: 400px;
    }

    .footer .row {
        text-align: center;
    }

    .footer-company,
    .footer-links {
        margin-bottom: 30px;
    }

    .footer-company p {
        text-align: center;
    }

    .footer-links h5 {
        text-align: center;
    }

    .footer-links ul {
        text-align: center;
    }

    .footer-social-row {
        margin-top: 15px;
    }

    .team-grid {
        justify-content: center;
    }

    .team-member {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .member-img {
        height: 200px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }

    .session-date-tabs {
        gap: 8px;
        margin-bottom: 25px;
    }

    .date-tab {
        padding: 8px 12px;
        min-width: 60px;
        border-radius: 10px;
    }

    .date-tab .date-day {
        font-size: 0.65rem;
    }

    .date-tab .date-label {
        font-size: 0.85rem;
    }

    .team-grid {
        gap: 15px;
        justify-content: center;
    }

    .team-member {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .member-card {
        border-radius: 15px;
        padding: 10px 10px 15px;
    }

    .member-img {
        height: 160px;
    }

    .member-name {
        font-size: 0.8rem;
    }

    .member-role {
        font-size: 0.7rem;
    }

    .session-card {
        padding: 10px;
        border-radius: 15px;
    }

    .session-instructor {
        min-width: 75px;
        margin-right: 10px;
    }

    .session-instructor img {
        width: 50px;
        height: 60px;
    }

    .instructor-info h5 {
        font-size: 0.7rem;
    }

    .instructor-info p {
        font-size: 0.6rem;
    }

    .session-details h4 {
        font-size: 1rem;
    }

    .session-time {
        font-size: 0.85rem;
    }

    .badge-free {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .testimonials-grid {
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px 20px 0;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-media {
        margin: 0 -20px;
    }

    .badge-free {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .contact-section {
        padding: 40px 0 30px;
    }

    .contact-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

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

    .contact-form label {
        font-size: 0.85rem;
    }

    .contact-form .form-control {
        font-size: 0.85rem;
        padding: 12px 14px;
    }

    .btn-submit {
        padding: 14px 50px;
        font-size: 1rem;
        min-width: 200px;
    }

    .contact-info {
        margin-top: 30px;
    }

    .contact-info p {
        font-size: 0.85rem;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
    }

    .footer-bottom {
        padding-top: 20px;
        margin-top: 20px;
    }

    .travel-section {
        padding: 40px 0 50px;
    }

    .travel-image {
        max-width: 100%;
    }

    .travel-image img {
        height: 180px;
    }

    .travel-destination {
        font-size: 1.5rem;
    }

    .travel-dates {
        font-size: 1rem;
    }

    .itinerary-title {
        font-size: 1rem;
    }

    .itinerary-desc {
        font-size: 0.9rem;
    }
}
