/* =====================================================
   YTR - YOURS TO RENT - MAIN STYLESHEET
   South Africa's Premier Vehicle Marketplace
   Using unique class names prefixed with "ytr-"
===================================================== */

/* =====================================================
   CSS VARIABLES & ROOT CONFIGURATION
===================================================== */
:root {
    /* Primary Colors - Gold/Orange/Red Gradient Theme */
    --ytr-gold: #FFD700;
    --ytr-orange: #FF8C00;
    --ytr-red: #DC143C;
    --ytr-gradient: linear-gradient(135deg, #FFD700 0%, #FF8C00 50%, #DC143C 100%);
    --ytr-gradient-hover: linear-gradient(135deg, #FFC700 0%, #FF7C00 50%, #CC1030 100%);
    
    /* Background Colors */
    --ytr-bg-primary: #0a0a0a;
    --ytr-bg-secondary: #111111;
    --ytr-bg-tertiary: #1a1a1a;
    --ytr-bg-card: #151515;
    --ytr-bg-card-hover: #1f1f1f;
    
    /* Text Colors */
    --ytr-text-white: #ffffff;
    --ytr-text-light: #e5e5e5;
    --ytr-text-muted: #9ca3af;
    --ytr-text-dark: #6b7280;
    
    /* Border Colors */
    --ytr-border: rgba(255, 255, 255, 0.1);
    --ytr-border-hover: rgba(255, 215, 0, 0.3);
    
    /* Shadows */
    --ytr-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --ytr-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --ytr-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --ytr-shadow-glow: 0 0 30px rgba(255, 215, 0, 0.2);
    
    /* Typography */
    --ytr-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ytr-font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --ytr-section-padding: 100px 0;
    --ytr-container-width: 1400px;
    
    /* Transitions */
    --ytr-transition: all 0.3s ease;
    --ytr-transition-slow: all 0.5s ease;
    
    /* Border Radius */
    --ytr-radius-sm: 8px;
    --ytr-radius-md: 12px;
    --ytr-radius-lg: 20px;
    --ytr-radius-xl: 30px;
}

/* =====================================================
   RESET & BASE STYLES
===================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

.ytr-body-wrapper {
    font-family: var(--ytr-font-primary);
    background-color: var(--ytr-bg-primary);
    color: var(--ytr-text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--ytr-transition);
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* =====================================================
   PRELOADER
===================================================== */
.ytr-preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ytr-bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.ytr-preloader-overlay.ytr-hidden {
    opacity: 0;
    visibility: hidden;
}

.ytr-preloader-spinner {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ytr-preloader-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: ytr-pulse 1.5s ease-in-out infinite;
}

.ytr-preloader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--ytr-gold);
    border-radius: 50%;
    animation: ytr-spin 1s linear infinite;
}

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

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

/* =====================================================
   UTILITY CLASSES
===================================================== */
.ytr-section-container {
    max-width: var(--ytr-container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.ytr-text-gradient {
    background: var(--ytr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ytr-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ytr-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ytr-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ytr-section-title {
    font-family: var(--ytr-font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--ytr-text-white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.ytr-section-subtitle {
    font-size: 1.125rem;
    color: var(--ytr-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   NAVIGATION
===================================================== */
.ytr-navigation-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--ytr-border);
    z-index: 1000;
    transition: var(--ytr-transition);
}

.ytr-navigation-bar.ytr-nav-scrolled {
    padding: 10px 0;
    box-shadow: var(--ytr-shadow-lg);
}

.ytr-nav-container {
    max-width: var(--ytr-container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ytr-nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ytr-nav-logo {
    height: 50px;
    width: auto;
}

.ytr-nav-tagline {
    font-size: 0.75rem;
    color: var(--ytr-text-muted);
    max-width: 150px;
    line-height: 1.4;
    display: none;
}

@media (min-width: 1200px) {
    .ytr-nav-tagline {
        display: block;
    }
}

.ytr-nav-links-wrapper {
    display: none;
    align-items: center;
    gap: 35px;
}

@media (min-width: 992px) {
    .ytr-nav-links-wrapper {
        display: flex;
    }
}

.ytr-nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ytr-text-light);
    position: relative;
    padding: 5px 0;
}

.ytr-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ytr-gradient);
    transition: var(--ytr-transition);
}

.ytr-nav-link:hover {
    color: var(--ytr-gold);
}

.ytr-nav-link:hover::after {
    width: 100%;
}

.ytr-nav-actions {
    display: none;
    align-items: center;
    gap: 15px;
}

@media (min-width: 992px) {
    .ytr-nav-actions {
        display: flex;
    }
}

.ytr-nav-btn-outline {
    padding: 10px 20px;
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ytr-text-light);
    transition: var(--ytr-transition);
}

.ytr-nav-btn-outline:hover {
    border-color: var(--ytr-gold);
    color: var(--ytr-gold);
}

.ytr-nav-btn-primary {
    padding: 10px 25px;
    background: var(--ytr-gradient);
    border-radius: var(--ytr-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ytr-bg-primary);
    transition: var(--ytr-transition);
}

.ytr-nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--ytr-shadow-glow);
}

/* Mobile Menu Toggle */
.ytr-mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 10px;
}

@media (min-width: 992px) {
    .ytr-mobile-menu-toggle {
        display: none;
    }
}

.ytr-mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--ytr-text-white);
    transition: var(--ytr-transition);
}

.ytr-mobile-menu-toggle.ytr-menu-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ytr-mobile-menu-toggle.ytr-menu-active span:nth-child(2) {
    opacity: 0;
}

.ytr-mobile-menu-toggle.ytr-menu-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.ytr-mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--ytr-bg-secondary);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 15px;
    border-bottom: 1px solid var(--ytr-border);
    z-index: 999;
}

.ytr-mobile-menu.ytr-mobile-menu-open {
    display: flex;
}

.ytr-mobile-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ytr-text-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--ytr-border);
}

.ytr-mobile-link-cta {
    display: inline-block;
    padding: 12px 25px;
    background: var(--ytr-gradient);
    border-radius: var(--ytr-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ytr-bg-primary);
    text-align: center;
    margin-top: 10px;
}

/* =====================================================
   HERO SECTION
===================================================== */
.ytr-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background:black;
}

.ytr-hero-background {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%;
    height: 80%;
    pointer-events: none;
}

.ytr-hero-vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left bottom;
    opacity: 0.9;
    filter: brightness(0.95);
}

