/* TripAdvisor-inspired design system — RentACarGoa.com */
:root {
    --ta-green: #002b11;
    --ta-green-dark: #001a0a;
    --ta-green-hover: #003d18;
    --ta-green-light: #2d6b47;
    --ta-green-bg: #e6f2ea;
    --ta-warm: #FAF1ED;
    --ta-warm-dark: #F2E8E0;
    --ta-white: #FFFFFF;
    --ta-black: #000000;
    --ta-text: #333333;
    --ta-text-muted: #767676;
    --ta-border: #E0E0E0;
    --ta-link: #002b11;
    --ta-yellow: #F2B203;
    --primary: var(--ta-green);
    --primary-dark: var(--ta-green-dark);
    --secondary: var(--ta-text);
    --dark: var(--ta-black);
    --gray: var(--ta-text-muted);
    --light: var(--ta-warm);
    --success: #25d366;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --transition: all 0.2s ease;
    --font: 'Trip Sans VF', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ta-text);
    line-height: 1.5;
    background: var(--ta-white);
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--ta-link); text-decoration: none; }
a:hover { color: var(--ta-green-dark); text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    color: var(--ta-black);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 0.35rem;
    font-weight: 800;
}

.section-subtitle {
    color: var(--ta-text-muted);
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto 1.75rem;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--ta-warm);
    border-bottom: 1px solid var(--ta-border);
    color: var(--ta-text);
    font-size: 0.8rem;
    padding: 6px 0;
}

.top-bar a { color: var(--ta-link); text-decoration: none; }
.top-bar a:hover { text-decoration: underline; }

.trust-badge { font-size: 0.8rem; color: var(--ta-text-muted); }
.trust-badge i { color: var(--ta-green); margin-right: 4px; }

/* ===== HEADER (TripAdvisor-style) ===== */
.site-header {
    background: var(--ta-white);
    border-bottom: 1px solid var(--ta-border);
    z-index: 1030;
}

.site-header .navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.site-header .navbar-collapse {
    flex-grow: 1;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--ta-black) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    padding: 0;
    margin-right: 1rem;
}

.site-logo {
    height: 42px;
    width: auto;
    max-width: 150px;
    display: block;
    object-fit: contain;
}

.site-logo-sm {
    height: 32px;
    max-width: 110px;
}

.site-logo-footer {
    height: 48px;
    max-width: 180px;
    filter: none;
}

.footer-brand a { text-decoration: none !important; display: inline-block; }

.sticky-search-brand {
    display: none;
    flex-shrink: 0;
    line-height: 0;
}

@media (min-width: 992px) {
    .sticky-search-brand { display: block; }
}

.header-rating {
    display: none;
    align-items: center;
    gap: 8px;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--ta-border);
}

@media (min-width: 992px) {
    .header-rating { display: flex; }
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ta-black) !important;
    padding: 8px 14px !important;
    border-radius: 20px;
    transition: var(--transition);
    text-decoration: none !important;
}

.nav-link:hover {
    background: var(--ta-warm);
    color: var(--ta-black) !important;
}

.nav-cta {
    border-radius: 24px !important;
    padding: 8px 20px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
}

.navbar-toggler { border: 1px solid var(--ta-border); border-radius: 8px; }
.navbar-toggler:focus { box-shadow: none; }

/* ===== BUTTONS ===== */
.btn {
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 24px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--ta-green);
    border-color: var(--ta-green);
    color: #fff;
}

.btn-primary:hover, .btn-primary:focus {
    background: var(--ta-green-hover);
    border-color: var(--ta-green-hover);
    color: #fff;
    box-shadow: var(--shadow-md);
    transform: none;
}

.btn-outline-primary {
    border: 2px solid var(--ta-green);
    color: var(--ta-green);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--ta-green);
    border-color: var(--ta-green);
    color: #fff;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline-light:hover { background: #fff; color: var(--ta-green); }

.btn-whatsapp {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
}

.btn-whatsapp:hover { background: #1da851; color: #fff; }

.btn-secondary-custom {
    background: var(--ta-black);
    border-color: var(--ta-black);
    color: #fff;
}

.btn-light { color: var(--ta-green); font-weight: 700; }

/* ===== RATING BUBBLE (TripAdvisor signature) ===== */
.ta-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ta-rating-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 6px;
    background: var(--ta-green);
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 8px 8px 8px 2px;
    line-height: 1;
}

