/* ================================================
   SHEHANA SPA — Custom Pages Stylesheet (Light Mode)
   Matching theme design tokens from main-style.css
   ================================================ */

/* ── GLOBAL TEXT SAFETY — prevent invisible text on light pages ── */
.tg-page-wrapper h1,
.tg-page-wrapper h2,
.tg-page-wrapper h3,
.tg-page-wrapper h4,
.tg-page-wrapper h5 {
    color: var(--black, #111111);
}

.tg-page-wrapper p,
.tg-page-wrapper li,
.tg-page-wrapper span:not(.trip-card-status):not(.product-badge):not(.in-stock-badge):not(.tg-section-label):not(.tg-page-hero-badge) {
    color: var(--text, #111111);
}

/* Muted helper overrides */
.tg-page-wrapper .muted,
.tg-page-wrapper label,
.tg-page-wrapper .trip-card-meta,
.tg-page-wrapper .trip-card-rating .count,
.tg-page-wrapper .tg-privacy-toc a,
.tg-page-wrapper .tg-privacy-section p,
.tg-page-wrapper .tg-privacy-section li,
.tg-page-wrapper .tg-timeline-content p,
.tg-page-wrapper .tg-about-text p,
.tg-page-wrapper .tg-value-card p,
.tg-page-wrapper .tg-complaint-notice p,
.tg-page-wrapper .tg-complaint-step p,
.tg-page-wrapper .tg-store-subtitle,
.tg-page-wrapper .tg-contact-form-wrapper>p,
.tg-page-wrapper .tg-section-desc,
.tg-page-wrapper .tg-page-hero-subtitle {
    color: var(--text-muted, #757575) !important;
}

/* Green accents must stay green */
.tg-page-wrapper .tg-section-label,
.tg-page-wrapper .tg-about-stat .num,
.tg-page-wrapper .tg-about-image-badge .num,
.tg-page-wrapper .tg-value-icon,
.tg-page-wrapper .trip-card-price strong,
.tg-page-wrapper .tg-timeline-year {
    color: var(--green, #00aa6c) !important;
}


/* ── PAGE HERO ── */
.tg-page-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f0faf5 0%, #e6f7f1 50%, #fafff8 100%);
    border-bottom: 1px solid var(--border, #ebebeb);
}

.tg-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 10% 50%, rgba(0, 170, 108, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 90% 30%, rgba(0, 170, 108, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Decorative dots pattern */
.tg-page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 170, 108, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.6;
}

.tg-page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.06;
}

.tg-page-hero-overlay {
    display: none;
    /* Not needed in light mode */
}

.tg-page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 140px 20px 60px;
}

.tg-page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-light, #e6f7f1);
    border: 1px solid rgba(0, 170, 108, 0.25);
    color: var(--green, #00aa6c);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: var(--radius-full, 9999px);
    margin-bottom: 20px;
    animation: tgFadeInDown 0.6s ease both;
}

.tg-page-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--black, #111111);
    line-height: 1.2;
    margin: 0 0 16px;
    animation: tgFadeInUp 0.7s ease 0.1s both;
}

.tg-page-hero-title span {
    color: var(--green, #00aa6c);
}

.tg-page-hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted, #757575);
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.75;
    animation: tgFadeInUp 0.7s ease 0.2s both;
}

.tg-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 170, 108, 0.1);
    border-radius: var(--radius-full, 9999px);
    animation: tgFadeInUp 0.7s ease 0.3s both;
}

.tg-breadcrumb a {
    color: var(--text-muted, #757575);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tg-breadcrumb i {
    color: var(--gray-400, #bdbdbd);
    font-size: 10px;
    transform: rotate(0deg);
    /* Adjust for RTL if needed, but chevron-left is correct for RTL flows moving backwards */
}

.tg-breadcrumb span {
    color: var(--green, #00aa6c);
    font-size: 14px;
    font-weight: 700;
}

.tg-breadcrumb a:hover {
    color: var(--green, #00aa6c);
    transform: translateY(-1px);
}

@keyframes tgFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tgFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── PAGE WRAPPER ── */
.tg-page-wrapper {
    padding: 72px 0 80px;
    background: var(--bg, #ffffff);
    min-height: 60vh;
}

/* ── SECTION LABEL ── */
.tg-section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green, #00aa6c);
    margin-bottom: 10px;
}

/* ── SECTION TITLE ── */
.tg-section-title {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--black, #111111);
    line-height: 1.25;
    margin-bottom: 14px;
}

.tg-section-title span {
    color: var(--green, #00aa6c);
}

.tg-section-desc {
    font-size: 1rem;
    color: var(--text-muted, #757575);
    line-height: 1.8;
    max-width: 680px;
}

/* ── CARD (replaces glass card) ── */
.tg-glass-card {
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #ebebeb);
    border-radius: var(--radius-lg, 20px);
    padding: 40px;
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.08));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tg-glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md, 0 4px 20px rgba(0, 0, 0, 0.1));
}

/* ── DIVIDER ── */
.tg-divider {
    width: 48px;
    height: 3px;
    background: var(--green, #00aa6c);
    border-radius: 3px;
    margin: 14px 0 22px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1. ABOUT PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.tg-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 80px;
}

.tg-about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg, 20px);
    overflow: hidden;
    box-shadow: var(--shadow-lg, 0 8px 40px rgba(0, 0, 0, 0.14));
}

.tg-about-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.tg-about-image-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #ebebeb);
    border-radius: var(--radius-md, 12px);
    padding: 16px 22px;
    box-shadow: var(--shadow-md, 0 4px 20px rgba(0, 0, 0, 0.1));
    text-align: center;
}

.tg-about-image-badge .num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--green, #00aa6c);
    line-height: 1;
}