@media (max-width: 991px) {
    .ytr-hero-background {
        width: 100%;
        height: 50%;
        opacity: 0.3;
    }
}

.ytr-hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: var(--ytr-container-width);
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
}

.ytr-hero-text-section {
    max-width: 700px;
    margin-left: auto;
}

@media (max-width: 991px) {
    .ytr-hero-text-section {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
}

.ytr-hero-headline {
    margin-bottom: 25px;
}

.ytr-headline-white, .ytr-headline-gradient {
    display: block;
    font-family: var(--ytr-font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
}

.ytr-headline-white {
    color: var(--ytr-text-white);
}

.ytr-headline-gradient {
    background: var(--ytr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .ytr-headline-white, .ytr-headline-gradient {
        font-size: 2.5rem;
    }
}

.ytr-hero-description {
    font-size: 1.125rem;
    color: var(--ytr-text-muted);
    margin-bottom: 35px;
    line-height: 1.7;
}

.ytr-hero-cta-wrapper {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .ytr-hero-cta-wrapper {
        justify-content: center;
    }
}

.ytr-cta-primary, .ytr-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--ytr-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--ytr-transition);
}

.ytr-cta-primary {
    background: var(--ytr-gradient);
    color: var(--ytr-bg-primary);
}

.ytr-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--ytr-shadow-glow);
}

.ytr-cta-secondary {
    background: transparent;
    border: 2px solid var(--ytr-gold);
    color: var(--ytr-gold);
}

.ytr-cta-secondary:hover {
    background: var(--ytr-gold);
    color: var(--ytr-bg-primary);
}

/* Hero Stats */
.ytr-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .ytr-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.ytr-stat-item {
    text-align: center;
}

@media (min-width: 992px) {
    .ytr-stat-item {
        text-align: left;
    }
}

.ytr-stat-number {
    font-family: var(--ytr-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--ytr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ytr-stat-suffix {
    font-family: var(--ytr-font-display);
    font-size: 2rem;
    font-weight: 700;
    background: var(--ytr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ytr-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--ytr-text-muted);
    margin-top: 5px;
}

/* Hero Scroll Indicator */
.ytr-hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--ytr-text-muted);
    font-size: 0.85rem;
    animation: ytr-bounce 2s infinite;
    cursor: pointer;
}

.ytr-hero-scroll-indicator i {
    font-size: 1.2rem;
}

@keyframes ytr-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =====================================================
   SEARCH SECTION
===================================================== */
.ytr-search-section {
    padding: 80px 0;
    background: var(--ytr-bg-secondary);
    margin-top: -50px;
    position: relative;
    z-index: 20;
}

.ytr-search-box {
    background: var(--ytr-bg-tertiary);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-lg);
    padding: 40px;
    box-shadow: var(--ytr-shadow-lg);
}

.ytr-search-title {
    font-family: var(--ytr-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ytr-text-white);
    margin-bottom: 30px;
    text-align: center;
}

.ytr-search-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ytr-search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .ytr-search-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ytr-search-grid {
        grid-template-columns: 1fr;
    }
}

.ytr-search-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ytr-field-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ytr-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ytr-field-label i {
    color: var(--ytr-gold);
}

.ytr-field-input {
    padding: 14px 16px;
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-sm);
    color: var(--ytr-text-white);
    font-size: 0.95rem;
    transition: var(--ytr-transition);
}

.ytr-field-input:focus {
    outline: none;
    border-color: var(--ytr-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.ytr-field-input option {
    background: var(--ytr-bg-card);
    color: var(--ytr-text-white);
}

.ytr-search-submit {
    padding: 16px 40px;
    background: var(--ytr-gradient);
    border-radius: var(--ytr-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ytr-bg-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--ytr-transition);
    align-self: center;
    min-width: 200px;
}

.ytr-search-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--ytr-shadow-glow);
}

/* =====================================================
   CATEGORIES SECTION
===================================================== */
.ytr-categories-section {
    padding: var(--ytr-section-padding);
    background: var(--ytr-bg-primary);
}

.ytr-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .ytr-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ytr-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ytr-category-card {
    position: relative;
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--ytr-transition);
    overflow: hidden;
}

.ytr-category-card:hover {
    background: var(--ytr-bg-card-hover);
    border-color: var(--ytr-border-hover);
    transform: translateY(-5px);
    box-shadow: var(--ytr-shadow-glow);
}

.ytr-category-popular {
    border-color: var(--ytr-gold);
}

.ytr-popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    background: var(--ytr-gradient);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ytr-bg-primary);
    text-transform: uppercase;
}

.ytr-category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--ytr-gold);
    transition: var(--ytr-transition);
}

.ytr-category-card:hover .ytr-category-icon {
    background: var(--ytr-gradient);
    color: var(--ytr-bg-primary);
}

.ytr-category-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 8px;
}

.ytr-category-count {
    font-size: 0.85rem;
    color: var(--ytr-text-muted);
    margin-bottom: 5px;
}

.ytr-category-price {
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--ytr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   FEATURED VEHICLES SECTION
===================================================== */
.ytr-featured-section {
    padding: var(--ytr-section-padding);
    background: var(--ytr-bg-secondary);
}

.ytr-featured-swiper {
    padding: 20px 0 60px;
    position: relative;
}

.ytr-vehicle-card {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-md);
    overflow: hidden;
    transition: var(--ytr-transition);
}

.ytr-vehicle-card:hover {
    border-color: var(--ytr-border-hover);
    transform: translateY(-5px);
    box-shadow: var(--ytr-shadow-lg);
}

.ytr-vehicle-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.ytr-vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--ytr-transition-slow);
}

.ytr-vehicle-card:hover .ytr-vehicle-image {
    transform: scale(1.05);
}

.ytr-vehicle-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ytr-vehicle-badges span {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.ytr-badge-instant {
    background: #10b981;
    color: white;
}

.ytr-badge-superhost {
    background: var(--ytr-gradient);
    color: var(--ytr-bg-primary);
}

.ytr-badge-luxury {
    background: #8b5cf6;
    color: white;
}

.ytr-badge-featured {
    background: #f59e0b;
    color: var(--ytr-bg-primary);
}

.ytr-badge-economy {
    background: #3b82f6;
    color: white;
}

.ytr-vehicle-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--ytr-transition);
}

.ytr-vehicle-favorite:hover,
.ytr-vehicle-favorite.ytr-favorited {
    background: var(--ytr-red);
    color: white;
}

.ytr-vehicle-favorite.ytr-favorited i {
    font-weight: 900;
}