.ta-rating-bubble.ta-rating-sm {
    min-width: 30px;
    height: 30px;
    font-size: 0.8rem;
    border-radius: 6px 6px 6px 2px;
}

.ta-rating-label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--ta-black);
    line-height: 1.2;
}

.ta-rating-count {
    display: block;
    font-size: 0.75rem;
    color: var(--ta-text-muted);
}

.ta-bubbles {
    display: flex;
    gap: 3px;
}

.ta-bubble-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ta-green);
}

.ta-bubble-dot.empty { background: var(--ta-border); }

.ta-choice-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--ta-warm-dark);
    color: var(--ta-black);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ta-choice-badge i { color: var(--ta-green); }

/* ===== HERO (TripAdvisor search-first) ===== */
.hero-section {
    background: var(--ta-warm);
    color: var(--ta-black);
    padding: 48px 0 56px;
    position: relative;
    border-bottom: 1px solid var(--ta-border);
}

.hero-section::before { display: none; }
.hero-section::after { display: none; }

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ta-white);
    color: var(--ta-green-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid var(--ta-border);
}

.hero-title {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    color: var(--ta-black);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--ta-text-muted);
    max-width: 560px;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.hero-cta-group { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 1.5rem; }

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ta-border);
}

.hero-stat strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ta-green);
}

.hero-stat span { font-size: 0.8rem; color: var(--ta-text-muted); }

/* ===== SEARCH FORM ===== */
.search-form-card {
    background: var(--ta-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--ta-border);
    color: var(--ta-text);
}

.search-form-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--ta-black);
}

.search-form-card .form-label {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--ta-text);
    margin-bottom: 4px;
}

.search-form-card .form-control,
.search-form-card .form-select {
    border-radius: var(--radius);
    border: 1px solid var(--ta-border);
    padding: 10px 12px;
    font-size: 0.95rem;
}

.search-form-card .form-control:focus,
.search-form-card .form-select:focus {
    border-color: var(--ta-green);
    box-shadow: 0 0 0 3px rgba(4,31,79,0.15);
}

/* ===== SECTIONS ===== */
.section-padding { padding: 56px 0; }
.section-padding-sm { padding: 40px 0; }
.bg-light-custom { background: var(--ta-warm); }
.bg-dark-custom {
    background: var(--ta-white);
    color: var(--ta-text);
    border-top: 1px solid var(--ta-border);
    border-bottom: 1px solid var(--ta-border);
}
.bg-dark-custom h2, .bg-dark-custom h3 { color: var(--ta-black); }
.bg-dark-custom .section-subtitle { color: var(--ta-text-muted); }

/* ===== CATEGORY PILLS (TA tabs style) ===== */
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 2rem;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--ta-white);
    border: 2px solid var(--ta-border);
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ta-black);
    text-decoration: none !important;
    transition: var(--transition);
}

.category-pill .text-muted {
    font-weight: 500;
    font-size: 0.8rem;
    margin-left: 4px;
}

.category-pill:hover, .category-pill.active {
    border-color: var(--ta-green);
    background: var(--ta-green-bg);
    color: var(--ta-green-dark);
}

.category-card {
    background: var(--ta-white);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    border: 1px solid var(--ta-border);
    transition: var(--transition);
    height: 100%;
}

.category-card:hover {
    border-color: var(--ta-green);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.category-icon { font-size: 2rem; margin-bottom: 8px; }
.category-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.category-card p { font-size: 0.85rem; color: var(--ta-text-muted); margin: 0; }

/* ===== FLEET / LISTING CARDS (TripAdvisor listing style) ===== */
.fleet-card {
    background: var(--ta-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--ta-border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #ccc;
}

.fleet-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #1a4789;
}

.fleet-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition);
}

.fleet-card:hover .fleet-card-img img { transform: scale(1.02); }

.fleet-card-rating {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.fleet-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--ta-white);
    color: var(--ta-text);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    border: 1px solid var(--ta-border);
    box-shadow: var(--shadow);
}

.fleet-badge.luxury {
    background: var(--ta-warm-dark);
    border-color: var(--ta-yellow);
}