.tg-about-image-badge .label {
    display: block;
    font-size: 12px;
    color: var(--text-muted, #757575);
    margin-top: 4px;
    font-weight: 500;
}

.tg-about-text p {
    color: var(--text-muted, #757575);
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: 1rem;
}

.tg-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.tg-about-stat {
    text-align: center;
    padding: 22px 14px;
    background: var(--gray-50, #fafafa);
    border: 1px solid var(--border, #ebebeb);
    border-radius: var(--radius-md, 12px);
    transition: border-color 0.25s;
}

.tg-about-stat:hover {
    border-color: var(--green, #00aa6c);
}

.tg-about-stat .num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green, #00aa6c);
    line-height: 1;
}

.tg-about-stat .label {
    font-size: 12px;
    color: var(--text-muted, #757575);
    margin-top: 5px;
    font-weight: 500;
}

.tg-about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.tg-value-card {
    padding: 28px 22px;
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #ebebeb);
    border-radius: var(--radius-lg, 20px);
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-xs, 0 1px 3px rgba(0, 0, 0, 0.07));
}

.tg-value-card:hover {
    border-color: var(--green, #00aa6c);
    box-shadow: var(--shadow-md, 0 4px 20px rgba(0, 0, 0, 0.1));
    transform: translateY(-5px);
}

.tg-value-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md, 12px);
    background: var(--green-light, #e6f7f1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: var(--green, #00aa6c);
}

.tg-value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black, #111111);
    margin-bottom: 8px;
}

.tg-value-card p {
    font-size: 13px;
    color: var(--text-muted, #757575);
    line-height: 1.7;
    margin: 0;
}

/* Timeline */
.tg-about-timeline {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border, #ebebeb);
}

.tg-timeline {
    position: relative;
    margin-top: 40px;
}

.tg-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, var(--green, #00aa6c), var(--green-light, #e6f7f1));
}

.tg-timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.tg-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.tg-timeline-content {
    flex: 1;
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #ebebeb);
    border-radius: var(--radius-md, 12px);
    padding: 24px 28px;
    box-shadow: var(--shadow-xs, 0 1px 3px rgba(0, 0, 0, 0.07));
}

.tg-timeline-year {
    width: auto;
    min-width: 90px;
    padding: 8px 16px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--green, #00aa6c) !important;
    background: var(--white, #ffffff);
    border: 2px solid var(--green, #00aa6c);
    border-radius: var(--radius-full, 9999px);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 170, 108, 0.15);
}

.tg-timeline-year::before,
.tg-timeline-year::after {
    display: none;
}

.tg-timeline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black, #111111);
    margin-bottom: 7px;
}

.tg-timeline-content p {
    font-size: 14px;
    color: var(--text-muted, #757575);
    line-height: 1.7;
    margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   2. CONTACT PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.tg-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.tg-contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tg-contact-info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #ebebeb);
    border-radius: var(--radius-md, 12px);
    box-shadow: var(--shadow-xs, 0 1px 3px rgba(0, 0, 0, 0.07));
    transition: all 0.25s ease;
    text-decoration: none;
    color: inherit;
}

.tg-contact-info-card:hover {
    border-color: var(--green, #00aa6c);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.08));
    transform: translateX(-3px);
}

.tg-contact-info-card .icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md, 12px);
    background: var(--green-light, #e6f7f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: var(--green, #00aa6c);
    flex-shrink: 0;
}

.tg-contact-info-card .text h4 {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-400, #bdbdbd);
    font-weight: 600;
    margin-bottom: 3px;
}

.tg-contact-info-card .text p {
    font-size: 14px;
    color: var(--text, #111111);
    margin: 0;
    font-weight: 600;
}

/* Map */
.tg-contact-map {
    margin-top: 50px;
    border-radius: var(--radius-lg, 20px);
    overflow: hidden;
    border: 1px solid var(--border, #ebebeb);
    height: 320px;
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.08));
}

.tg-contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form */
.tg-contact-form-wrapper {
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #ebebeb);
    border-radius: var(--radius-lg, 20px);
    padding: 40px;
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.08));
}

.tg-contact-form-wrapper h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--black, #111111);
    margin-bottom: 6px;
}

.tg-contact-form-wrapper>p {
    font-size: 14px;
    color: var(--text-muted, #757575);
    margin-bottom: 28px;
}

/* ── SHARED FORM STYLES ── */
.tg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tg-form-group {
    margin-bottom: 18px;
}

.tg-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800, #424242);
    margin-bottom: 7px;
}

.tg-form-group label span.required {
    color: var(--green, #00aa6c);
    margin-inline-start: 2px;
}

.tg-form-group input,
.tg-form-group select,
.tg-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--gray-50, #fafafa);
    border: 1.5px solid var(--border, #ebebeb);
    border-radius: var(--radius-md, 12px);
    color: var(--text, #111111);
    font-size: 14px;
    font-family: 'Alexandria', sans-serif !important;
    transition: all 0.25s ease;
    outline: none;
    box-sizing: border-box;
}

.tg-form-group input::placeholder,
.tg-form-group textarea::placeholder {
    color: var(--gray-400, #bdbdbd);
}

.tg-form-group input:focus,
.tg-form-group select:focus,
.tg-form-group textarea:focus {
    border-color: var(--green, #00aa6c);
    background: var(--white, #ffffff);
    box-shadow: 0 0 0 3px var(--green-light, #e6f7f1);
}

.tg-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23757575' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: var(--gray-50, #fafafa);
    padding-right: 44px;
}

[dir="rtl"] .tg-form-group select {
    background-position: left 16px center;
    padding-right: 16px;
    padding-left: 44px;
}

.tg-form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.tg-form-group select option {
    background: var(--white, #ffffff);
    color: var(--text, #111111);
}

/* Submit Button */
.tg-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 32px;
    background: var(--green, #00aa6c);
    color: var(--white, #ffffff);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md, 12px);
    cursor: pointer;
    font-family: 'Alexandria', sans-serif !important;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.tg-btn-submit:hover {
    background: var(--green-dark, #007a4d);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 170, 108, 0.3);
}

.tg-btn-submit:active {
    transform: translateY(0);
}

.tg-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Social Connect */
.tg-social-connect {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border, #ebebeb);
    text-align: center;
}

.tg-social-connect p {
    font-size: 13px;
    color: var(--gray-400, #bdbdbd);
    margin-bottom: 12px;
}

.tg-social-connect .socials {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.tg-social-connect .socials a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm, 8px);
    background: var(--gray-100, #f5f5f5);
    border: 1px solid var(--border, #ebebeb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted, #757575);
    font-size: 15px;
    transition: all 0.25s;
    text-decoration: none;
}

.tg-social-connect .socials a:hover {
    background: var(--green-light, #e6f7f1);
    border-color: var(--green, #00aa6c);
    color: var(--green, #00aa6c);
    transform: translateY(-3px);
}

/* Success State */
.tg-form-success {
    display: none;
    text-align: center;
    padding: 56px 32px;
    animation: tgFadeInUp 0.6s ease both;
}

.tg-form-success .success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--green-light, #e6f7f1);
    border: 2px solid rgba(0, 170, 108, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--green, #00aa6c);
    margin: 0 auto 20px;
}

.tg-form-success h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black, #111111);
    margin-bottom: 10px;
}

.tg-form-success p {
    font-size: 15px;
    color: var(--text-muted, #757575);
    margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3. TRIPS FILTERS — centered
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.tg-trips-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 0 36px;
    margin: 0 auto;
}

.tg-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: var(--radius-full, 9999px);
    border: 1.5px solid var(--border, #ebebeb);
    background: var(--white, #ffffff);
    color: var(--gray-600, #757575);
    font-size: 13.5px;
    font-weight: 600;
    font-family: 'Alexandria', sans-serif;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    box-shadow: var(--shadow-xs, 0 1px 3px rgba(0, 0, 0, 0.07));
    line-height: 1;
}

.tg-filter-btn.active,
.tg-filter-btn:hover {
    background: var(--green-light, #e6f7f1);
    border-color: var(--green, #00aa6c);
    color: var(--green, #00aa6c);
    box-shadow: none;
}

.tg-filter-btn i {
    font-size: 12px;
}

/* ── AJAX Loading States ── */
.tg-trips-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 20px;
    color: var(--text-muted, #757575);
    font-size: 14px;
    font-weight: 500;
}

.tg-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid var(--gray-200, #eeeeee);
    border-top-color: var(--green, #00aa6c);
    border-radius: 50%;
    animation: tgSpin 0.8s linear infinite;
}

@keyframes tgSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Empty State ── */
.tg-trips-empty {
    text-align: center;
    padding: 80px 20px;
}

.tg-trips-empty .empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gray-100, #f5f5f5);
    border: 1px solid var(--border, #ebebeb);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--gray-400, #bdbdbd);
}

.tg-trips-empty h3 {
    font-size: 1.5rem;
    color: var(--black, #111111);
    margin-bottom: 12px;
}

.tg-trips-empty p {
    color: var(--text-muted, #757575);
    font-size: 14px;
    margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   4. STORE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.tg-store-subtitle {
    font-size: 14px;
    color: var(--text-muted, #757575);
    margin-bottom: 28px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   5. PRIVACY POLICY PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.tg-privacy-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
    align-items: start;
}

.tg-privacy-sidebar {
    position: sticky;
    top: 110px;
}

.tg-privacy-toc {
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #ebebeb);
    border-radius: var(--radius-md, 12px);
    padding: 22px;
    box-shadow: var(--shadow-xs, 0 1px 3px rgba(0, 0, 0, 0.07));
}

.tg-privacy-toc h4 {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--gray-400, #bdbdbd);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.tg-privacy-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tg-privacy-toc li {
    border-bottom: 1px solid var(--gray-100, #f5f5f5);
}

.tg-privacy-toc li:last-child {
    border-bottom: none;
}

.tg-privacy-toc a {
    display: block;
    padding: 9px 0;
    font-size: 13px;
    color: var(--text-muted, #757575);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s;
}

.tg-privacy-toc a:hover {
    color: var(--green, #00aa6c);
}

.tg-privacy-content {
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #ebebeb);
    border-radius: var(--radius-lg, 20px);
    overflow: hidden;
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.08));
}

.tg-privacy-section {
    padding: 36px 40px;
    border-bottom: 1px solid var(--gray-100, #f5f5f5);
}

.tg-privacy-section:last-child {
    border-bottom: none;
}

.tg-privacy-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.tg-privacy-section-header .num {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm, 8px);
    background: var(--green-light, #e6f7f1);
    border: 1px solid rgba(0, 170, 108, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--green, #00aa6c);
    flex-shrink: 0;
}

.tg-privacy-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black, #111111);
    margin: 0;
}

.tg-privacy-section p,
.tg-privacy-section li {
    font-size: 14.5px;
    color: var(--text-muted, #757575);
    line-height: 1.9;
    margin-bottom: 12px;
}

.tg-privacy-section ul {
    padding-inline-start: 20px;
    margin-bottom: 12px;
}

.tg-privacy-section ul li {
    margin-bottom: 7px;
}

.tg-privacy-section ul li::marker {
    color: var(--green, #00aa6c);
}

.tg-privacy-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-400, #bdbdbd);
    padding: 0 40px 28px;
}

.tg-privacy-info i {
    color: var(--green, #00aa6c);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   6. COMPLAINTS PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.tg-complaints-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 36px;
    align-items: start;
}

.tg-complaints-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tg-complaint-notice {
    background: var(--green-light, #e6f7f1);
    border: 1px solid rgba(0, 170, 108, 0.2);
    border-radius: var(--radius-md, 12px);
    padding: 22px;
}

.tg-complaint-notice .icon {
    font-size: 26px;
    color: var(--green, #00aa6c);
    margin-bottom: 10px;
}

.tg-complaint-notice h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black, #111111);
    margin-bottom: 7px;
}

.tg-complaint-notice p {
    font-size: 13px;
    color: var(--text-muted, #757575);
    line-height: 1.7;
    margin: 0;
}

.tg-complaint-steps {
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #ebebeb);
    border-radius: var(--radius-md, 12px);
    padding: 22px;
    box-shadow: var(--shadow-xs, 0 1px 3px rgba(0, 0, 0, 0.07));
}

.tg-complaint-steps h4 {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-400, #bdbdbd);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.tg-complaint-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100, #f5f5f5);
}

.tg-complaint-step:last-child {
    border-bottom: none;
}

.tg-complaint-step .step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green-light, #e6f7f1);
    border: 1px solid rgba(0, 170, 108, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--green, #00aa6c);
    flex-shrink: 0;
}

.tg-complaint-step p {
    font-size: 13px;
    color: var(--text-muted, #757575);
    margin: 0;
    line-height: 1.6;
}

/* Type Toggle */
.tg-type-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 4px;
}

.tg-type-btn {
    padding: 11px;
    background: var(--gray-100, #f5f5f5);
    border: 1.5px solid var(--border, #ebebeb);
    border-radius: var(--radius-md, 12px);
    color: var(--text-muted, #757575);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
    font-family: 'Alexandria', sans-serif !important;
}

.tg-type-btn.active,
.tg-type-btn:hover {
    background: var(--green-light, #e6f7f1);
    border-color: var(--green, #00aa6c);
    color: var(--green, #00aa6c);
}

.tg-type-btn.active-suggestion,
.tg-type-btn.active-suggestion:hover {
    background: #fffdf0;
    border-color: #d4a017;
    color: #b8860b;
}

/* Star Rating */
.tg-star-rating {
    display: flex;
    gap: 6px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.tg-star-rating input[type="radio"] {
    display: none;
}

.tg-star-rating label {
    font-size: 28px;
    color: #d1d5db;
    /* Premium solid gray */
    cursor: pointer;
    transition: color 0.2s, transform 0.2s, text-shadow 0.2s;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.tg-star-rating input[type="radio"]:checked~label,
.tg-star-rating label:hover,
.tg-star-rating label:hover~label {
    color: #ffb800 !important;
    /* Premium gold */
    text-shadow: 0 2px 8px rgba(255, 184, 0, 0.4);
}

.tg-star-rating input[type="radio"]:checked+label {
    transform: scale(1.15);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRUST BADGES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.tg-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green-light, #e6f7f1);
    border: 1px solid rgba(0, 170, 108, 0.2);
    border-radius: var(--radius-full, 9999px);
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--green-dark, #007a4d);
}

.tg-trust-badge i {
    font-size: 12px;
    color: var(--green, #00aa6c);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 991px) {

    .tg-about-grid,
    .tg-contact-grid,
    .tg-privacy-layout,
    .tg-complaints-layout {
        grid-template-columns: 1fr;
    }

    .tg-about-values {
        grid-template-columns: 1fr 1fr;
    }

    .tg-timeline::before {
        left: 20px;
        transform: none;
    }

    [dir="rtl"] .tg-timeline::before {
        left: auto;
        right: 20px;
        transform: none;
    }

    .tg-timeline-item,
    .tg-timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    [dir="rtl"] .tg-timeline-item,
    [dir="rtl"] .tg-timeline-item:nth-child(even) {
        align-items: flex-start;
    }

    .tg-timeline-item .tg-timeline-content[style*="transparent"],
    .tg-timeline-item .tg-timeline-content:empty {
        display: none !important;
    }

    .tg-timeline-year {
        order: -1;
        margin-left: 20px;
        transform: translateX(-50%);
        box-shadow: 0 4px 12px rgba(0, 170, 108, 0.15);
    }

    [dir="rtl"] .tg-timeline-year {
        margin-left: 0;
        margin-right: 20px;
        transform: translateX(50%);
    }

    .tg-timeline-content {
        margin-left: 45px;
        width: calc(100% - 45px);
    }

    [dir="rtl"] .tg-timeline-content {
        margin-left: 0;
        margin-right: 45px;
    }

    .tg-timeline-year::after {
        display: none;
    }

    .tg-about-image-wrapper img {
        height: 300px;
    }

    .tg-contact-form-wrapper,
    .tg-glass-card {
        padding: 28px;
    }

    .tg-privacy-sidebar {
        position: static;
    }

    .tg-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .tg-page-hero {
        min-height: 260px;
    }

    .tg-page-wrapper {
        padding: 48px 0;
    }

    .tg-about-stats,
    .tg-about-values {
        grid-template-columns: 1fr;
    }

    .tg-type-toggle {
        grid-template-columns: 1fr;
    }

    .tg-privacy-section {
        padding: 24px 20px;
    }

    .tg-privacy-info {
        padding: 0 20px 20px;
    }
}

/* ── RTL ── */
[dir="rtl"] .tg-contact-info-card:hover {
    transform: translateX(3px);
}

[dir="rtl"] .tg-about-image-badge {
    left: auto;
    right: 28px;
}


[dir="rtl"] .tg-form-group select {
    background-position: left 16px center;
    padding-right: 16px;
    padding-left: 44px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRIPS GRID & TRIP CARD
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.trips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
    .trips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .trips-grid {
        grid-template-columns: 1fr;
    }
}

.trip-card {
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #ebebeb);
    border-radius: var(--radius-lg, 20px);
    overflow: hidden;
    box-shadow: var(--shadow-xs, 0 1px 3px rgba(0, 0, 0, 0.07));
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.trip-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md, 0 4px 20px rgba(0, 0, 0, 0.10));
    border-color: rgba(0, 170, 108, 0.25);
}

/* ── CARD IMAGE ── */
.trip-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    height: 220px;
    background: var(--gray-100, #f5f5f5);
    text-decoration: none;
    flex-shrink: 0;
}

.trip-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.trip-card:hover .trip-card-image img {
    transform: scale(1.05);
}

/* Type badge */
.trip-card-type {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--white, #ffffff);
    color: var(--green, #00aa6c);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: var(--radius-full, 9999px);
    border: 1px solid rgba(0, 170, 108, 0.2);
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow-xs, 0 1px 3px rgba(0, 0, 0, 0.07));
}

[dir="rtl"] .trip-card-type {
    left: auto;
    right: 14px;
}

/* Status badge */
.trip-card-status {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-full, 9999px);
}

[dir="rtl"] .trip-card-status {
    right: auto;
    left: 14px;
}

.trip-card-status.open {
    background: #e8faf3;
    color: #00804f;
    border: 1px solid rgba(0, 128, 79, 0.2);
}

.trip-card-status.closed {
    background: #fdf2f2;
    color: #c0392b;
    border: 1px solid rgba(192, 57, 43, 0.2);
}

/* ── CARD BODY ── */
.trip-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.trip-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text, #111111);
    margin-bottom: 10px;
}

.trip-card-rating i {
    color: #f5a623;
    font-size: 12px;
}

.trip-card-rating .count {
    color: var(--gray-400, #bdbdbd);
    font-weight: 400;
    font-size: 12px;
}

.trip-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.trip-card-title a {
    color: var(--black, #111111);
    text-decoration: none;
    transition: color 0.2s;
}

.trip-card-title a:hover {
    color: var(--green, #00aa6c);
}

.trip-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12.5px;
    color: var(--text-muted, #757575);
    margin-bottom: 16px;
    margin-top: auto;
    padding-top: 8px;
}

.trip-card-meta i {
    color: var(--green, #00aa6c);
    margin-inline-end: 4px;
    font-size: 11px;
}

/* ── CARD FOOTER ── */
.trip-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100, #f5f5f5);
    margin-top: auto;
}

.trip-card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.trip-card-price .from,
.trip-card-price .per {
    font-size: 11px;
    color: var(--text-muted, #757575);
}

.trip-card-price strong {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green, #00aa6c);
    line-height: 1;
}

.trip-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: var(--green, #00aa6c);
    color: var(--white, #ffffff) !important;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-md, 12px);
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    font-family: 'Alexandria', sans-serif;
    flex-shrink: 0;
}

.trip-card-btn:hover {
    background: var(--green-dark, #007a4d);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 170, 108, 0.3);
}

.trip-card-btn i {
    font-size: 11px;
    transition: transform 0.2s;
}

.trip-card-btn:hover i {
    transform: translateX(3px);
}

[dir="rtl"] .trip-card-btn:hover i {
    transform: translateX(-3px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCTS GRID & PRODUCT CARD
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #ebebeb);
    border-radius: var(--radius-lg, 20px);
    overflow: hidden;
    box-shadow: var(--shadow-xs, 0 1px 3px rgba(0, 0, 0, 0.07));
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md, 0 4px 20px rgba(0, 0, 0, 0.10));
    border-color: rgba(0, 170, 108, 0.25);
}

/* ── PRODUCT IMAGE ── */
.product-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    height: 200px;
    background: var(--gray-50, #fafafa);
    text-decoration: none;
    flex-shrink: 0;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.06);
}

/* Natural badge */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--green, #00aa6c);
    color: var(--white, #ffffff);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: var(--radius-full, 9999px);
    text-transform: uppercase;
}

[dir="rtl"] .product-badge {
    left: auto;
    right: 12px;
}

/* ── PRODUCT BODY ── */
.product-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.product-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.product-card-rating i {
    color: #f5a623;
    font-size: 12px;
}

.product-card-rating span:first-of-type {
    font-weight: 700;
    color: var(--text, #111111);
    font-size: 13px;
}

.product-card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    flex: 1;
}

.product-card-title a {
    color: var(--black, #111111);
    text-decoration: none;
    transition: color 0.2s;
}

.product-card-title a:hover {
    color: var(--green, #00aa6c);
}

/* In-stock badge */
.in-stock-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full, 9999px);
    letter-spacing: 0.3px;
}

.in-stock-badge.in-stock {
    background: #e8faf3;
    color: #00804f;
    border: 1px solid rgba(0, 128, 79, 0.15);
}

.in-stock-badge.out-of-stock {
    background: #fdf2f2;
    color: #c0392b;
    border: 1px solid rgba(192, 57, 43, 0.15);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.tg-blog-page {
    background: var(--bg, #ffffff);
}

/* ── Controls (Search + Categories) ── */
.tg-blog-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

/* Search Bar */
.tg-blog-search {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.tg-blog-search-inner {
    position: relative;
    flex: 1;
}

.tg-blog-search-inner>i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 16px;
    color: var(--gray-400, #bdbdbd);
    font-size: 14px;
    pointer-events: none;
}

.tg-blog-search-inner input {
    width: 100%;
    padding: 12px 44px;
    background: var(--gray-50, #fafafa);
    border: 1.5px solid var(--border, #ebebeb);
    border-radius: var(--radius-md, 12px);
    color: var(--text, #111111);
    font-size: 14px;
    font-family: 'Alexandria', sans-serif;
    transition: all 0.25s ease;
    outline: none;
    box-sizing: border-box;
}

.tg-blog-search-inner input:focus {
    border-color: var(--green, #00aa6c);
    background: var(--white, #ffffff);
    box-shadow: 0 0 0 3px var(--green-light, #e6f7f1);
}

.tg-blog-search-inner input::placeholder {
    color: var(--gray-400, #bdbdbd);
}

.tg-blog-search-clear {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 12px;
    color: var(--gray-400, #bdbdbd);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s;
}

.tg-blog-search-clear:hover {
    color: var(--text, #111111);
}

.tg-blog-search-btn {
    padding: 12px 24px;
    background: var(--green, #00aa6c);
    color: var(--white, #ffffff);
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md, 12px);
    cursor: pointer;
    font-family: 'Alexandria', sans-serif;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.tg-blog-search-btn:hover {
    background: var(--green-dark, #007a4d);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 170, 108, 0.25);
}

/* Category Tabs */
.tg-blog-cats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.tg-blog-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--radius-full, 9999px);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-muted, #757575);
    background: var(--gray-50, #fafafa);
    border: 1.5px solid var(--border, #ebebeb);
    transition: all 0.25s ease;
    font-family: 'Alexandria', sans-serif;
}

.tg-blog-cat-btn:hover {
    color: var(--green, #00aa6c);
    border-color: var(--green, #00aa6c);
    background: var(--green-light, #e6f7f1);
}

.tg-blog-cat-btn.active {
    background: var(--green, #00aa6c);
    color: var(--white, #ffffff);
    border-color: var(--green, #00aa6c);
    box-shadow: 0 4px 12px rgba(0, 170, 108, 0.3);
}

.tg-blog-cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: var(--radius-full, 9999px);
    font-size: 11px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.25);
}

.tg-blog-cat-btn:not(.active) .tg-blog-cat-count {
    background: var(--gray-100, #f5f5f5);
    color: var(--gray-400, #bdbdbd);
}

/* Search results label */
.tg-blog-search-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    padding: 14px 20px;
    background: var(--green-light, #e6f7f1);
    border: 1px solid rgba(0, 170, 108, 0.25);
    border-radius: var(--radius-md, 12px);
    font-size: 14px;
    color: var(--text-muted, #757575);
}

.tg-blog-search-label i {
    color: var(--green, #00aa6c);
    flex-shrink: 0;
}

.tg-blog-search-label strong {
    color: var(--black, #111111);
}

/* ── Blog Grid ── */
.tg-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Featured card spans full width */
.tg-blog-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 0;
}

.tg-blog-card--featured .tg-blog-card-image {
    height: 100%;
    min-height: 380px;
    border-radius: var(--radius-lg, 20px) 0 0 var(--radius-lg, 20px);
}

[dir="rtl"] .tg-blog-card--featured .tg-blog-card-image {
    border-radius: 0 var(--radius-lg, 20px) var(--radius-lg, 20px) 0;
}

.tg-blog-card--featured .tg-blog-card-body {
    border-radius: 0 var(--radius-lg, 20px) var(--radius-lg, 20px) 0;
    padding: 40px;
    justify-content: center;
}

[dir="rtl"] .tg-blog-card--featured .tg-blog-card-body {
    border-radius: var(--radius-lg, 20px) 0 0 var(--radius-lg, 20px);
}

.tg-blog-card--featured .tg-blog-card-title {
    font-size: 1.5rem;
}

.tg-blog-card--featured .tg-blog-card-excerpt {
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

/* ── Blog Card ── */
.tg-blog-card {
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #ebebeb);
    border-radius: var(--radius-lg, 20px);
    overflow: hidden;
    box-shadow: var(--shadow-xs, 0 1px 3px rgba(0, 0, 0, 0.07));
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tg-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 170, 108, 0.2);
}

/* Card Image */
.tg-blog-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    height: 220px;
    background: var(--gray-100, #f5f5f5);
    flex-shrink: 0;
}

.tg-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.tg-blog-card:hover .tg-blog-card-image img {
    transform: scale(1.06);
}

.tg-blog-card-image-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green-light, #e6f7f1), var(--gray-50, #fafafa));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--green, #00aa6c);
    opacity: 0.5;
}

.tg-blog-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 60%);
    pointer-events: none;
}

.tg-blog-card-badge {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    background: var(--green, #00aa6c);
    color: var(--white, #ffffff);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full, 9999px);
    z-index: 2;
}

/* Card Body */
.tg-blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tg-blog-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.tg-blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted, #757575) !important;
    font-weight: 500;
}

.tg-blog-card-meta span i {
    color: var(--green, #00aa6c);
    font-size: 11px;
}

.tg-blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 10px;
    color: var(--black, #111111);
}

.tg-blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s;
}

.tg-blog-card-title a:hover {
    color: var(--green, #00aa6c);
}

.tg-blog-card-excerpt {
    font-size: 14px;
    color: var(--text-muted, #757575) !important;
    line-height: 1.75;
    margin: 0 0 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Footer */
.tg-blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border, #ebebeb);
    margin-top: auto;
}

.tg-blog-card-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--black, #111111) !important;
}

.tg-blog-card-rating i {
    color: #FFB800;
    font-size: 12px;
}

.tg-blog-card-rating .count {
    color: var(--text-muted, #757575) !important;
    font-weight: 400;
    font-size: 12px;
}

.tg-blog-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: var(--green-light, #e6f7f1);
    color: var(--green, #00aa6c) !important;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-md, 12px);
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.tg-blog-card-btn:hover {
    background: var(--green, #00aa6c);
    color: var(--white, #ffffff) !important;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(0, 170, 108, 0.25);
}

[dir="rtl"] .tg-blog-card-btn:hover {
    transform: translateX(-3px);
}

/* ── Pagination ── */
.tg-blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border, #ebebeb);
}

.tg-blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md, 12px);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted, #757575);
    background: var(--gray-50, #fafafa);
    border: 1.5px solid var(--border, #ebebeb);
    text-decoration: none;
    transition: all 0.25s ease;
}

.tg-blog-pagination .page-numbers:hover {
    border-color: var(--green, #00aa6c);
    color: var(--green, #00aa6c);
    background: var(--green-light, #e6f7f1);
}

.tg-blog-pagination .page-numbers.current {
    background: var(--green, #00aa6c);
    color: var(--white, #ffffff);
    border-color: var(--green, #00aa6c);
    box-shadow: 0 4px 12px rgba(0, 170, 108, 0.3);
}

/* ── Empty State ── */
.tg-blog-empty {
    text-align: center;
    padding: 80px 20px;
}

.tg-blog-empty-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--green-light, #e6f7f1);
    border: 2px solid rgba(0, 170, 108, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--green, #00aa6c);
    margin: 0 auto 24px;
    animation: tgFadeInUp 0.6s ease both;
}

.tg-blog-empty h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black, #111111);
    margin-bottom: 10px;
    animation: tgFadeInUp 0.6s ease 0.1s both;
}

.tg-blog-empty p {
    font-size: 15px;
    color: var(--text-muted, #757575) !important;
    margin-bottom: 28px;
    animation: tgFadeInUp 0.6s ease 0.2s both;
}

.tg-blog-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--green, #00aa6c);
    color: var(--white, #ffffff) !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-md, 12px);
    text-decoration: none;
    transition: all 0.25s ease;
    animation: tgFadeInUp 0.6s ease 0.3s both;
}

.tg-blog-empty-btn:hover {
    background: var(--green-dark, #007a4d);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 170, 108, 0.3);
}

/* ── Blog Page Responsive ── */
@media (max-width: 1024px) {
    .tg-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tg-blog-card--featured {
        grid-column: auto;
        display: flex;
        flex-direction: column;
    }

    .tg-blog-card--featured .tg-blog-card-image {
        height: 260px;
        border-radius: var(--radius-lg, 20px) var(--radius-lg, 20px) 0 0;
    }

    .tg-blog-card--featured .tg-blog-card-body {
        border-radius: 0 0 var(--radius-lg, 20px) var(--radius-lg, 20px);
        padding: 24px;
    }

    [dir="rtl"] .tg-blog-card--featured .tg-blog-card-image,
    [dir="rtl"] .tg-blog-card--featured .tg-blog-card-body {
        border-radius: inherit;
    }
}

@media (max-width: 640px) {
    .tg-blog-grid {
        grid-template-columns: 1fr;
    }

    .tg-blog-search {
        flex-direction: column;
        max-width: 100%;
    }

    .tg-blog-search-btn {
        width: 100%;
        justify-content: center;
    }

    .tg-blog-card-body {
        padding: 18px;
    }

    .tg-blog-card--featured .tg-blog-card-title {
        font-size: 1.15rem;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   6. PREMIUM BOOKING WIDGET (SHEHANA SPA)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.bw-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

/* WhatsApp Primary Button */
.bw-actions .btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none !important;
    padding: 16px 24px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    width: 100% !important;
    height: auto !important;
    pointer-events: auto !important;
}

.bw-actions .btn-whatsapp:hover {
    background: #20ba5a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

/* Premium Separator */
.bw-or-premium {
    position: relative;
    text-align: center;
    margin: 10px 0;
}

.bw-or-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #e1e3e6, transparent);
}

.bw-or-premium span {
    position: relative;
    background: #fff;
    padding: 0 15px;
    font-size: 12px;
    color: #8c8f94;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Email Toggle Button */
.btn-toggle-email {
    background: #f8f9fa;
    color: #2c3338;
    border: 1px solid #e1e3e6;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
}

.btn-toggle-email:hover {
    background: #fff;
    border-color: var(--primary, #00aa6c);
    color: var(--primary, #00aa6c);
}

.btn-toggle-email.active {
    background: #fdfafa;
    border-color: var(--primary, #00aa6c);
    color: var(--primary, #00aa6c);
}

/* Email Form Wrapper */
.bw-direct-form-wrapper {
    background: #fdfafa;
    border: 1px solid rgba(0, 170, 108, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-top: 5px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Form Groups */
.form-group-premium {
    margin-bottom: 15px;
}

.form-group-premium input,
.form-group-premium textarea {
    width: 100%;
    padding: 12px 16px;
    background: #fff;
    border: 1.5px solid #ebebeb;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.25s ease;
    outline: none;
    font-family: inherit;
}

.form-group-premium input:focus,
.form-group-premium textarea:focus {
    border-color: var(--primary, #00aa6c);
    box-shadow: 0 0 0 3px rgba(0, 170, 108, 0.1);
}

.form-group-premium textarea {
    min-height: 100px;
    resize: vertical;
}

/* Submit Button Premium */
.btn-submit-booking-premium {
    width: 100%;
    background: var(--primary, #00aa6c);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit-booking-premium:hover {
    background: var(--primary-dark, #007a4d);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 170, 108, 0.2);
}

/* Currency Icon Styling */
.currency-icon {
    width: 20px;
    /* Requested size */
    height: auto;
    vertical-align: middle;
    display: inline-block;
    /* Match theme green #00aa6c */
    filter: brightness(0) saturate(100%) invert(38%) sepia(98%) saturate(1352%) hue-rotate(124deg) brightness(95%) contrast(105%);
    margin-right: 6px;
    /* Space on the right (number will be on the right in RTL) */
    margin-left: 0;
    opacity: 0.9;
}

.price-from strong .currency-icon,
.tc-price .tpv .currency-icon,
.trip-card-price strong .currency-icon,
.bw-addon-item .currency-icon {
    width: 18px;
    /* Slightly smaller for density */
}

.from-label {
    font-size: 0.85em;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 6px;
}