.ytr-vehicle-details {
    padding: 20px;
}

.ytr-vehicle-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.ytr-vehicle-rating i {
    color: var(--ytr-gold);
}

.ytr-vehicle-rating span {
    font-weight: 600;
    color: var(--ytr-text-white);
}

.ytr-trips-count {
    color: var(--ytr-text-muted);
    font-weight: 400;
}

.ytr-vehicle-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 10px;
}

.ytr-vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--ytr-text-muted);
}

.ytr-vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ytr-vehicle-specs i {
    color: var(--ytr-gold);
    font-size: 0.75rem;
}

.ytr-vehicle-location {
    font-size: 0.85rem;
    color: var(--ytr-text-dark);
    margin-bottom: 15px;
}

.ytr-vehicle-location i {
    color: var(--ytr-gold);
    margin-right: 5px;
}

.ytr-vehicle-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--ytr-border);
}

.ytr-vehicle-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ytr-text-white);
}

.ytr-vehicle-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--ytr-text-muted);
}

.ytr-vehicle-book-btn {
    padding: 10px 20px;
    background: var(--ytr-gradient);
    border-radius: var(--ytr-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ytr-bg-primary);
    transition: var(--ytr-transition);
}

.ytr-vehicle-book-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--ytr-shadow-glow);
}

/* Swiper Customization */
.ytr-swiper-button-prev,
.ytr-swiper-button-next {
    width: 50px;
    height: 50px;
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ytr-text-white);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: var(--ytr-transition);
}

.ytr-swiper-button-prev {
    left: -25px;
}

.ytr-swiper-button-next {
    right: -25px;
}

@media (max-width: 1400px) {
    .ytr-swiper-button-prev {
        left: 10px;
    }
    .ytr-swiper-button-next {
        right: 10px;
    }
}

.ytr-swiper-button-prev:hover,
.ytr-swiper-button-next:hover {
    background: var(--ytr-gold);
    color: var(--ytr-bg-primary);
    border-color: var(--ytr-gold);
}

.ytr-swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.ytr-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--ytr-border);
    opacity: 1;
}

.ytr-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--ytr-gold);
    width: 30px;
    border-radius: 5px;
}

/* View All Button */
.ytr-view-all-wrapper {
    text-align: center;
    margin-top: 40px;
}

.ytr-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border: 2px solid var(--ytr-gold);
    border-radius: var(--ytr-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ytr-gold);
    transition: var(--ytr-transition);
}

.ytr-view-all-btn:hover {
    background: var(--ytr-gold);
    color: var(--ytr-bg-primary);
}

/* =====================================================
   HOW IT WORKS SECTION
===================================================== */
.ytr-how-it-works-section {
    padding: var(--ytr-section-padding);
    background: var(--ytr-bg-primary);
}

.ytr-how-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.ytr-how-tab {
    padding: 14px 30px;
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-sm);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ytr-text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--ytr-transition);
}

.ytr-how-tab:hover {
    border-color: var(--ytr-border-hover);
}

.ytr-how-tab-active {
    background: var(--ytr-gradient);
    border-color: transparent;
    color: var(--ytr-bg-primary);
}

.ytr-how-content {
    display: none;
}

.ytr-how-content-active {
    display: block;
}

.ytr-how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .ytr-how-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ytr-how-steps {
        grid-template-columns: 1fr;
    }
}

.ytr-how-step {
    position: relative;
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-md);
    padding: 30px;
    text-align: center;
    transition: var(--ytr-transition);
}

.ytr-how-step:hover {
    border-color: var(--ytr-border-hover);
    transform: translateY(-5px);
}

.ytr-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--ytr-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ytr-bg-primary);
}

.ytr-step-icon {
    width: 70px;
    height: 70px;
    margin: 10px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--ytr-gold);
}

.ytr-step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 10px;
}

.ytr-step-desc {
    font-size: 0.9rem;
    color: var(--ytr-text-muted);
    line-height: 1.6;
}

/* =====================================================
   SERVICES SECTION
===================================================== */
.ytr-services-section {
    padding: var(--ytr-section-padding);
    background: var(--ytr-bg-secondary);
}

.ytr-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 991px) {
    .ytr-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ytr-services-grid {
        grid-template-columns: 1fr;
    }
}

.ytr-service-card {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-md);
    padding: 35px 25px;
    text-align: center;
    transition: var(--ytr-transition);
    display: block;
}

.ytr-service-card:hover {
    border-color: var(--ytr-gold);
    transform: translateY(-5px);
    box-shadow: var(--ytr-shadow-glow);
}

.ytr-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--ytr-gold);
    transition: var(--ytr-transition);
}

.ytr-service-card:hover .ytr-service-icon {
    background: var(--ytr-gradient);
    color: var(--ytr-bg-primary);
}

.ytr-service-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 12px;
}

.ytr-service-desc {
    font-size: 0.9rem;
    color: var(--ytr-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.ytr-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ytr-gold);
}

.ytr-service-link i {
    transition: var(--ytr-transition);
}

.ytr-service-card:hover .ytr-service-link i {
    transform: translateX(5px);
}

/* =====================================================
   WHY CHOOSE US SECTION
===================================================== */
.ytr-why-section {
    padding: var(--ytr-section-padding);
    background: var(--ytr-bg-primary);
}

.ytr-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 991px) {
    .ytr-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ytr-why-grid {
        grid-template-columns: 1fr;
    }
}

.ytr-why-card {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-md);
    padding: 30px;
    transition: var(--ytr-transition);
}

.ytr-why-card:hover {
    border-color: var(--ytr-border-hover);
    transform: translateY(-5px);
}

.ytr-why-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--ytr-radius-sm);
    font-size: 1.5rem;
    color: var(--ytr-gold);
    margin-bottom: 20px;
}

.ytr-why-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 12px;
}

.ytr-why-desc {
    font-size: 0.9rem;
    color: var(--ytr-text-muted);
    line-height: 1.6;
}

/* =====================================================
   TESTIMONIALS SECTION
===================================================== */
.ytr-testimonials-section {
    padding: var(--ytr-section-padding);
    background: var(--ytr-bg-secondary);
}

.ytr-testimonials-swiper {
    padding-bottom: 60px;
}

.ytr-testimonial-card {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-md);
    padding: 35px;
    height: 100%;
}

.ytr-testimonial-stars {
    margin-bottom: 20px;
}