.fleet-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fleet-card-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--ta-black);
    line-height: 1.3;
}

.fleet-card-title a { color: inherit; text-decoration: none; }
.fleet-card-title a:hover { color: var(--ta-link); text-decoration: underline; }

.fleet-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.fleet-spec {
    background: var(--ta-warm);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ta-text-muted);
}

.fleet-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--ta-border);
}

.fleet-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ta-black);
}

.fleet-price span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--ta-text-muted);
}

.fleet-card .btn { font-size: 0.85rem; padding: 8px 16px; }

/* ===== LOCATION CARDS ===== */
.location-card {
    background: var(--ta-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--ta-border);
    transition: var(--transition);
    height: 100%;
}

.location-card:hover,
.location-card-photo:hover {
    box-shadow: var(--shadow-md);
    border-color: #ccc;
    transform: translateY(-2px);
}

.location-card-link {
    display: block;
    color: inherit;
}

.location-card-link:hover { text-decoration: none; }

.location-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--ta-green-bg) 0%, var(--ta-warm) 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--ta-border);
}

.location-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.location-card-photo:hover .location-card-img img {
    transform: scale(1.05);
}

.location-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.95);
    color: var(--ta-black);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow);
}

.location-card-rating {
    position: absolute;
    top: 12px;
    right: 12px;
}

.location-card-body { padding: 16px; }

.location-card-body h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--ta-black);
    line-height: 1.35;
}

.location-hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 72px 0 64px;
    text-align: center;
}

.location-hero h1 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto 12px;
}

.location-hero p {
    color: rgba(255,255,255,0.92);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.location-hero .ta-choice-badge,
.location-hero .ta-rating-label,
.location-hero .ta-rating-count {
    color: #fff;
}

.location-hero .ta-rating-count { opacity: 0.9; }

.blog-hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 72px 0 64px;
    text-align: center;
}

.blog-hero h1 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto 12px;
}

.blog-hero p,
.blog-hero .blog-card-meta {
    color: rgba(255,255,255,0.92);
}

.blog-hero .ta-choice-badge {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    background: var(--ta-white);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    border: 1px solid var(--ta-border);
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover { border-color: var(--ta-green); }

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--ta-green-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.35rem;
    color: var(--ta-green);
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--ta-text-muted);
    margin: 0;
}

/* ===== REVIEWS (TripAdvisor review cards) ===== */
.review-card {
    background: var(--ta-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--ta-border);
    height: 100%;
}

.review-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ta-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-stars { color: var(--ta-green); font-size: 0.75rem; letter-spacing: 1px; margin-bottom: 4px; }

.review-text {
    font-size: 0.95rem;
    color: var(--ta-text);
    margin-bottom: 12px;
    line-height: 1.6;
}

.review-author { font-weight: 700; font-size: 0.9rem; color: var(--ta-black); }
.review-date { font-size: 0.8rem; color: var(--ta-text-muted); }

/* ===== FAQ ===== */
.faq-item {
    background: var(--ta-white);
    border-radius: var(--radius);
    margin-bottom: 8px;
    border: 1px solid var(--ta-border);
    overflow: hidden;
}

.faq-question {
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ta-black);
}

.faq-question:hover { color: var(--ta-green); }

