/**
 * EgyptFun Tour Sharing - Frontend Styles
 * Matches EXACTLY: card.html and fulltour.html templates
 * All classes prefixed with 'efts-' to avoid conflicts
 */

/* ========================================
   CSS VARIABLES (from templates)
   ======================================== */
:root {
    --efts-gold: #c5a059;
    --efts-gold-light: #fdf9f2;
    --efts-gold-hover: #b08d4a;
    --efts-bg: #f8f8f8;
    --efts-bg-single: #fdfbf7;
    --efts-text-main: #222;
    --efts-text-muted: #777;
    --efts-tag-bg: #f5f5f5;
    --efts-border: #ececec;
    --efts-light-blue: #e7f3f3;
    --efts-green: #2ecc71;
    --efts-blue: #1a5f7a;
}

/* ========================================
   WRAPPER & PAGE HEADER
   ======================================== */
.efts-wrapper {
    background-color: var(--efts-bg);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 40px 20px;
    color: var(--efts-text-main);
    min-height: 60vh;
}

.efts-page-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.efts-page-title {
    font-size: 2.5rem;
    color: var(--efts-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.efts-page-subtitle {
    font-size: 1.1rem;
    color: var(--efts-text-muted);
}

/* ========================================
   CARD GRID (card.html)
   ======================================== */
.efts-sharing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.efts-tour-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.efts-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.efts-card-header {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.efts-badge-top {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.efts-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.efts-meta-info {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--efts-gold);
    margin-bottom: 10px;
    font-weight: 500;
}

.efts-meta-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.efts-meta-info i {
    color: var(--efts-gold);
}

.efts-tour-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
    color: var(--efts-text-main);
}

/* ========================================
   DATE SECTION (card.html)
   ======================================== */
.efts-date-section {
    margin-bottom: 18px;
}

.efts-date-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--efts-text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.efts-date-row {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
}

.efts-date-row::-webkit-scrollbar {
    display: none;
}

.efts-date-chip {
    padding: 6px 12px;
    border: 1px solid var(--efts-border);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    min-width: 50px;
    flex-shrink: 0;
}

.efts-date-chip.active {
    border-color: var(--efts-gold);
    background: #fdf9f2;
}

.efts-date-chip:hover {
    border-color: var(--efts-gold);
}

.efts-chip-d {
    font-size: 14px;
    font-weight: 700;
    display: block;
}

.efts-chip-m {
    font-size: 9px;
    color: var(--efts-text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.efts-date-chip.active .efts-chip-m {
    color: var(--efts-gold);
}

/* ========================================
   LOCATIONS (card.html)
   ======================================== */
.efts-locations-section {
    margin-bottom: 20px;
}

.efts-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.efts-location-tag {
    background: var(--efts-tag-bg);
    color: var(--efts-text-muted);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
}

/* ========================================
   GROUP STATUS (card.html)
   ======================================== */
.efts-group-status {
    background: #fcfcfc;
    border: 1px solid var(--efts-border);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 15px;
}

.efts-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.efts-seats-count {
    font-size: 13px;
    font-weight: 700;
}

.efts-urgency-badge {
    font-size: 11px;
    font-weight: 700;
    background: #fff0d4;
    color: #b08d4a;
    padding: 3px 8px;
    border-radius: 6px;
}

.efts-progress-bar {
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.efts-progress-fill {
    height: 100%;
    background: var(--efts-gold);
    transition: 0.5s;
}

.efts-trip-condition {
    font-size: 11px;
    color: var(--efts-text-muted);
    font-style: italic;
    margin-top: 8px;
    display: flex;
    align-items: flex-start;
    gap: 5px;
    line-height: 1.3;
}

.efts-trip-condition i {
    color: var(--efts-gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.efts-going-info {
    font-size: 12px;
    color: var(--efts-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 5px;
    border-top: 1px solid #f0f0f0;
    margin-top: 8px;
}

/* ========================================
   PRICE AREA (card.html)
   ======================================== */
.efts-price-area {
    margin-bottom: 15px;
    margin-top: auto;
}

.efts-price-now {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    display: block;
}

.efts-price-now span {
    font-size: 14px;
    font-weight: 500;
    color: var(--efts-text-muted);
}

.efts-price-full {
    font-size: 13px;
    color: var(--efts-text-muted);
    margin-top: 2px;
}

.efts-price-full b {
    color: var(--efts-gold);
}

/* ========================================
   BUTTON (card.html)
   ======================================== */
.efts-btn-join {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--efts-gold);
    color: #fff;
    text-decoration: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
}

.efts-btn-join:hover {
    background: var(--efts-gold-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

/* ========================================
   SINGLE WRAPPER (fulltour.html)
   ======================================== */
.efts-single-wrapper {
    background-color: var(--efts-bg-single);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--efts-text-main);
    line-height: 1.6;
}

.efts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER & GALLERY (fulltour.html)
   ======================================== */
.efts-tour-header-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 15px;
    margin-top: 30px;
    height: 480px;
}

.efts-gallery-main {
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    height: 100%;
    position: relative;
}

.efts-gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}

.efts-side-item {
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

/* Single page badge */
.efts-single-wrapper .efts-badge-top {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 6px 15px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ========================================
   MAIN LAYOUT (fulltour.html)
   ======================================== */
.efts-main-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    margin-top: 40px;
    padding-bottom: 60px;
}

/* ========================================
   LEFT CONTENT (fulltour.html)
   ======================================== */
.efts-tour-content .efts-tour-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin: 0 0 15px 0;
    color: var(--efts-blue);
}

.efts-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.efts-stars {
    color: #ffc107;
    font-size: 14px;
    letter-spacing: 2px;
}

.efts-rev-count {
    color: var(--efts-text-muted);
    font-size: 13px;
    font-weight: 500;
}

.efts-quick-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.efts-q-badge {
    background: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.efts-q-badge i {
    color: var(--efts-gold);
}

.efts-section-title {
    font-size: 24px;
    font-weight: 800;
    margin: 45px 0 25px;
    color: var(--efts-blue);
}

.efts-location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.efts-l-tag {
    background: #f4f5f6;
    color: var(--efts-text-muted);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.efts-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.efts-check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.efts-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #444;
}

.efts-check-item i {
    color: var(--efts-green);
    margin-top: 4px;
}

/* ========================================
   FAQ (fulltour.html)
   ======================================== */


/* ========================================
   SIDEBAR / BOOKING (fulltour.html)
   ======================================== */
.efts-sticky-sidebar {
    position: sticky;
    top: 100px;
}

.efts-booking-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

.efts-price-display {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.efts-price-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--efts-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.efts-price-main {
    font-size: 34px;
    font-weight: 900;
    margin: 5px 0;
    color: var(--efts-text-main);
}

.efts-price-main span {
    font-size: 16px;
    font-weight: 500;
    color: var(--efts-text-muted);
}

.efts-price-discount-info {
    font-size: 13px;
    color: var(--efts-text-muted);
    font-weight: 500;
}

.efts-price-discount-info b {
    color: var(--efts-blue);
}

/* ========================================
   DATE GRID (fulltour.html)
   ======================================== */
.efts-date-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 15px 0 25px 0;
}

.efts-date-option {
    border: 1.5px solid #eee;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.efts-date-option.active {
    border-color: var(--efts-gold);
    background: var(--efts-gold-light);
}

.efts-date-option:hover {
    border-color: var(--efts-gold);
}

.efts-opt-d {
    font-size: 20px;
    font-weight: 800;
    display: block;
}

.efts-opt-m {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--efts-text-muted);
    font-weight: 700;
}

/* ========================================
   GROUP BOX (fulltour.html)
   ======================================== */
.efts-group-box {
    background: #fafafa;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #f0f0f0;
}

.efts-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.efts-seats-left {
    font-size: 14px;
    font-weight: 800;
}

.efts-urgency-label {
    background: #fff0d4;
    color: #b08d4a;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
}

.efts-progress-wrap {
    height: 8px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.efts-progress-wrap .efts-progress-bar {
    height: 100%;
    background: var(--efts-gold);
    transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.efts-who-is-there {
    font-size: 12px;
    color: var(--efts-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.efts-no-prepay {
    text-align: center;
    font-size: 12px;
    color: var(--efts-text-muted);
    margin-top: 15px;
    font-weight: 500;
}

/* ========================================
   MODAL V2 - SITE STYLED
   ======================================== */
.efts-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.efts-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(3px);
}

.efts-modal-content {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 16px;
    z-index: 100000;
    max-height: calc(100vh - 40px);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.efts-modal-v2 .efts-modal-header {
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--c-deep-blue, #0e4d56) 0%, #0a3a42 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.efts-modal-v2 .efts-modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
}

.efts-modal-subtitle {
    display: none;
}

.efts-modal-v2 .efts-modal-close {
    background: rgba(255,255,255,0.1);
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.efts-modal-v2 .efts-modal-close:hover {
    background: rgba(255,255,255,0.2);
}

.efts-modal-v2 .efts-modal-body {
    padding: 16px;
}

/* Form Date Info */
.efts-form-date-info {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.efts-form-date-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.efts-form-date-row span {
    color: #666;
}

.efts-form-date-row i {
    color: var(--c-gold, #c5a059);
}

.efts-form-date-row strong {
    color: var(--c-deep-blue, #0e4d56);
}

/* Form Rows */
.efts-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.efts-form-group {
    margin-bottom: 10px;
}

.efts-form-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: var(--c-deep-blue, #0e4d56);
    font-size: 0.8rem;
}

.efts-form-group label i {
    color: var(--c-gold, #c5a059);
    margin-right: 4px;
    width: 14px;
}

.efts-form-group input,
.efts-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e8e4dc;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.2s;
}

.efts-form-group input:focus,
.efts-form-group textarea:focus {
    outline: none;
    border-color: var(--c-gold, #c5a059);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.efts-form-group textarea {
    resize: none;
    min-height: 50px;
}

/* Total Price */
.efts-form-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: linear-gradient(135deg, rgba(197,160,89,0.1) 0%, rgba(197,160,89,0.05) 100%);
    border-radius: 10px;
    margin-bottom: 12px;
}

.efts-form-total span {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.efts-form-total strong {
    font-size: 1.3rem;
    color: var(--c-deep-blue, #0e4d56);
}

/* Submit Button */
.efts-btn-submit {
    width: 100%;
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--c-gold, #c5a059) 0%, #d4af37 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.efts-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

.efts-btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Form Note */
.efts-form-note {
    text-align: center;
    font-size: 0.75rem;
    color: #888;
    margin: 10px 0 0;
}

.efts-form-note i {
    color: #10b981;
    margin-right: 4px;
}

/* Message */
.efts-form-message {
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: none;
    font-size: 0.9rem;
}

.efts-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.efts-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive */
@media (max-width: 600px) {
    .efts-modal {
        padding: 10px;
    }
    
    .efts-modal-content {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .efts-modal-v2 .efts-modal-header {
        border-radius: 12px 12px 0 0;
    }
    
    .efts-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .efts-form-date-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .efts-modal-v2 .efts-modal-body {
        padding: 15px;
    }
    
    .efts-form-group {
        margin-bottom: 12px;
    }
}

/* ========================================
   MOBILE BOOKING CARD
   ======================================== */
.efts-mobile-booking {
    display: none;
    margin: 20px 0;
}

@media (max-width: 900px) {
    .efts-mobile-booking {
        display: block;
    }
    
    /* Hide sidebar on mobile */
    .sidebar#sidebar-container {
        display: none;
    }
}

/* ========================================
   LIGHTBOX GALLERY
   ======================================== */
.efts-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: eftsLightboxFadeIn 0.3s forwards;
}

@keyframes eftsLightboxFadeIn {
    to { opacity: 1; }
}

.efts-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1;
}

.efts-lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.efts-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.efts-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.efts-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.efts-lightbox-prev,
.efts-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.efts-lightbox-prev {
    left: 20px;
}

.efts-lightbox-next {
    right: 20px;
}

.efts-lightbox-prev:hover,
.efts-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.efts-lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .efts-lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .efts-lightbox-prev,
    .efts-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .efts-lightbox-prev {
        left: 10px;
    }
    
    .efts-lightbox-next {
        right: 10px;
    }
    
    .efts-lightbox-content {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .efts-lightbox-content img {
        max-height: 85vh;
    }
    
    .efts-lightbox-counter {
        bottom: 20px;
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* ========================================
   NO TOURS MESSAGE
   ======================================== */
.efts-no-tours {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 15px;
}

.efts-no-tours p {
    font-size: 18px;
    color: var(--efts-text-muted);
}

/* ========================================
   RESPONSIVE (from templates)
   ======================================== */
@media (max-width: 1024px) {
    .efts-sharing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .efts-tour-header-grid,
    .efts-main-layout,
    .efts-check-list {
        grid-template-columns: 1fr;
    }
    
    .efts-tour-header-grid {
        height: auto;
    }
    
    .efts-gallery-main {
        height: 300px;
    }
    
    .efts-gallery-side {
        display: none;
    }
    
    .efts-tour-content .efts-tour-title {
        font-size: 32px;
    }
    
    .efts-sticky-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .efts-sharing-grid {
        grid-template-columns: 1fr;
    }
    
    .efts-page-title {
        font-size: 2rem;
    }
}

/* ========================================
   IMPROVED GALLERY GRID
   ======================================== */
.efts-gallery-improved {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto 30px;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

.efts-gallery-main-img {
    grid-row: 1 / 3;
    grid-column: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.3s;
}

.efts-gallery-main-img:hover {
    transform: scale(1.02);
}

.efts-gallery-thumb {
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.3s, opacity 0.3s;
}

.efts-gallery-thumb:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.efts-gallery-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
}

.efts-show-all {
    position: relative;
    cursor: pointer;
}

.efts-show-all-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: background 0.3s;
}

.efts-show-all:hover .efts-show-all-overlay {
    background: rgba(0, 0, 0, 0.8);
}

/* ========================================
   LIGHTBOX MODAL
   ======================================== */
.efts-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.efts-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: zoom-out;
}

.efts-lightbox-content {
    position: relative;
    z-index: 10002;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.efts-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.efts-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10003;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.efts-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.efts-lightbox-prev,
.efts-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10003;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.efts-lightbox-prev:hover,
.efts-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.efts-lightbox-prev {
    left: 20px;
}

.efts-lightbox-next {
    right: 20px;
}

.efts-lightbox-counter {
    color: #fff;
    font-size: 16px;
    margin-top: 15px;
    font-weight: 600;
}

/* ========================================
   RESPONSIVE GALLERY
   ======================================== */
@media (max-width: 1024px) {
    .efts-gallery-improved {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .efts-gallery-improved {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 150px 150px;
        height: auto;
    }
    
    .efts-gallery-main-img {
        grid-column: 1 / 3;
        grid-row: 1;
    }
    
    .efts-lightbox-prev,
    .efts-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .efts-lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
}

/* ========================================
   BREADCRUMBS - LEFT ALIGNED, BROWN/BEIGE
   ======================================== */
.efts-breadcrumbs {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 12px 0;
    font-size: 13px;
    color: #8b7355;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.efts-breadcrumbs a {
    color: #a08060;
    text-decoration: none;
    transition: color 0.2s;
}

.efts-breadcrumbs a:hover {
    color: #d4af37;
    text-decoration: underline;
}

.efts-breadcrumb-sep {
    margin: 0 10px;
    color: #c4b39a;
    font-size: 11px;
}

.efts-breadcrumb-current {
    color: #5a4a3a;
    font-weight: 600;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================
   SINGLE PAGE SPACING
   ======================================== */
.efts-single-wrapper {
    background-color: var(--efts-bg-single);
    padding: 30px 20px 40px;
    min-height: 60vh;
}

.efts-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Gallery top spacing */
.efts-gallery-improved {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .efts-breadcrumbs {
        font-size: 12px;
        padding: 10px 0;
        margin-bottom: 15px;
    }
    
    .efts-breadcrumb-sep {
        margin: 0 6px;
        font-size: 10px;
    }
    
    .efts-breadcrumb-current {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .efts-breadcrumbs {
        font-size: 11px;
        padding: 8px 0;
    }
    
    .efts-breadcrumb-sep {
        margin: 0 5px;
    }
    
    .efts-breadcrumb-current {
        max-width: 120px;
    }
}

/* ========================================
   FAQ ACCORDION STYLES
   ======================================== */





@keyframes efts-fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* FAQ Question wrapper */

/* ========================================













/* Responsive */
@media (max-width: 768px) {
    .efts-accordion-header {
        padding: 15px;
    }
    
    .efts-accordion-title {
        font-size: 14px;
        padding-right: 15px;
    }
    
    .efts-accordion-body {
        padding: 0 15px 15px 15px;
        font-size: 14px;
    }
    
    .efts-accordion-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .efts-faq-accordion {
        gap: 10px;
    }
    
    .efts-accordion-header {
        padding: 12px;
    }
    
    .efts-accordion-title {
        font-size: 13px;
    }
    
    .efts-accordion-body {
        font-size: 13px;
    }
}
/* =========================================
   FAQ SECTION - STYLED LIKE MAIN THEME
   ========================================= */
.efts-faq-section { 
    background: #f9f7f4;
    padding: 40px 20px;
    border-radius: 15px;
    margin-top: 40px;
}

.efts-faq-grid { 
    max-width: 800px; 
    margin: 25px auto 0; 
}

.efts-faq-item { 
    border-bottom: 1px solid #eee; 
}

.efts-faq-question {
    padding: 20px 0; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    font-size: 1.1rem; 
    font-weight: 600; 
    color: #1a4d7a;
    transition: color 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.efts-faq-question:hover { 
    color: #d4af37;
}

.efts-faq-answer {
    max-height: 0; 
    overflow: hidden; 
    color: #666; 
    font-size: 0.95rem; 
    padding-right: 20px;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding-top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease-in;
}

.efts-faq-item.active .efts-faq-answer { 
    max-height: 1000px; 
    padding-top: 10px;
    padding-bottom: 20px; 
    opacity: 1;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                padding-top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s ease-out;
}

.efts-faq-icon { 
    color: #d4af37;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.efts-faq-item.active .efts-faq-icon { 
    transform: rotate(45deg); 
}

/* Responsive */
@media (max-width: 768px) {
    .efts-faq-section {
        padding: 30px 15px;
        margin-top: 30px;
    }
    
    .efts-faq-question {
        font-size: 1rem;
        padding: 15px 0;
    }
    
    .efts-faq-answer {
        font-size: 0.9rem;
    }
}
/* =========================================
   THEMED SECTION STYLES - FROM MAIN THEME
   ========================================= */

/* Section Titles - Centered with gold underline */
.efts-section-title {
    text-align: center;
    margin: 40px 0 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: var(--f-heading, 'Playfair Display', serif);
    color: #1a4d7a;
    font-weight: 700;
    position: relative;
}

.efts-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin: 15px auto 0;
}

/* Info Card - White background with shadow */
.efts-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 24px rgba(14, 77, 86, 0.06);
}

/* Quick Badges Styling */
.efts-quick-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.efts-q-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a4d7a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.efts-q-badge svg,
.efts-q-badge i {
    color: #d4af37;
}

/* Location Tags */
.efts-location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.efts-l-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #f9f7f4;
    border: 1px solid #e8e4dc;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #1a4d7a;
    font-weight: 600;
}

/* Check List (Included Items) */
.efts-check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-top: 15px;
}

.efts-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.efts-check-item svg,
.efts-check-item i {
    color: #0b6b4b;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Description Block */
.efts-description {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 24px rgba(14, 77, 86, 0.06);
    line-height: 1.8;
    color: #333;
}

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

.efts-description p:last-child {
    margin-bottom: 0;
}

/* Rating Row */
.efts-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
    font-size: 0.95rem;
}

.efts-stars {
    color: #d4af37;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.efts-rev-count {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .efts-section-title {
        font-size: 1.75rem;
        margin: 30px 0 20px 0;
    }
    
    .efts-section-title::after {
        margin-top: 12px;
    }
    
    .efts-info-card,
    .efts-description {
        padding: 20px;
        border-radius: 14px;
    }
    
    .efts-quick-badges {
        gap: 10px;
    }
    
    .efts-q-badge {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .efts-check-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .efts-section-title {
        font-size: 1.5rem;
    }
    
    .efts-info-card,
    .efts-description {
        padding: 18px;
    }
}
/* =========================================
   AESTHETIC BLOCKS - COMPLETE RESTYLE
   ========================================= */

/* Main Wrapper */
.efts-single-wrapper {
    background: linear-gradient(180deg, #f9f7f4 0%, #ffffff 100%);
    padding-bottom: 60px;
}

.efts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tour Title */
.efts-tour-title {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    color: #1a4d7a;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

/* Rating Row */
.efts-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 20px 0;
    padding: 12px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.06);
    width: fit-content;
}

.efts-stars {
    color: #d4af37;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.efts-rev-count {
    color: #666;
    font-size: 0.9rem;
}

/* Quick Badges - Card Style */
.efts-quick-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 16px rgba(14, 77, 86, 0.05);
}

.efts-q-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #f9f7f4 0%, #fff 100%);
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a4d7a;
    transition: transform 0.2s, box-shadow 0.2s;
}

.efts-q-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.efts-q-badge svg,
.efts-q-badge i {
    color: #d4af37;
    width: 20px;
    height: 20px;
}

/* Section Titles - With Gold Underline */
.efts-section-title {
    text-align: center;
    margin: 45px 0 25px 0;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    color: #1a4d7a;
    font-weight: 700;
    position: relative;
    display: block;
}

.efts-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #e8c547);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Location Tags - Card Style */
.efts-location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 16px rgba(14, 77, 86, 0.05);
}

.efts-l-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #1a4d7a 0%, #2a6090 100%);
    border-radius: 25px;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    transition: transform 0.2s;
}

.efts-l-tag:hover {
    transform: scale(1.05);
}

/* Description Block */
.efts-description {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    margin: 25px 0;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 16px rgba(14, 77, 86, 0.05);
    line-height: 1.9;
    color: #444;
    font-size: 1rem;
}

.efts-description p {
    margin-bottom: 16px;
}

.efts-description p:last-child {
    margin-bottom: 0;
}

/* Check List (Included Items) - Card Style */
.efts-check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 16px rgba(14, 77, 86, 0.05);
}

.efts-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
    border-radius: 10px;
    border: 1px solid #d1fae5;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
    transition: transform 0.2s;
}

.efts-check-item:hover {
    transform: translateX(4px);
}

.efts-check-item svg,
.efts-check-item i {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
}

/* FAQ Section */
.efts-faq-section {
    background: linear-gradient(135deg, #fefbf6 0%, #fff 100%);
    padding: 35px 25px;
    border-radius: 16px;
    margin-top: 40px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 16px rgba(14, 77, 86, 0.05);
}

.efts-faq-section .efts-section-title {
    margin-top: 0;
    margin-bottom: 25px;
}

.efts-faq-grid {
    max-width: 700px;
    margin: 0 auto;
}

.efts-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #e8e4dc;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.efts-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.efts-faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #1a4d7a;
    transition: background 0.2s, color 0.2s;
}

.efts-faq-question:hover {
    background: #fefbf6;
    color: #d4af37;
}

.efts-faq-icon {
    color: #d4af37;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.efts-faq-item.active .efts-faq-icon {
    transform: rotate(45deg);
}

.efts-faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #555;
    font-size: 0.95rem;
    padding: 0 20px;
    opacity: 0;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    line-height: 1.7;
}

.efts-faq-item.active .efts-faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .efts-tour-title {
        font-size: 1.75rem;
    }
    
    .efts-section-title {
        font-size: 1.5rem;
        margin: 35px 0 20px 0;
    }
    
    .efts-quick-badges,
    .efts-location-tags,
    .efts-check-list,
    .efts-description {
        padding: 18px;
    }
    
    .efts-check-list {
        grid-template-columns: 1fr;
    }
    
    .efts-faq-section {
        padding: 25px 18px;
    }
    
    .efts-q-badge {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .efts-tour-title {
        font-size: 1.5rem;
    }
    
    .efts-section-title {
        font-size: 1.35rem;
    }
    
    .efts-quick-badges,
    .efts-location-tags,
    .efts-check-list,
    .efts-description {
        padding: 15px;
        border-radius: 12px;
    }
    
    .efts-check-item {
        padding: 10px 12px;
    }
}

/* ========================================
   THEME INTEGRATION STYLES
   Uses theme's CSS classes with enhanced styling
   ======================================== */

/* Date Selection Enhancement */
.efts-date-option {
    transition: all 0.3s ease !important;
}

.efts-date-option:hover {
    border-color: var(--c-gold, #c5a059) !important;
    transform: translateY(-2px);
}

.efts-date-option.efts-active {
    border-color: var(--c-gold, #c5a059) !important;
    background: rgba(197, 160, 89, 0.1) !important;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
}

/* FAQ Section Inline - for single page */
.faq-section.faq-section-inline {
    background: var(--c-sand-bg, #fdfbf7);
    padding: 30px;
    border-radius: 16px;
    margin-top: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 16px rgba(14, 77, 86, 0.05);
}

.faq-section.faq-section-inline .faq-grid {
    max-width: 100%;
    margin: 0;
}

/* Tour badge overlay for gallery */
.tour-badge-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 6px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: var(--c-gold, #c5a059);
    z-index: 2;
}

/* Booking Info Box Enhancement */
.booking-info-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--c-sand-bg, #fdfbf7);
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-info-box .booking-info-icon {
    color: var(--c-gold, #c5a059);
    flex-shrink: 0;
}

.booking-info-box .booking-info-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* Tour excluded items styling */
.tour-feature-item.excluded i {
    color: #ef4444 !important;
}

/* Responsive for theme-integrated page */
@media (max-width: 900px) {
    .faq-section.faq-section-inline {
        padding: 25px 20px;
        margin-top: 25px;
    }
    
    .efts-date-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .efts-date-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .faq-section.faq-section-inline {
        padding: 20px 15px;
    }
}

/* ========================================
   CONVERSION-OPTIMIZED BOOKING CARD V2
   ======================================== */

.efts-booking-card-v2 {
    background: var(--c-white, #fff);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 50px rgba(14, 77, 86, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.efts-booking-card-v2 .booking-header {
    background: linear-gradient(135deg, var(--c-deep-blue, #0e4d56) 0%, #0a3a42 100%);
    padding: 20px;
    border-bottom: none;
}

.efts-booking-card-v2 .booking-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.efts-booking-card-v2 .booking-title {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
}

.efts-urgency-sticker {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    animation: pulse-urgency 2s infinite;
}

.efts-urgency-sticker i {
    margin-right: 5px;
}

@keyframes pulse-urgency {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Price Hero Section */
.efts-price-hero {
    padding: 20px;
    background: linear-gradient(135deg, #fdfbf7 0%, #fff 100%);
    border-bottom: 1px solid #f0f0f0;
}

.efts-price-current {
    margin-bottom: 12px;
}

.efts-price-label-sm {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-gold, #c5a059);
    font-weight: 700;
    margin-bottom: 5px;
}

.efts-price-main-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.efts-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--c-deep-blue, #0e4d56);
    line-height: 1;
}

.efts-price-per {
    font-size: 1rem;
    color: #888;
    font-weight: 500;
}

.efts-price-target-block {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e8f8f5;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #d1f2eb;
}

.efts-price-target-block i {
    color: #10b981;
    font-size: 1.1rem;
}

.efts-price-target-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.efts-price-target-info span {
    font-size: 0.75rem;
    color: #666;
}

.efts-price-target-info strong {
    font-size: 1.1rem;
    color: #059669;
    font-weight: 700;
}

/* Trust Badges */
.efts-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.efts-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f9f9f9;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #555;
    font-weight: 600;
    white-space: nowrap;
}

.efts-trust-badge i {
    color: var(--c-gold, #c5a059);
    font-size: 0.8rem;
}

/* Dates Block */
.efts-dates-block {
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.efts-block-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-deep-blue, #0e4d56);
    margin-bottom: 12px;
}

.efts-block-label i {
    color: var(--c-gold, #c5a059);
}

.efts-date-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.efts-date-card {
    position: relative;
    padding: 12px 8px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.efts-date-card:hover {
    border-color: var(--c-gold, #c5a059);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
}

.efts-date-card.active {
    border-color: var(--c-gold, #c5a059);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(197, 160, 89, 0.05) 100%);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.25);
}

.efts-date-weekday {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
    margin-bottom: 2px;
}

.efts-date-day {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--c-deep-blue, #0e4d56);
    line-height: 1.2;
}

.efts-date-month {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #666;
    font-weight: 600;
}

.efts-date-hot {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-fire 1.5s infinite;
}

.efts-date-hot i {
    color: #fff;
    font-size: 0.6rem;
}

@keyframes pulse-fire {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

/* Group Progress */
.efts-group-progress {
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.efts-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.efts-progress-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--c-deep-blue, #0e4d56);
}

.efts-progress-title i {
    color: var(--c-gold, #c5a059);
}

.efts-urgency-tag {
    background: linear-gradient(135deg, #fff0d4 0%, #ffe8c0 100%);
    color: #b08d4a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.efts-progress-bar-wrap {
    height: 10px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.efts-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--c-gold, #c5a059) 0%, #deb962 100%);
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.efts-who-goes {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
}

.efts-who-goes i {
    color: #10b981;
}

/* CTA Button */
.efts-cta-button {
    margin: 20px;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--c-gold, #c5a059) 0%, #d4af37 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.35);
}

.efts-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.45);
}

.efts-cta-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.efts-cta-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Security Row */
.efts-security-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 20px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.efts-security-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #666;
}

.efts-security-item i {
    color: #10b981;
    font-size: 0.85rem;
}

/* Info Tip */
.efts-info-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%);
    font-size: 0.8rem;
    color: #555;
    line-height: 1.5;
}

.efts-info-tip i {
    color: #3b82f6;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .efts-date-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .efts-price-amount {
        font-size: 2rem;
    }
    
    .efts-trust-badges {
        justify-content: center;
    }
    
    .efts-security-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .efts-date-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .efts-cta-button {
        margin: 15px;
    }
}

/* ========================================
   COMPACT BOOKING CARD - SITE STYLE
   ======================================== */

.efts-card-compact {
    background: var(--c-white, #fff);
    border-radius: var(--radius, 16px);
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Header */
.efts-compact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--c-sand-dark, #e8e4dc);
}

.efts-compact-header h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-deep-blue, #0e4d56);
}

.efts-compact-badge {
    background: #e8f8f5;
    color: #27ae60;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Price */
.efts-compact-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.efts-compact-price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.efts-compact-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c-deep-blue, #0e4d56);
    line-height: 1;
}

.efts-compact-per {
    font-size: 0.9rem;
    color: #888;
}

.efts-compact-price-target {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #666;
}

.efts-compact-price-target i {
    color: #10b981;
}

.efts-compact-price-target strong {
    color: #059669;
}

/* Dates */
.efts-compact-dates {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.efts-compact-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-deep-blue, #0e4d56);
    white-space: nowrap;
}

.efts-compact-label i {
    color: var(--c-gold, #c5a059);
    margin-right: 4px;
}

.efts-compact-date-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    flex: 1;
}

.efts-compact-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    background: #f9f9f9;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 48px;
}

.efts-compact-date:hover {
    border-color: var(--c-gold, #c5a059);
}

.efts-compact-date.active {
    background: rgba(197, 160, 89, 0.12);
    border-color: var(--c-gold, #c5a059);
}

.efts-cd-day {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-deep-blue, #0e4d56);
    line-height: 1;
}

.efts-cd-month {
    font-size: 0.65rem;
    color: #888;
    text-transform: lowercase;
}

/* Progress */
.efts-compact-progress {
    background: #f9f9f9;
    padding: 12px;
    border-radius: 10px;
}

.efts-compact-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.efts-compact-progress-info > span:first-child {
    font-weight: 600;
    color: var(--c-deep-blue, #0e4d56);
}

.efts-compact-progress-info i {
    color: var(--c-gold, #c5a059);
    margin-right: 5px;
}

.efts-compact-urgency {
    background: #fff0d4;
    color: #b08d4a;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

.efts-compact-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.efts-compact-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--c-gold, #c5a059), #d4af37);
    border-radius: 6px;
    transition: width 0.5s ease;
}

.efts-compact-members {
    font-size: 0.75rem;
    color: #888;
    margin-top: 8px;
}

.efts-compact-members.efts-no-members {
    color: #aaa;
    font-style: italic;
}

/* CTA */
.efts-compact-cta {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--c-gold, #c5a059) 0%, #d4af37 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.efts-compact-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

/* Trust */
.efts-compact-trust {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.efts-compact-trust span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: #888;
}

.efts-compact-trust i {
    color: #10b981;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .efts-compact-dates {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .efts-compact-date-row {
        width: 100%;
        justify-content: flex-start;
    }
}