.ytr-testimonial-stars i {
    color: var(--ytr-gold);
    font-size: 1rem;
    margin-right: 3px;
}

.ytr-testimonial-text {
    font-size: 1rem;
    color: var(--ytr-text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.ytr-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ytr-author-avatar {
    width: 50px;
    height: 50px;
    background: var(--ytr-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--ytr-bg-primary);
}

.ytr-author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 3px;
}

.ytr-author-info span {
    font-size: 0.85rem;
    color: var(--ytr-text-muted);
}

.ytr-testimonials-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.ytr-testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--ytr-border);
    opacity: 1;
}

.ytr-testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--ytr-gold);
}

/* =====================================================
   CTA SECTION
===================================================== */
.ytr-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(220, 20, 60, 0.1) 100%);
    border-top: 1px solid var(--ytr-border);
    border-bottom: 1px solid var(--ytr-border);
}

.ytr-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ytr-cta-title {
    font-family: var(--ytr-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ytr-text-white);
    margin-bottom: 15px;
}

.ytr-cta-desc {
    font-size: 1.1rem;
    color: var(--ytr-text-muted);
    margin-bottom: 30px;
}

.ytr-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* =====================================================
   FEEDBACK SECTION
===================================================== */
.ytr-feedback-section {
    padding: var(--ytr-section-padding);
    background: var(--ytr-bg-primary);
}

.ytr-feedback-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-lg);
    padding: 40px;
}

.ytr-feedback-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.ytr-feedback-tab {
    padding: 10px 18px;
    background: var(--ytr-bg-tertiary);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-sm);
    font-size: 0.9rem;
    color: var(--ytr-text-muted);
    transition: var(--ytr-transition);
}

.ytr-feedback-tab:hover {
    border-color: var(--ytr-border-hover);
    color: var(--ytr-text-light);
}

.ytr-feedback-tab-active {
    background: var(--ytr-gradient);
    border-color: transparent;
    color: var(--ytr-bg-primary);
    font-weight: 600;
}

.ytr-feedback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ytr-feedback-rating {
    text-align: center;
    margin-bottom: 10px;
}

.ytr-feedback-rating span {
    display: block;
    font-size: 0.95rem;
    color: var(--ytr-text-muted);
    margin-bottom: 10px;
}

.ytr-rating-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.ytr-rating-stars i {
    font-size: 1.8rem;
    color: var(--ytr-border);
    cursor: pointer;
    transition: var(--ytr-transition);
}

.ytr-rating-stars i:hover,
.ytr-rating-stars i.ytr-star-active {
    color: var(--ytr-gold);
}

.ytr-feedback-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .ytr-feedback-row {
        grid-template-columns: 1fr;
    }
}

.ytr-feedback-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ytr-feedback-field label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ytr-text-muted);
}

.ytr-feedback-field input,
.ytr-feedback-field textarea {
    padding: 14px 16px;
    background: var(--ytr-bg-tertiary);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-sm);
    color: var(--ytr-text-white);
    font-size: 0.95rem;
    transition: var(--ytr-transition);
    resize: vertical;
}

.ytr-feedback-field input:focus,
.ytr-feedback-field textarea:focus {
    outline: none;
    border-color: var(--ytr-gold);
}

.ytr-feedback-submit {
    padding: 16px 40px;
    background: var(--ytr-gradient);
    border-radius: var(--ytr-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ytr-bg-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--ytr-transition);
    align-self: center;
}

.ytr-feedback-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--ytr-shadow-glow);
}

/* =====================================================
   NEWSLETTER SECTION
===================================================== */
.ytr-newsletter-section {
    padding: 60px 0;
    background: var(--ytr-bg-secondary);
    border-top: 1px solid var(--ytr-border);
}

.ytr-newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.ytr-newsletter-title {
    font-family: var(--ytr-font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 10px;
}

.ytr-newsletter-desc {
    font-size: 1rem;
    color: var(--ytr-text-muted);
    margin-bottom: 25px;
}

.ytr-newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .ytr-newsletter-form {
        flex-direction: column;
    }
}

.ytr-newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-sm);
    color: var(--ytr-text-white);
    font-size: 0.95rem;
}

.ytr-newsletter-form input:focus {
    outline: none;
    border-color: var(--ytr-gold);
}

.ytr-newsletter-form button {
    padding: 14px 25px;
    background: var(--ytr-gradient);
    border-radius: var(--ytr-radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ytr-bg-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--ytr-transition);
}

.ytr-newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--ytr-shadow-glow);
}

/* =====================================================
   FOOTER
===================================================== */
.ytr-footer-section {
    padding: 80px 0 30px;
    background: var(--ytr-bg-primary);
    border-top: 1px solid var(--ytr-border);
}

.ytr-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .ytr-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .ytr-footer-grid {
        grid-template-columns: 1fr;
    }
}

.ytr-footer-brand {
    max-width: 300px;
}

@media (max-width: 991px) {
    .ytr-footer-brand {
        max-width: 100%;
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .ytr-footer-brand {
        grid-column: span 1;
    }
}

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

.ytr-footer-tagline {
    font-size: 0.95rem;
    color: var(--ytr-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.ytr-footer-social {
    display: flex;
    gap: 12px;
}

.ytr-social-link {
    width: 40px;
    height: 40px;
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ytr-text-muted);
    transition: var(--ytr-transition);
}

.ytr-social-link:hover {
    background: var(--ytr-gradient);
    border-color: transparent;
    color: var(--ytr-bg-primary);
}

.ytr-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ytr-footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 10px;
}

.ytr-footer-links a {
    font-size: 0.9rem;
    color: var(--ytr-text-muted);
}

.ytr-footer-links a:hover {
    color: var(--ytr-gold);
}

.ytr-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--ytr-border);
    font-size: 0.85rem;
    color: var(--ytr-text-dark);
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 576px) {
    .ytr-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =====================================================
   BACK TO TOP BUTTON
===================================================== */
.ytr-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--ytr-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ytr-bg-primary);
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--ytr-transition);
    z-index: 100;
    box-shadow: var(--ytr-shadow-glow);
}

.ytr-back-to-top.ytr-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ytr-back-to-top:hover {
    transform: translateY(-5px);
}

/* =====================================================
   RESPONSIVE ADJUSTMENTS
===================================================== */
@media (max-width: 768px) {
    :root {
        --ytr-section-padding: 60px 0;
    }
    
    .ytr-section-title {
        font-size: 2rem;
    }
    
    .ytr-hero-headline {
        text-align: center;
    }
}