.faq-answer {
    padding: 0 20px 16px;
    color: var(--ta-text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    background: var(--ta-warm);
    padding: 12px 0;
    border-bottom: 1px solid var(--ta-border);
}

.breadcrumb { margin: 0; font-size: 0.85rem; }
.breadcrumb-item a { color: var(--ta-link); font-weight: 600; }

/* ===== PAGE HERO ===== */
.page-hero {
    background: var(--ta-warm);
    color: var(--ta-black);
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid var(--ta-border);
}

.page-hero h1 {
    color: var(--ta-black);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: var(--ta-text-muted);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ===== CONTENT ===== */
.content-section { padding: 48px 0; }

.content-section h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.content-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.content-section p, .content-section li {
    color: var(--ta-text);
    line-height: 1.75;
    font-size: 0.95rem;
}

.internal-links {
    background: var(--ta-warm);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin: 1.5rem 0;
    border: 1px solid var(--ta-border);
}

.internal-links h4 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.internal-links a {
    display: inline-block;
    margin: 4px 6px 4px 0;
    padding: 6px 14px;
    background: var(--ta-white);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ta-link);
    border: 1px solid var(--ta-border);
    text-decoration: none;
}

.internal-links a:hover {
    border-color: var(--ta-green);
    background: var(--ta-green-bg);
}

.parent-company-box {
    background: linear-gradient(135deg, var(--ta-green-bg) 0%, var(--ta-warm) 100%);
    border-color: var(--ta-green);
}

.parent-company-box h4 {
    color: var(--ta-green);
}

.parent-company-box p {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 12px;
}

.parent-company-box a strong {
    color: var(--ta-green);
}

/* ===== TRIPADVISOR PRODUCT PAGE (Fleet detail) ===== */
.ta-product-page .breadcrumb-section {
    background: var(--ta-white);
    padding: 16px 0 0;
    border-bottom: none;
}

.ta-product-hero {
    background: var(--ta-white);
    padding: 8px 0 32px;
}

.ta-product-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ta-border);
}

.ta-product-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ta-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.ta-product-header h1 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 12px;
    max-width: 900px;
}

.ta-product-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    font-size: 0.9rem;
}

.ta-product-meta-link {
    font-weight: 700;
    color: var(--ta-black);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ta-product-meta-link:hover { color: var(--ta-link); }

.ta-meta-sep { color: var(--ta-text-muted); }

.ta-product-location {
    color: var(--ta-text-muted);
    font-weight: 600;
}

.ta-product-location i { color: var(--ta-green); margin-right: 4px; }

.ta-product-rank {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: var(--ta-green-bg);
    color: var(--ta-link);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 800;
    border: 1px solid rgba(4,31,79,0.2);
}

.ta-product-gallery {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--ta-border);
    background: #1a4789;
    box-shadow: var(--shadow-md);
}

.ta-product-gallery img {
    width: 100%;
    height: min(420px, 52vw);
    object-fit: contain;
    object-position: center;
}

.ta-gallery-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.ta-gallery-chips {
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.ta-booking-widget {
    background: var(--ta-white);
    border: 1px solid var(--ta-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-md);
}

.ta-booking-widget__price {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--ta-border);
}

.ta-price-from {
    display: block;
    font-size: 0.8rem;
    color: var(--ta-text-muted);
    font-weight: 600;
    margin-bottom: 2px;
}

.ta-price-line {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.ta-price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ta-black);
    line-height: 1;
}

.ta-price-unit {
    font-size: 0.95rem;
    color: var(--ta-text-muted);
    font-weight: 600;
}

.ta-price-note {
    font-size: 0.82rem;
    color: var(--ta-text-muted);
    margin: 8px 0 0;
}

.ta-booking-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.ta-booking-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ta-text);
    padding: 6px 0;
}

.ta-booking-highlights i {
    color: var(--ta-green);
    margin-top: 2px;
    flex-shrink: 0;
}

.ta-booking-fineprint {
    background: var(--ta-warm);
    border-radius: var(--radius);
    padding: 12px 14px;
    margin-bottom: 12px;
}

.ta-booking-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    padding: 5px 0;
    color: var(--ta-text-muted);
}

.ta-booking-row strong { color: var(--ta-black); }

.ta-free-cancel {
    font-size: 0.82rem;
    color: var(--ta-text-muted);
    font-weight: 600;
}

.ta-free-cancel i { color: var(--ta-green); margin-right: 6px; }

.ta-section-tabs-wrap {
    position: sticky;
    top: 72px;
    z-index: 1020;
    background: var(--ta-white);
    border-top: 1px solid var(--ta-border);
    border-bottom: 1px solid var(--ta-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ta-section-tabs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
}

.ta-section-tabs::-webkit-scrollbar { display: none; }

.ta-section-tabs a {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ta-text);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.ta-section-tabs a:hover {
    background: var(--ta-warm);
    color: var(--ta-black);
    text-decoration: none;
}

.ta-section-tabs a.active {
    background: var(--ta-black);
    color: #fff;
}

.ta-product-content {
    padding: 32px 0 48px;
    background: var(--ta-warm);
}

.ta-product-panel {
    background: var(--ta-white);
    border: 1px solid var(--ta-border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 16px;
    scroll-margin-top: 130px;
}

.ta-panel-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ta-border);
}

