@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --accent: #eab308; /* Gold accent for reviews */
    --accent-light: #fef08a;
    --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    --card-bg: rgba(30, 41, 59, 0.7);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --whatsapp-green: #25d366;
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 16px 40px;
    overflow-x: hidden;
}

/* Container limits width to replicate clean mobile-app behavior on desktop */
.app-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Language and Quick Actions Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    margin-top: 10px;
}

.logo-container {
    width: 100%;
    max-width: 280px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 90%;
}

/* Language selector switch */
.lang-switch {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2px;
    backdrop-filter: blur(5px);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

/* TURSAB License Badge */
.tursab-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    width: fit-content;
    margin: 0 auto;
}

.tursab-badge .dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

/* Rating Display */
.rating-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(234, 179, 8, 0.15);
    border-radius: 20px;
    padding: 12px 20px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(234, 179, 8, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.rating-display:hover {
    border-color: rgba(234, 179, 8, 0.35);
    box-shadow: 0 6px 24px rgba(234, 179, 8, 0.12), 0 0 15px rgba(234, 179, 8, 0.05);
    transform: translateY(-2px);
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.rating-stars {
    color: var(--accent);
    display: flex;
    gap: 3px;
    font-size: 1rem;
}

.rating-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Main CTA Section (Google Review Button) */
.review-cta-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(30, 41, 59, 0.7) 100%);
    border: 1px solid rgba(37, 99, 235, 0.4);
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--glass-shadow), 0 0 20px rgba(37, 99, 235, 0.15);
    position: relative;
    overflow: hidden;
}

.review-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.review-cta-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.review-cta-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.review-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    animation: pulse 2s infinite;
}

.review-btn:hover {
    transform: scale(1.03);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.review-btn:active {
    transform: scale(0.97);
}

.review-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Link Cards List */
.link-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.25);
    background: rgba(30, 41, 59, 0.85);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 15px rgba(37, 99, 235, 0.08);
}

.link-card:active {
    transform: translateY(1px);
}

.link-icon-container {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.icon-whatsapp { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); }
.icon-phone { background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%); }
.icon-web { background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%); }
.icon-booking { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.icon-qr { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }

.link-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.link-title {
    font-size: 1rem;
    font-weight: 600;
}

.link-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.link-arrow {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.link-card:hover .link-arrow {
    transform: translateX(4px);
    color: rgba(255, 255, 255, 0.6);
}

/* Services Preview */
.services-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-header {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.service-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 12px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.service-icon {
    font-size: 1.25rem;
    color: var(--primary-light);
}

.service-name {
    font-size: 0.75rem;
    font-weight: 600;
}

/* QR Modal Screen */
.qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.qr-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 24px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.qr-modal.active .modal-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.modal-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 10px;
}

.modal-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.qr-toggle-container {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2px;
    margin-bottom: 20px;
}

.qr-toggle-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.qr-toggle-btn.active {
    background: var(--primary);
    color: white;
}

.qr-wrapper {
    background: white;
    padding: 16px;
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Placeholder or generated canvas layout */
#qrcode canvas, #qrcode img {
    max-width: 100%;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-download {
    background: var(--primary);
    color: white;
}

.btn-download:hover {
    background: var(--primary-dark);
}

.btn-share {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-share:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer Section */
footer {
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.powered-by {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.powered-by strong {
    color: rgba(255, 255, 255, 0.4);
}

/* Redirect Loader Screen */
.redirect-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0f172a;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    text-align: center;
}

.redirect-screen.active {
    display: flex;
}

.spinner {
    width: 64px;
    height: 64px;
    border: 5px solid rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-light);
    animation: spin 1s linear infinite;
    margin-bottom: 24px;
    position: relative;
}

.spinner-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent);
    font-size: 1.25rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.redirect-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.redirect-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 320px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.countdown-wrapper {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.1);
}

.fallback-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}

.fallback-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Accordion Mini-Site Sections
   ========================================================================== */

.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.accordion-item.active {
    border-color: rgba(37, 99, 235, 0.3);
    background: rgba(30, 41, 59, 0.85);
}

.accordion-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.accordion-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.accordion-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.icon-blue { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
.icon-indigo { background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%); }
.icon-violet { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }

.accordion-title-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.accordion-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.accordion-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.accordion-chevron {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.accordion-item.active .accordion-chevron {
    transform: rotate(180deg);
    color: var(--primary-light);
}

/* Smooth Accordion Height Transition using CSS Grid */
.accordion-content-outer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.accordion-item.active .accordion-content-outer {
    grid-template-rows: 1fr;
}

.accordion-content-inner {
    overflow: hidden;
    min-height: 0;
}

.accordion-body {
    padding: 0 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 16px;
}

.service-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.service-list-bullet {
    color: var(--primary-light);
    font-size: 0.85rem;
    margin-top: 2px;
}

.service-item-title {
    font-weight: 600;
    color: white;
}

.service-sub-details {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-top: 2px;
}

.features-pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.feature-pill i {
    color: var(--primary-light);
    font-size: 0.7rem;
}

.accordion-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
    cursor: pointer;
}

.accordion-cta-btn:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transform: translateY(-1px);
}

.accordion-cta-btn:active {
    transform: translateY(1px);
}

/* ==========================================================================
   Ambient Background Glow Orbs
   ========================================================================== */

.bg-orb {
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.14;
    z-index: -1;
    pointer-events: none;
    animation: floatOrb 22s ease-in-out infinite alternate;
}

.orb-1 {
    top: 8%;
    left: -60px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
}

.orb-2 {
    bottom: 20%;
    right: -60px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    animation-delay: -11s;
    animation-duration: 18s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(70px, 45px) scale(1.18);
    }
}

/* ==========================================================================
   Social Profile Links Row
   ========================================================================== */

.social-profiles-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 14px;
    width: 100%;
}

.social-profile-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.social-profile-btn:hover {
    transform: translateY(-4px) scale(1.08);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.btn-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    box-shadow: 0 8px 16px rgba(214, 36, 159, 0.35);
}

.btn-facebook:hover {
    background: #1877f2;
    box-shadow: 0 8px 16px rgba(24, 119, 242, 0.35);
}

/* Trustpilot Brand Colors */
.icon-trustpilot {
    background: linear-gradient(135deg, #00b67a 0%, #00875a 100%);
}

/* ==========================================================================
   Accordion Internal Enhancements (Showcase, Tours & Rentals Grids)
   ========================================================================== */

/* VIP Vehicle Showcase Card in Airport Transfers */
.showcase-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(37, 99, 235, 0.04);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 16px;
    padding: 12px 16px;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.showcase-card:hover {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.08);
}

.showcase-img {
    width: 85px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s;
}

.showcase-card:hover .showcase-img {
    transform: scale(1.08);
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.showcase-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

.showcase-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Grids for Tours and Rentals */
.tours-grid, .rentals-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.tour-card, .rental-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 8px;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-width: 0;
    text-decoration: none;
}

.tour-card:hover, .rental-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.tour-img-wrapper, .rental-img-wrapper {
    width: 72px;
    height: 54px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.tour-img, .rental-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.tour-card:hover .tour-img, .rental-card:hover .rental-img {
    transform: scale(1.1);
}

.tour-info, .rental-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.tour-name, .rental-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-desc, .rental-desc {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