/* =====================================================
   PAGE-SPECIFIC STYLES - BROWSE PAGE
===================================================== */
.ytr-browse-hero {
    padding: 140px 0 60px;
    background: var(--ytr-bg-secondary);
}

.ytr-browse-hero-content {
    max-width: 700px;
}

.ytr-browse-title {
    font-family: var(--ytr-font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--ytr-text-white);
    margin-bottom: 15px;
}

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

.ytr-browse-filters-section {
    padding: 30px 0;
    background: var(--ytr-bg-primary);
    border-bottom: 1px solid var(--ytr-border);
    position: sticky;
    top: 80px;
    z-index: 50;
}

.ytr-filters-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ytr-filter-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
}

.ytr-filter-pill {
    padding: 10px 18px;
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--ytr-text-muted);
    transition: var(--ytr-transition);
    white-space: nowrap;
}

.ytr-filter-pill:hover {
    border-color: var(--ytr-border-hover);
    color: var(--ytr-text-light);
}

.ytr-filter-pill-active {
    background: var(--ytr-gradient);
    border-color: transparent;
    color: var(--ytr-bg-primary);
    font-weight: 600;
}

.ytr-filter-pill span {
    margin-left: 5px;
    opacity: 0.7;
}

.ytr-sort-dropdown {
    position: relative;
}

.ytr-sort-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-sm);
    font-size: 0.9rem;
    color: var(--ytr-text-light);
    transition: var(--ytr-transition);
}

.ytr-sort-btn:hover {
    border-color: var(--ytr-border-hover);
}

.ytr-browse-content {
    padding: 40px 0 80px;
    background: var(--ytr-bg-primary);
}

.ytr-browse-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .ytr-browse-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .ytr-browse-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ytr-browse-grid {
        grid-template-columns: 1fr;
    }
}

.ytr-browse-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.ytr-results-count {
    font-size: 1rem;
    color: var(--ytr-text-muted);
}

.ytr-results-count strong {
    color: var(--ytr-text-white);
}

.ytr-view-toggle {
    display: flex;
    gap: 8px;
}

.ytr-view-btn {
    width: 40px;
    height: 40px;
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ytr-text-muted);
    transition: var(--ytr-transition);
}

.ytr-view-btn:hover {
    border-color: var(--ytr-border-hover);
    color: var(--ytr-text-light);
}

.ytr-view-btn-active {
    background: var(--ytr-gradient);
    border-color: transparent;
    color: var(--ytr-bg-primary);
}

.ytr-load-more {
    text-align: center;
    margin-top: 50px;
}

.ytr-load-more-btn {
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--ytr-gold);
    border-radius: var(--ytr-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ytr-gold);
    transition: var(--ytr-transition);
}

.ytr-load-more-btn:hover {
    background: var(--ytr-gold);
    color: var(--ytr-bg-primary);
}

/* =====================================================
   PAGE HERO STYLES (Reusable)
===================================================== */
.ytr-page-hero {
    padding: 140px 0 80px;
    background: var(--ytr-bg-secondary);
    text-align: center;
}

.ytr-page-hero-title {
    font-family: var(--ytr-font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--ytr-text-white);
    margin-bottom: 15px;
}

.ytr-page-hero-subtitle {
    font-size: 1.2rem;
    color: var(--ytr-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.ytr-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.ytr-breadcrumb a {
    color: var(--ytr-text-muted);
}

.ytr-breadcrumb a:hover {
    color: var(--ytr-gold);
}

.ytr-breadcrumb span {
    color: var(--ytr-gold);
}

/* =====================================================
   ABOUT PAGE STYLES
===================================================== */
.ytr-about-story-section {
    padding: var(--ytr-section-padding);
    background: var(--ytr-bg-primary);
}

.ytr-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .ytr-story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.ytr-story-text h2 {
    font-family: var(--ytr-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ytr-text-white);
    margin-bottom: 25px;
}

.ytr-story-text p {
    font-size: 1.05rem;
    color: var(--ytr-text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.ytr-story-image {
    position: relative;
}

.ytr-story-image img {
    border-radius: var(--ytr-radius-lg);
    width: 100%;
}

.ytr-about-values-section {
    padding: var(--ytr-section-padding);
    background: var(--ytr-bg-secondary);
}

.ytr-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .ytr-values-grid {
        grid-template-columns: 1fr;
    }
}

.ytr-value-card {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--ytr-transition);
}

.ytr-value-card:hover {
    border-color: var(--ytr-border-hover);
    transform: translateY(-5px);
}

.ytr-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--ytr-gold);
}

.ytr-value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 15px;
}

.ytr-value-desc {
    font-size: 0.95rem;
    color: var(--ytr-text-muted);
    line-height: 1.7;
}

/* =====================================================
   CONTACT PAGE STYLES
===================================================== */
.ytr-contact-section {
    padding: var(--ytr-section-padding);
    background: var(--ytr-bg-primary);
}

.ytr-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 991px) {
    .ytr-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.ytr-contact-info h2 {
    font-family: var(--ytr-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ytr-text-white);
    margin-bottom: 20px;
}

.ytr-contact-info p {
    font-size: 1.05rem;
    color: var(--ytr-text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.ytr-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ytr-contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ytr-contact-method-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--ytr-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--ytr-gold);
    flex-shrink: 0;
}

.ytr-contact-method-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 5px;
}

.ytr-contact-method-text p {
    font-size: 0.9rem;
    color: var(--ytr-text-muted);
    margin-bottom: 0;
}

.ytr-contact-form-wrapper {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-lg);
    padding: 40px;
}

.ytr-contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 25px;
}

.ytr-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ytr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .ytr-form-row {
        grid-template-columns: 1fr;
    }
}

.ytr-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ytr-form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ytr-text-muted);
}

.ytr-form-group input,
.ytr-form-group select,
.ytr-form-group textarea {
    padding: 14px 16px;
    background: var(--ytr-bg-tertiary);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-sm);
    color: var(--ytr-text-white);
    font-size: 0.95rem;
    transition: var(--ytr-transition);
}

.ytr-form-group input:focus,
.ytr-form-group select:focus,
.ytr-form-group textarea:focus {
    outline: none;
    border-color: var(--ytr-gold);
}

.ytr-form-submit {
    padding: 16px 40px;
    background: var(--ytr-gradient);
    border-radius: var(--ytr-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ytr-bg-primary);
    transition: var(--ytr-transition);
    align-self: flex-start;
}