.ta-panel-subtitle {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 1.5rem 0 0.75rem;
}

.ta-rich-content h2 {
    font-size: 1.2rem;
    margin-top: 1.75rem;
    margin-bottom: 0.65rem;
}

.ta-rich-content h3 {
    font-size: 1.05rem;
    margin-top: 1.25rem;
}

.ta-rich-content .toc-box {
    background: var(--ta-warm);
    margin-top: 0;
}

.ta-rich-content .toc-box ol {
    margin-bottom: 0;
    padding-left: 1.2rem;
}

.ta-rich-content .toc-box a {
    font-weight: 600;
    font-size: 0.88rem;
}

.ta-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.ta-included-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--ta-warm);
    border-radius: var(--radius);
    border: 1px solid var(--ta-border);
    font-size: 0.9rem;
    font-weight: 600;
}

.ta-included-item i { color: var(--ta-green); font-size: 1.1rem; flex-shrink: 0; }

.ta-spec-table { margin-bottom: 0; }

.ta-terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ta-terms-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--ta-border);
    font-size: 0.92rem;
    line-height: 1.5;
}

.ta-terms-list li:last-child { border-bottom: none; }

.ta-terms-list i { color: var(--ta-green); font-weight: 800; margin-top: 3px; }

.ta-review-summary {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    align-items: center;
}

.ta-review-summary-score {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ta-rating-bubble.ta-rating-lg {
    min-width: 52px;
    height: 52px;
    font-size: 1.25rem;
    border-radius: 10px 10px 10px 3px;
}

.ta-review-summary-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
}

.ta-review-summary-count {
    display: block;
    font-size: 0.85rem;
    color: var(--ta-text-muted);
    font-weight: 600;
}

.ta-review-breakdown { width: 100%; }

.ta-review-row {
    display: grid;
    grid-template-columns: 14px 1fr 36px;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.ta-review-row-label {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--ta-text-muted);
}

.ta-review-row-bar {
    height: 8px;
    background: var(--ta-warm-dark);
    border-radius: 4px;
    overflow: hidden;
}

.ta-review-row-bar span {
    display: block;
    height: 100%;
    background: var(--ta-green);
    border-radius: 4px;
}

.ta-review-row-pct {
    font-size: 0.75rem;
    color: var(--ta-text-muted);
    font-weight: 600;
    text-align: right;
}

.ta-key-details {
    background: var(--ta-white);
    border: 1px solid var(--ta-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
}

.ta-key-details-title {
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ta-border);
}

.ta-key-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ta-key-details-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--ta-border);
    font-size: 0.88rem;
    line-height: 1.4;
}

.ta-key-details-list li:last-child { border-bottom: none; padding-bottom: 0; }

.ta-key-details-list i {
    color: var(--ta-green);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.ta-key-details-list strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--ta-text-muted);
    margin-bottom: 2px;
}

.ta-product-page .faq-item {
    border-radius: var(--radius);
}

@media (max-width: 991px) {
    .ta-section-tabs-wrap { top: 0; }
    .ta-review-summary { grid-template-columns: 1fr; }
    .ta-product-panel { padding: 20px 18px; }
    .ta-booking-widget { margin-bottom: 8px; }
    .ta-key-details { position: static !important; }
}

@media (max-width: 767px) {
    .ta-product-gallery img { height: 240px; }
    .ta-price-amount { font-size: 1.65rem; }
}

/* ===== VEHICLE DETAIL (legacy) ===== */
.vehicle-hero { background: var(--ta-warm); padding: 32px 0; }

.vehicle-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--ta-border);
    background: #1a4789;
}

.vehicle-gallery img { width: 100%; height: 340px; object-fit: contain; object-position: center; }

.vehicle-info-card {
    background: var(--ta-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--ta-border);
}

.spec-table { width: 100%; }
.spec-table tr { border-bottom: 1px solid var(--ta-border); }
.spec-table td { padding: 10px 0; font-size: 0.9rem; }
.spec-table td:first-child { font-weight: 700; color: var(--ta-text-muted); width: 40%; }

.pricing-card {
    background: var(--ta-green);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 16px;
}