.ytr-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--ytr-shadow-glow);
}

/* =====================================================
   SA MAP GLOBAL FOOTPRINT STYLES
===================================================== */
.ytr-global-footprint-section {
    padding: var(--ytr-section-padding);
    background: var(--ytr-bg-secondary);
}

.ytr-sa-map-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.ytr-sa-map-container {
    position: relative;
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-lg);
    padding: 40px;
    overflow: hidden;
}

.ytr-sa-map-svg {
    width: 100%;
    height: auto;
}

.ytr-province-path {
    fill: var(--ytr-bg-tertiary);
    stroke: var(--ytr-gold);
    stroke-width: 1;
    transition: var(--ytr-transition);
    cursor: pointer;
}

.ytr-province-path:hover {
    fill: rgba(255, 215, 0, 0.2);
}

.ytr-map-tooltip {
    position: absolute;
    background: var(--ytr-bg-primary);
    border: 1px solid var(--ytr-gold);
    border-radius: var(--ytr-radius-sm);
    padding: 10px 15px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--ytr-transition);
    z-index: 100;
}

.ytr-map-tooltip.ytr-tooltip-visible {
    opacity: 1;
    transform: translateY(0);
}

.ytr-map-tooltip-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ytr-text-white);
}

.ytr-map-tooltip-region {
    font-size: 0.8rem;
    color: var(--ytr-gold);
}

.ytr-map-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.ytr-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--ytr-text-muted);
}

.ytr-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.ytr-legend-dot-active {
    background: var(--ytr-gold);
}

.ytr-legend-dot-coming {
    background: var(--ytr-text-dark);
}

/* =====================================================
   LIST VEHICLE PAGE STYLES
===================================================== */
.ytr-list-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(220, 20, 60, 0.05) 100%);
}

.ytr-list-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .ytr-list-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.ytr-list-hero-text h1 {
    font-family: var(--ytr-font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--ytr-text-white);
    margin-bottom: 20px;
}

.ytr-list-hero-text p {
    font-size: 1.1rem;
    color: var(--ytr-text-muted);
    margin-bottom: 30px;
}

.ytr-earnings-calculator {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-lg);
    padding: 30px;
}

.ytr-earnings-calculator h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 20px;
    text-align: center;
}

.ytr-calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.ytr-calc-input {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ytr-calc-input label {
    font-size: 0.85rem;
    color: var(--ytr-text-muted);
}

.ytr-calc-input input,
.ytr-calc-input select {
    padding: 12px 15px;
    background: var(--ytr-bg-tertiary);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-sm);
    color: var(--ytr-text-white);
    font-size: 0.95rem;
}

.ytr-calc-result {
    text-align: center;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--ytr-radius-sm);
}

.ytr-calc-result-label {
    font-size: 0.9rem;
    color: var(--ytr-text-muted);
    margin-bottom: 5px;
}

.ytr-calc-result-amount {
    font-family: var(--ytr-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--ytr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ytr-list-benefits-section {
    padding: var(--ytr-section-padding);
    background: var(--ytr-bg-primary);
}

.ytr-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .ytr-benefits-grid {
        grid-template-columns: 1fr;
    }
}

.ytr-benefit-card {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-md);
    padding: 30px;
    text-align: center;
    transition: var(--ytr-transition);
}

.ytr-benefit-card:hover {
    border-color: var(--ytr-border-hover);
}

.ytr-benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--ytr-gold);
}

.ytr-benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 10px;
}

.ytr-benefit-desc {
    font-size: 0.9rem;
    color: var(--ytr-text-muted);
    line-height: 1.6;
}

.ytr-list-requirements-section {
    padding: var(--ytr-section-padding);
    background: var(--ytr-bg-secondary);
}

.ytr-requirements-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ytr-requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-md);
    padding: 25px;
}

.ytr-requirement-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--ytr-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--ytr-gold);
    flex-shrink: 0;
}

.ytr-requirement-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 8px;
}

.ytr-requirement-text p {
    font-size: 0.9rem;
    color: var(--ytr-text-muted);
    line-height: 1.6;
}

/* =====================================================
   FAQ PAGE STYLES
===================================================== */
.ytr-faq-section {
    padding: var(--ytr-section-padding);
    background: var(--ytr-bg-primary);
}

.ytr-faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.ytr-faq-category-btn {
    padding: 12px 25px;
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--ytr-text-muted);
    transition: var(--ytr-transition);
}

.ytr-faq-category-btn:hover {
    border-color: var(--ytr-border-hover);
    color: var(--ytr-text-light);
}

.ytr-faq-category-btn-active {
    background: var(--ytr-gradient);
    border-color: transparent;
    color: var(--ytr-bg-primary);
    font-weight: 600;
}

.ytr-faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ytr-faq-item {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-md);
    overflow: hidden;
}

.ytr-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ytr-text-white);
    transition: var(--ytr-transition);
}

.ytr-faq-question:hover {
    color: var(--ytr-gold);
}

.ytr-faq-question i {
    color: var(--ytr-gold);
    transition: var(--ytr-transition);
}

.ytr-faq-item.ytr-faq-open .ytr-faq-question i {
    transform: rotate(180deg);
}

.ytr-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ytr-faq-item.ytr-faq-open .ytr-faq-answer {
    max-height: 500px;
}

.ytr-faq-answer-content {
    padding: 0 25px 25px;
    font-size: 0.95rem;
    color: var(--ytr-text-muted);
    line-height: 1.7;
}

/* =====================================================
   LEGAL PAGES STYLES (Terms, Privacy, etc.)
===================================================== */
.ytr-legal-section {
    padding: var(--ytr-section-padding);
    background: var(--ytr-bg-primary);
}

.ytr-legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-lg);
    padding: 50px;
}

@media (max-width: 768px) {
    .ytr-legal-content {
        padding: 30px 20px;
    }
}

.ytr-legal-content h2 {
    font-family: var(--ytr-font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin: 40px 0 20px;
}

.ytr-legal-content h2:first-child {
    margin-top: 0;
}

.ytr-legal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin: 30px 0 15px;
}

.ytr-legal-content p {
    font-size: 1rem;
    color: var(--ytr-text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.ytr-legal-content ul,
.ytr-legal-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.ytr-legal-content li {
    font-size: 1rem;
    color: var(--ytr-text-muted);
    line-height: 1.8;
    margin-bottom: 10px;
}

.ytr-legal-last-updated {
    font-size: 0.9rem;
    color: var(--ytr-text-dark);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ytr-border);
}

/* =====================================================
   HELP CENTER STYLES
===================================================== */
.ytr-help-search-section {
    padding: 60px 0;
    background: var(--ytr-bg-secondary);
}

.ytr-help-search-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.ytr-help-search-form {
    display: flex;
    gap: 10px;
}

.ytr-help-search-form input {
    flex: 1;
    padding: 16px 20px;
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-sm);
    color: var(--ytr-text-white);
    font-size: 1rem;
}

.ytr-help-search-form input:focus {
    outline: none;
    border-color: var(--ytr-gold);
}

.ytr-help-search-form button {
    padding: 16px 25px;
    background: var(--ytr-gradient);
    border-radius: var(--ytr-radius-sm);
    color: var(--ytr-bg-primary);
    font-size: 1rem;
}

.ytr-help-categories-section {
    padding: var(--ytr-section-padding);
    background: var(--ytr-bg-primary);
}

.ytr-help-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 991px) {
    .ytr-help-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ytr-help-categories-grid {
        grid-template-columns: 1fr;
    }
}

.ytr-help-category-card {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-md);
    padding: 30px;
    transition: var(--ytr-transition);
    display: block;
}

.ytr-help-category-card:hover {
    border-color: var(--ytr-border-hover);
    transform: translateY(-5px);
}

.ytr-help-category-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--ytr-radius-sm);
    font-size: 1.5rem;
    color: var(--ytr-gold);
    margin-bottom: 20px;
}

.ytr-help-category-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 10px;
}

.ytr-help-category-desc {
    font-size: 0.9rem;
    color: var(--ytr-text-muted);
    margin-bottom: 15px;
}

.ytr-help-category-count {
    font-size: 0.85rem;
    color: var(--ytr-gold);
}

/* =====================================================
   VEHICLE DETAIL PAGE STYLES
===================================================== */
.ytr-vehicle-detail-section {
    padding: 120px 0 80px;
    background: var(--ytr-bg-primary);
}

.ytr-vehicle-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

@media (max-width: 1200px) {
    .ytr-vehicle-detail-grid {
        grid-template-columns: 1fr;
    }
}

.ytr-vehicle-gallery {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-lg);
    overflow: hidden;
}

.ytr-gallery-main {
    position: relative;
    height: 450px;
}

.ytr-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ytr-gallery-thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px;
    overflow-x: auto;
}

.ytr-gallery-thumb {
    width: 80px;
    height: 60px;
    border-radius: var(--ytr-radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--ytr-transition);
    flex-shrink: 0;
}

.ytr-gallery-thumb:hover,
.ytr-gallery-thumb.ytr-thumb-active {
    opacity: 1;
}

.ytr-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ytr-vehicle-info {
    padding: 30px 0;
}

.ytr-vehicle-info-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.ytr-vehicle-info-title {
    font-family: var(--ytr-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ytr-text-white);
    margin-bottom: 10px;
}

.ytr-vehicle-info-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.ytr-vehicle-info-rating i {
    color: var(--ytr-gold);
}

.ytr-vehicle-info-rating strong {
    color: var(--ytr-text-white);
}

.ytr-vehicle-info-rating span {
    color: var(--ytr-text-muted);
}

.ytr-vehicle-info-price {
    text-align: right;
}

.ytr-vehicle-info-price-amount {
    font-family: var(--ytr-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--ytr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ytr-vehicle-info-price span {
    font-size: 1rem;
    color: var(--ytr-text-muted);
}

.ytr-vehicle-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .ytr-vehicle-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ytr-vehicle-spec-item {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-sm);
    padding: 20px;
    text-align: center;
}

.ytr-vehicle-spec-icon {
    font-size: 1.5rem;
    color: var(--ytr-gold);
    margin-bottom: 10px;
}

.ytr-vehicle-spec-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 5px;
}

.ytr-vehicle-spec-label {
    font-size: 0.85rem;
    color: var(--ytr-text-muted);
}

.ytr-vehicle-description {
    margin-bottom: 30px;
}

.ytr-vehicle-description h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 15px;
}

.ytr-vehicle-description p {
    font-size: 1rem;
    color: var(--ytr-text-muted);
    line-height: 1.8;
}

.ytr-vehicle-features {
    margin-bottom: 30px;
}

.ytr-vehicle-features h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 15px;
}

.ytr-features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 768px) {
    .ytr-features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ytr-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--ytr-text-light);
}

.ytr-feature-item i {
    color: var(--ytr-gold);
}

/* Booking Sidebar */
.ytr-booking-sidebar {
    position: sticky;
    top: 100px;
}

.ytr-booking-card {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-lg);
    padding: 30px;
}

.ytr-booking-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 25px;
    text-align: center;
}

.ytr-booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ytr-booking-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ytr-booking-field label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ytr-text-muted);
}

.ytr-booking-field input {
    padding: 14px 16px;
    background: var(--ytr-bg-tertiary);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-sm);
    color: var(--ytr-text-white);
    font-size: 0.95rem;
}

.ytr-booking-field input:focus {
    outline: none;
    border-color: var(--ytr-gold);
}

.ytr-booking-summary {
    padding: 20px 0;
    border-top: 1px solid var(--ytr-border);
    border-bottom: 1px solid var(--ytr-border);
}

.ytr-booking-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.ytr-booking-summary-row span:first-child {
    color: var(--ytr-text-muted);
}

.ytr-booking-summary-row span:last-child {
    color: var(--ytr-text-white);
    font-weight: 500;
}

.ytr-booking-summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--ytr-border);
}

.ytr-booking-summary-total span:first-child {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ytr-text-white);
}

.ytr-booking-summary-total span:last-child {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--ytr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ytr-booking-submit {
    padding: 16px;
    background: var(--ytr-gradient);
    border-radius: var(--ytr-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ytr-bg-primary);
    transition: var(--ytr-transition);
    width: 100%;
}

.ytr-booking-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--ytr-shadow-glow);
}

.ytr-booking-note {
    font-size: 0.8rem;
    color: var(--ytr-text-dark);
    text-align: center;
    margin-top: 15px;
}

/* Host Info Card */
.ytr-host-card {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-lg);
    padding: 25px;
    margin-top: 20px;
}

.ytr-host-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ytr-host-avatar {
    width: 60px;
    height: 60px;
    background: var(--ytr-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ytr-bg-primary);
}

.ytr-host-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 5px;
}

.ytr-host-info span {
    font-size: 0.85rem;
    color: var(--ytr-text-muted);
}