.pricing-card h4 { color: #fff; font-weight: 800; }

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 0.95rem;
}

/* ===== ENQUIRY ===== */
.enquiry-form {
    background: var(--ta-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--ta-border);
    box-shadow: var(--shadow-md);
}

.enquiry-form h3, .enquiry-form h4 { font-weight: 800; }

/* ===== BLOG / ATTRACTION CARDS ===== */
.blog-card, .attraction-card {
    background: var(--ta-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--ta-border);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover, .attraction-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #ccc;
}

.blog-card-img, .attraction-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--ta-green-bg) 0%, var(--ta-warm) 100%);
    position: relative;
    overflow: hidden;
}

.blog-card-img img,
.attraction-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.blog-card-photo:hover .blog-card-img img,
.attraction-card-photo:hover .attraction-card-img img {
    transform: scale(1.05);
}

.blog-card-link,
.attraction-card-link {
    display: block;
    color: inherit;
}

.blog-card-link:hover,
.attraction-card-link:hover { text-decoration: none; }

.blog-card-photo,
.attraction-card-photo {
    transition: var(--transition);
    height: 100%;
}

.blog-card-photo:hover,
.attraction-card-photo:hover {
    box-shadow: var(--shadow-md);
    border-color: #ccc;
    transform: translateY(-2px);
}

.blog-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.95);
    color: var(--ta-black);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow);
    max-width: calc(100% - 24px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.attraction-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.95);
    color: var(--ta-black);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow);
}

.attraction-card-rating {
    position: absolute;
    top: 12px;
    right: 12px;
}

.attraction-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.35;
    color: var(--ta-black);
}

.attraction-card-excerpt {
    font-size: 0.88rem;
}

.attraction-hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 72px 0 64px;
    text-align: center;
}

.attraction-hero h1 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto 12px;
}

.attraction-hero p {
    color: rgba(255,255,255,0.92);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.attraction-hero .ta-choice-badge {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
}

.blog-card-body, .attraction-card-body { padding: 18px; }

.blog-card-meta {
    font-size: 0.75rem;
    color: var(--ta-text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.blog-card-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.35;
}

.blog-card-title a { color: var(--ta-black); text-decoration: none; }
.blog-card-title a:hover { color: var(--ta-link); text-decoration: underline; }

.blog-card-excerpt { font-size: 0.88rem; color: var(--ta-text-muted); }

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--ta-green) 0%, var(--ta-green-dark) 100%);
    color: #fff;
    padding: 56px 0;
    text-align: center;
}