.ytr-host-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.ytr-host-stat {
    text-align: center;
}

.ytr-host-stat-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ytr-gold);
}

.ytr-host-stat-label {
    font-size: 0.75rem;
    color: var(--ytr-text-muted);
}

.ytr-host-contact-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ytr-text-light);
    transition: var(--ytr-transition);
}

.ytr-host-contact-btn:hover {
    border-color: var(--ytr-gold);
    color: var(--ytr-gold);
}

/* =====================================================
   REGISTRATION & AUTH PAGES
===================================================== */
.ytr-auth-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: var(--ytr-bg-primary);
    display: flex;
    align-items: center;
}

.ytr-auth-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.ytr-auth-card {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-lg);
    padding: 40px;
}

.ytr-auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.ytr-auth-logo {
    height: 60px;
    margin-bottom: 20px;
}

.ytr-auth-title {
    font-family: var(--ytr-font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ytr-text-white);
    margin-bottom: 10px;
}

.ytr-auth-subtitle {
    font-size: 1rem;
    color: var(--ytr-text-muted);
}

.ytr-auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ytr-auth-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ytr-auth-field label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ytr-text-muted);
}

.ytr-auth-field input {
    padding: 14px 16px;
    background: var(--ytr-bg-tertiary);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-sm);
    color: var(--ytr-text-white);
    font-size: 0.95rem;
}

.ytr-auth-field input:focus {
    outline: none;
    border-color: var(--ytr-gold);
}

.ytr-auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.ytr-auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ytr-text-muted);
}

.ytr-auth-forgot {
    color: var(--ytr-gold);
}

.ytr-auth-submit {
    padding: 16px;
    background: var(--ytr-gradient);
    border-radius: var(--ytr-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ytr-bg-primary);
    transition: var(--ytr-transition);
}

.ytr-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--ytr-shadow-glow);
}

.ytr-auth-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

.ytr-auth-divider span {
    font-size: 0.9rem;
    color: var(--ytr-text-dark);
}

.ytr-auth-divider::before,
.ytr-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ytr-border);
}

.ytr-auth-social {
    display: flex;
    gap: 15px;
}

.ytr-social-btn {
    flex: 1;
    padding: 12px;
    background: var(--ytr-bg-tertiary);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-sm);
    font-size: 1rem;
    color: var(--ytr-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--ytr-transition);
}

.ytr-social-btn:hover {
    border-color: var(--ytr-border-hover);
    background: var(--ytr-bg-card-hover);
}

.ytr-auth-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 0.95rem;
    color: var(--ytr-text-muted);
}

.ytr-auth-footer a {
    color: var(--ytr-gold);
    font-weight: 500;
}

/* =====================================================
   DASHBOARD STYLES (UI ONLY)
===================================================== */
.ytr-dashboard-section {
    padding: 120px 0 80px;
    background: var(--ytr-bg-primary);
    min-height: 100vh;
}

.ytr-dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

@media (max-width: 991px) {
    .ytr-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.ytr-dashboard-sidebar {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-lg);
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

@media (max-width: 991px) {
    .ytr-dashboard-sidebar {
        position: static;
    }
}

.ytr-dashboard-user {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--ytr-border);
    margin-bottom: 25px;
}

.ytr-dashboard-avatar {
    width: 80px;
    height: 80px;
    background: var(--ytr-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ytr-bg-primary);
    margin: 0 auto 15px;
}

.ytr-dashboard-username {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 5px;
}

.ytr-dashboard-role {
    font-size: 0.85rem;
    color: var(--ytr-gold);
}

.ytr-dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ytr-dashboard-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: var(--ytr-radius-sm);
    font-size: 0.95rem;
    color: var(--ytr-text-muted);
    transition: var(--ytr-transition);
}

.ytr-dashboard-nav-link:hover {
    background: var(--ytr-bg-tertiary);
    color: var(--ytr-text-light);
}

.ytr-dashboard-nav-link-active {
    background: rgba(255, 215, 0, 0.1);
    color: var(--ytr-gold);
}

.ytr-dashboard-nav-link i {
    width: 20px;
    text-align: center;
}

.ytr-dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ytr-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.ytr-dashboard-title {
    font-family: var(--ytr-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ytr-text-white);
}

.ytr-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .ytr-dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ytr-dashboard-stats {
        grid-template-columns: 1fr;
    }
}

.ytr-stat-card {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-md);
    padding: 25px;
}

.ytr-stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ytr-stat-card-title {
    font-size: 0.9rem;
    color: var(--ytr-text-muted);
}

.ytr-stat-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--ytr-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--ytr-gold);
}

.ytr-stat-card-value {
    font-family: var(--ytr-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ytr-text-white);
    margin-bottom: 5px;
}

.ytr-stat-card-change {
    font-size: 0.85rem;
}

.ytr-stat-card-change.ytr-positive {
    color: #10b981;
}

.ytr-stat-card-change.ytr-negative {
    color: #ef4444;
}

.ytr-dashboard-section-card {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-lg);
    padding: 25px;
}

.ytr-dashboard-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ytr-dashboard-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ytr-text-white);
}

.ytr-dashboard-section-link {
    font-size: 0.9rem;
    color: var(--ytr-gold);
}

/* =====================================================
   TRUST & SAFETY PAGE STYLES
===================================================== */
.ytr-trust-features-section {
    padding: var(--ytr-section-padding);
    background: var(--ytr-bg-primary);
}

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

@media (max-width: 768px) {
    .ytr-trust-grid {
        grid-template-columns: 1fr;
    }
}

.ytr-trust-card {
    background: var(--ytr-bg-card);
    border: 1px solid var(--ytr-border);
    border-radius: var(--ytr-radius-md);
    padding: 30px;
    display: flex;
    gap: 20px;
}

.ytr-trust-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--ytr-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--ytr-gold);
    flex-shrink: 0;
}

.ytr-trust-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ytr-text-white);
    margin-bottom: 10px;
}

.ytr-trust-content p {
    font-size: 0.95rem;
    color: var(--ytr-text-muted);
    line-height: 1.7;
}

/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes ytr-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ytr-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ytr-slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ytr-animate-fadeIn {
    animation: ytr-fadeIn 0.6s ease forwards;
}

.ytr-animate-slideInLeft {
    animation: ytr-slideInLeft 0.6s ease forwards;
}

.ytr-animate-slideInRight {
    animation: ytr-slideInRight 0.6s ease forwards;
}