.cta-section h2 { color: #fff; font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-section p { color: rgba(255,255,255,0.9); max-width: 520px; margin: 0 auto 1.5rem; font-size: 1.05rem; }
.cta-section .btn-light { background: #fff; border-color: #fff; color: var(--ta-green-dark); }
.cta-section .btn-light:hover { background: var(--ta-warm); color: var(--ta-green-dark); }

/* ===== FOOTER (TripAdvisor clean) ===== */
.site-footer {
    background: var(--ta-warm);
    color: var(--ta-text);
    border-top: 1px solid var(--ta-border);
}

.footer-main { padding: 48px 0 32px; }

.footer-brand {
    display: block;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--ta-text-muted);
    margin: 12px 0;
}

.footer-contact p { margin-bottom: 6px; font-size: 0.9rem; }
.footer-contact a { color: var(--ta-link); font-weight: 600; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }

.footer-heading {
    color: var(--ta-black);
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: var(--ta-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
}
.footer-links a:hover { color: var(--ta-link); text-decoration: underline; }
.footer-links-2col { columns: 2; column-gap: 16px; }

.trust-badge-sm {
    display: inline-block;
    background: var(--ta-white);
    border: 1px solid var(--ta-border);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    margin: 4px 4px 4px 0;
    color: var(--ta-text-muted);
}

.footer-bottom {
    border-top: 1px solid var(--ta-border);
    padding: 16px 0;
    font-size: 0.8rem;
    background: var(--ta-white);
}

.footer-keywords { font-size: 0.72rem; color: var(--ta-text-muted); }

.footer-credit {
    font-size: 0.72rem;
    color: var(--ta-text-muted);
    margin-top: 4px;
}

.footer-credit a {
    color: var(--ta-text-muted);
    text-decoration: underline;
}

.footer-credit a:hover {
    color: var(--ta-green);
}

/* ===== FLOATING / STICKY CTA ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--success);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: var(--shadow-md);
    z-index: 1050;
    text-decoration: none;
}

.floating-whatsapp:hover { transform: scale(1.05); color: #fff; }

.whatsapp-tooltip {
    position: absolute;
    right: 64px;
    background: var(--ta-black);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
}

.floating-whatsapp:hover .whatsapp-tooltip { opacity: 1; }

.floating-call {
    position: fixed;
    bottom: 24px;
    right: 88px;
    width: 48px;
    height: 48px;
    background: var(--ta-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    z-index: 1050;
    text-decoration: none;
}

.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 1040;
    background: var(--ta-white);
    border-top: 1px solid var(--ta-border);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}

.sticky-cta-btn {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.sticky-cta-btn.call-btn { background: var(--ta-black); }
.sticky-cta-btn.book-btn { background: var(--ta-green); }
.sticky-cta-btn.whatsapp-btn { background: var(--success); }

/* ===== FILTER BAR ===== */
.filter-bar {
    background: var(--ta-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--ta-border);
    margin-bottom: 24px;
}

/* ===== MISC ===== */
.toc-box {
    background: var(--ta-warm);
    border-left: 4px solid var(--ta-green);
    padding: 18px 22px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 1.5rem;
    border: 1px solid var(--ta-border);
    border-left: 4px solid var(--ta-green);
}

.review-quote {
    background: var(--ta-warm);
    border-left: 4px solid var(--ta-green);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}

.review-quote p { margin: 0; color: var(--ta-text); }

.content-section .lead {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ta-text);
}

.travel-tips-box {
    background: var(--ta-green-bg);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin: 1.5rem 0;
    border: 1px solid rgba(4,31,79,0.2);
}

.thank-you-section { text-align: center; padding: 80px 0; }
.thank-you-icon { font-size: 4rem; color: var(--ta-green); margin-bottom: 1rem; }

.lead-modal, .exit-modal { border-radius: var(--radius-lg); border: 1px solid var(--ta-border); }

.pagination .page-link { border-radius: 6px; margin: 0 3px; color: var(--ta-link); border-color: var(--ta-border); }
.pagination .page-item.active .page-link { background: var(--ta-green); border-color: var(--ta-green); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .hero-section { padding: 32px 0 40px; }
    .section-padding { padding: 40px 0; }
    .search-form-card { margin-top: 1.5rem; }
    .footer-links-2col { columns: 1; }
    body { padding-bottom: 52px; }
}

@media (max-width: 767.98px) {
    .hero-cta-group .btn { width: 100%; }
    .floating-call { display: none !important; }
}

@media (min-width: 768px) {
    .sticky-cta-bar { display: none !important; }
}

@media print {
    .site-header, .site-footer, .floating-whatsapp, .floating-call, .sticky-cta-bar { display: none !important; }
}

:focus-visible { outline: 3px solid var(--ta-green); outline-offset: 2px; }

/* Listing row layout (fleet page horizontal cards) */
.listing-card {
    display: flex;
    flex-direction: column;
    background: var(--ta-white);
    border: 1px solid var(--ta-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    transition: var(--transition);
}

.listing-card:hover { box-shadow: var(--shadow-md); }

@media (min-width: 768px) {
    .listing-card { flex-direction: row; }
    .listing-card .fleet-card-img { width: 280px; height: auto; min-height: 200px; flex-shrink: 0; }
    .listing-card .fleet-card-body { flex: 1; padding: 20px 24px; }
}

/* ===== ENHANCED TA COMPONENTS ===== */

/* Stats strip (hero) */
.stats-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
}

.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ta-white);
    border: 1px solid var(--ta-border);
    border-radius: 24px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ta-text);
    box-shadow: var(--shadow);
}

.stat-pill strong { color: var(--ta-green); font-weight: 800; }
.stat-pill i { color: var(--ta-green); font-size: 1rem; }

/* Search suggestion chips */
.search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--ta-border);
}

.search-chips-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ta-text-muted);
    width: 100%;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.search-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--ta-warm);
    border: 1px solid var(--ta-border);
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ta-link);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
}

.search-chip:hover {
    background: var(--ta-green-bg);
    color: var(--ta-green-dark);
}

/* Rank & deal badges on cards */
.rank-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--ta-black);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 2;
}

.rank-badge.gold { background: linear-gradient(135deg, #F2B203, #d49a00); color: #000; }

.deal-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--ta-green-bg);
    color: var(--ta-green-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.deal-tag i { font-size: 0.7rem; }

.fleet-card-img.has-placeholder img {
    object-fit: contain;
    padding: 24px;
    opacity: 0.85;
}

/* Rating distribution (TA review breakdown) */
.review-summary-panel {
    background: var(--ta-white);
    border: 1px solid var(--ta-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: 100%;
}

.review-summary-panel h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.rating-bar-label { width: 48px; font-weight: 600; color: var(--ta-text-muted); flex-shrink: 0; }

.rating-bar-track {
    flex: 1;
    height: 8px;
    background: var(--ta-warm);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: var(--ta-green);
    border-radius: 4px;
    transition: width 0.6s ease;
}

.rating-bar-count { width: 36px; text-align: right; color: var(--ta-text-muted); font-size: 0.75rem; }

/* How it works steps */
.steps-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.step-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--ta-white);
    border: 1px solid var(--ta-border);
    border-radius: var(--radius-lg);
    position: relative;
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--ta-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    margin: 0 auto 14px;
}

.step-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; color: var(--ta-text-muted); margin: 0; }

/* Sort toolbar */
.sort-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ta-border);
}

.sort-toolbar .form-select {
    max-width: 200px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-color: var(--ta-border);
}

/* Sticky mini search (appears on scroll) */
.sticky-search-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--ta-white);
    border-bottom: 1px solid var(--ta-border);
    padding: 10px 0;
    z-index: 1040;
    transform: translateY(-100%);
    transition: transform 0.25s ease;
    box-shadow: var(--shadow-md);
}

.sticky-search-bar.visible { transform: translateY(0); }

.sticky-search-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-search-inner .form-control,
.sticky-search-inner .form-select {
    border-radius: 20px;
    font-size: 0.85rem;
    padding: 8px 14px;
    border-color: var(--ta-border);
}

.sticky-search-inner .btn { padding: 8px 20px; font-size: 0.85rem; white-space: nowrap; }

/* Scrollable category pills on mobile */
.category-pills-scroll {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-pills-scroll::-webkit-scrollbar { display: none; }
.category-pills-scroll .category-pill { flex-shrink: 0; }

/* Active nav indicator */
.nav-link.active { background: var(--ta-green-bg); color: var(--ta-green-dark) !important; }

/* Form focus global */
.form-control:focus, .form-select:focus {
    border-color: var(--ta-green);
    box-shadow: 0 0 0 3px rgba(4,31,79,0.12);
}
.footer-newsletter {
    background: var(--ta-warm);
    border-top: 1px solid var(--ta-border);
    padding: 32px 0;
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.footer-newsletter p { color: var(--ta-text-muted); font-size: 0.9rem; margin-bottom: 0; }

.newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 420px;
}

.newsletter-form .form-control {
    border-radius: 24px;
    border-color: var(--ta-border);
    padding: 10px 16px;
}

.newsletter-form .btn { border-radius: 24px; white-space: nowrap; }

/* Listing highlights */
.listing-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.listing-highlight {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ta-green-dark);
}

.listing-highlight i { font-size: 0.85rem; }

/* Modal TA polish */
.lead-modal .modal-title, .exit-modal .modal-title { font-weight: 800; font-size: 1.15rem; }
.lead-modal, .exit-modal { border-radius: var(--radius-lg); overflow: hidden; }
.lead-modal .modal-header, .exit-modal .modal-header { background: var(--ta-warm); }

/* Review card hover */
.review-card { transition: var(--transition); }
.review-card:hover { box-shadow: var(--shadow-md); border-color: #ccc; }

/* Active nav indicator */
.nav-link.active { background: var(--ta-green-bg); color: var(--ta-green-dark) !important; }

/* Form focus global */
.form-control:focus, .form-select:focus {
    border-color: var(--ta-green);
    box-shadow: 0 0 0 3px rgba(4,31,79,0.12);
}
