/*
Theme Name: Rencar - Airport Transfer & Tours
Theme URI: https://themewild.com/rencar
Author: ThemeWild (Converted to WordPress)
Description: Professional car rental and booking WordPress theme with full featured pages including car listings, booking system, driver profiles, blog, and more.
Version: 1.1.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rencar
Tags: car-rental, booking, responsive, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, sticky-post, theme-options
*/

/* ============================================
   RENCAR WORDPRESS THEME - MAIN STYLESHEET
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --rencar-primary: #f97316;
    --rencar-primary-dark: #ea580c;
    --rencar-secondary: #1e293b;
    --rencar-dark: #0f172a;
    --rencar-light: #f8fafc;
    --rencar-text: #64748b;
    --rencar-heading: #1e293b;
    --rencar-border: #e2e8f0;
    --rencar-white: #ffffff;
    --rencar-success: #22c55e;
    --rencar-font-base: 'Jost', sans-serif;
    --rencar-font-heading: 'Jost', sans-serif;
    --rencar-transition: all 0.3s ease;
    --rencar-radius: 8px;
    --rencar-radius-lg: 16px;
    --rencar-shadow: 0 4px 24px rgba(0,0,0,0.08);
    --rencar-shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--rencar-font-base);
    font-size: 15px;
    line-height: 1.7;
    color: var(--rencar-text);
    background-color: var(--rencar-white);
    overflow-x: hidden;
}

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

a:hover { color: var(--rencar-primary); }

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

ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--rencar-font-heading);
    color: var(--rencar-heading);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Utility Classes ---- */
.rencar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .sub-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--rencar-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
}

.section-title h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--rencar-heading);
}

.btn-primary-rencar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rencar-primary);
    color: var(--rencar-white);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--rencar-transition);
    border: 2px solid var(--rencar-primary);
    cursor: pointer;
}

.btn-primary-rencar:hover {
    background: var(--rencar-primary-dark);
    border-color: var(--rencar-primary-dark);
    color: var(--rencar-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,115,22,0.35);
}

.btn-outline-rencar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--rencar-white);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--rencar-transition);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-rencar:hover {
    background: var(--rencar-white);
    color: var(--rencar-primary);
    border-color: var(--rencar-white);
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
    background: var(--rencar-secondary);
    padding: 10px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-left a,
.topbar-right a {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-left a:hover,
.topbar-right a:hover {
    color: var(--rencar-primary);
}

.topbar-left i, .topbar-right i {
    color: var(--rencar-primary);
}

.topbar-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
}

.topbar-social a:hover {
    background: var(--rencar-primary);
    color: white;
}

.topbar-lang {
    position: relative;
}

.topbar-lang select {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.topbar-login-btn {
    background: var(--rencar-primary);
    color: white !important;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--rencar-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--rencar-transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    min-height: 75px;
}

.site-logo img {
    height: 45px;
    width: auto;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav ul.nav-menu > li {
    position: relative;
}

.main-nav ul.nav-menu > li > a {
    display: block;
    padding: 26px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--rencar-heading);
    white-space: nowrap;
    position: relative;
}

.main-nav ul.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--rencar-primary);
    border-radius: 2px;
    transition: var(--rencar-transition);
}

.main-nav ul.nav-menu > li:hover > a::after,
.main-nav ul.nav-menu > li.current-menu-item > a::after {
    width: 70%;
}

.main-nav ul.nav-menu > li:hover > a,
.main-nav ul.nav-menu > li.current-menu-item > a {
    color: var(--rencar-primary);
}

/* Dropdown */
.main-nav ul.nav-menu li.menu-item-has-children > a::before {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 12px;
}

.main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--rencar-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--rencar-transition);
    z-index: 100;
}

.main-nav ul.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .sub-menu li a {
    display: block;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--rencar-heading);
    border-left: 3px solid transparent;
    transition: var(--rencar-transition);
}

.main-nav .sub-menu li a:hover {
    color: var(--rencar-primary);
    background: rgba(249,115,22,0.05);
    border-left-color: var(--rencar-primary);
}

/* Third level */
.main-nav .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--rencar-heading);
    transition: transform .3s ease, opacity .2s ease, background .3s ease;
    border-radius: 2px;
    transform-origin: center;
}

/* Hamburger → X animation */
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg);  background: var(--rencar-primary); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scale(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--rencar-primary); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--rencar-secondary) 0%, var(--rencar-dark) 100%);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://live.themewild.com/rencar/assets/img/shape/09.png') no-repeat center/cover;
    opacity: 0.05;
}

.hero-slide {
    padding: 100px 0;
    width: 100%;
}

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

.hero-text .badge {
    display: inline-block;
    background: rgba(249,115,22,0.15);
    color: var(--rencar-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(249,115,22,0.3);
}

.hero-text h1 {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--rencar-white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-text h1 span { color: var(--rencar-primary); }

.hero-text p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================================
   BOOKING FORM
   ============================================ */
.booking-section {
    background: var(--rencar-white);
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.booking-box {
    background: var(--rencar-white);
    border-radius: var(--rencar-radius-lg);
    box-shadow: var(--rencar-shadow-lg);
    padding: 36px;
    border: 1px solid var(--rencar-border);
}

.booking-box h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--rencar-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-box h3::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--rencar-primary);
    border-radius: 2px;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    align-items: end;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--rencar-heading);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--rencar-border);
    border-radius: var(--rencar-radius);
    font-size: 14px;
    color: var(--rencar-heading);
    background: var(--rencar-light);
    transition: var(--rencar-transition);
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--rencar-primary);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

/* ============================================
   FEATURES / HOW IT WORKS STRIP
   ============================================ */
.features-strip {
    background: var(--rencar-primary);
    padding: 50px 0;
}

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

.feature-strip-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.feature-strip-item:last-child { border-right: none; }

.feature-strip-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-strip-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.feature-strip-num {
    font-size: 36px;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    margin-bottom: 4px;
}

.feature-strip-item h4 {
    font-size: 16px;
    color: var(--rencar-white);
    margin-bottom: 8px;
}

.feature-strip-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { background: var(--rencar-light); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--rencar-radius-lg);
    overflow: hidden;
    box-shadow: var(--rencar-shadow-lg);
}

.about-img-main img { width: 100%; }

.about-img-thumb {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
    border-radius: var(--rencar-radius-lg);
    overflow: hidden;
    border: 5px solid white;
    box-shadow: var(--rencar-shadow);
}

.about-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--rencar-primary);
    color: white;
    padding: 16px 20px;
    border-radius: var(--rencar-radius-lg);
    text-align: center;
    box-shadow: var(--rencar-shadow);
}

.about-badge .num {
    font-size: 32px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-badge .text {
    font-size: 12px;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 28px 0;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature-item img {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.about-feature-item h5 {
    font-size: 15px;
    margin-bottom: 4px;
}

.about-feature-item p {
    font-size: 13px;
    margin: 0;
}

.about-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--rencar-heading);
}

.about-checklist li img {
    width: 20px;
    height: 20px;
}

/* ============================================
   CAR TYPE SECTION
   ============================================ */
.car-type-section { background: var(--rencar-white); }

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

.car-type-card {
    background: var(--rencar-light);
    border-radius: var(--rencar-radius-lg);
    padding: 24px 16px;
    text-align: center;
    transition: var(--rencar-transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.car-type-card:hover {
    background: var(--rencar-white);
    border-color: var(--rencar-primary);
    box-shadow: var(--rencar-shadow);
    transform: translateY(-4px);
}

.car-type-card img {
    width: 100%;
    max-width: 120px;
    margin: 0 auto 14px;
    transition: var(--rencar-transition);
}

.car-type-card:hover img { transform: scale(1.05); }

.car-type-card h5 {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--rencar-heading);
}

.car-type-card span {
    font-size: 12px;
    color: var(--rencar-text);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { background: var(--rencar-dark); }

.services-section .section-title h2 { color: var(--rencar-white); }

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

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--rencar-radius-lg);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--rencar-transition);
}

.service-card:hover {
    background: rgba(249,115,22,0.08);
    border-color: rgba(249,115,22,0.3);
    transform: translateY(-4px);
}

.service-num {
    font-size: 48px;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    flex-shrink: 0;
}

.service-icon {
    width: 54px;
    height: 54px;
    background: rgba(249,115,22,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 16px;
}

.service-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(56%) sepia(64%) saturate(1200%) hue-rotate(10deg);
}

.service-card h4 {
    font-size: 17px;
    color: var(--rencar-white);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
}

.service-card a.details-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--rencar-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-cta {
    grid-column: 1 / -1;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: var(--rencar-radius-lg);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.service-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--rencar-primary) 0%, var(--rencar-primary-dark) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://live.themewild.com/rencar/assets/img/shape/09.png') no-repeat center/cover;
    opacity: 0.05;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(26px, 4vw, 40px);
    color: var(--rencar-white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    max-width: 580px;
    margin: 0 auto 30px;
}

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

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rencar-white);
    color: var(--rencar-primary);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--rencar-transition);
}

.btn-white:hover {
    background: var(--rencar-dark);
    color: var(--rencar-white);
}

/* ============================================
   WORKING PROCESS
   ============================================ */
.process-section { background: var(--rencar-light); }

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

.process-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: calc(16.67% + 30px);
    right: calc(16.67% + 30px);
    height: 2px;
    background: linear-gradient(90deg, var(--rencar-primary), var(--rencar-primary-dark));
    border-radius: 2px;
}

.process-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--rencar-white);
    border-radius: var(--rencar-radius-lg);
    box-shadow: var(--rencar-shadow);
    position: relative;
    transition: var(--rencar-transition);
}

.process-card:hover { transform: translateY(-6px); }

.process-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rencar-primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(249,115,22,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--rencar-transition);
}

.process-card:hover .process-icon {
    background: var(--rencar-primary);
}

.process-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(56%) sepia(64%) saturate(1200%) hue-rotate(10deg);
    transition: var(--rencar-transition);
}

.process-card:hover .process-icon img {
    filter: brightness(0) invert(1);
}

.process-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

/* ============================================
   COUNTER SECTION
   ============================================ */
.counter-section {
    background: linear-gradient(135deg, var(--rencar-secondary) 0%, var(--rencar-dark) 100%);
    padding: 70px 0;
}

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

.counter-item {
    text-align: center;
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.counter-item:last-child { border-right: none; }

.counter-icon {
    margin: 0 auto 16px;
    width: 64px;
    height: 64px;
    background: rgba(249,115,22,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(56%) sepia(64%) saturate(1200%) hue-rotate(10deg);
}

.counter-num {
    font-size: 42px;
    font-weight: 800;
    color: var(--rencar-white);
    line-height: 1;
    margin-bottom: 8px;
}

.counter-num span { color: var(--rencar-primary); }

.counter-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   OUR CARS
   ============================================ */
.cars-section { background: var(--rencar-white); }

.cars-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.cars-tab-btn {
    padding: 9px 22px;
    border: 2px solid var(--rencar-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--rencar-transition);
    background: transparent;
    color: var(--rencar-heading);
}

.cars-tab-btn.active,
.cars-tab-btn:hover {
    background: var(--rencar-primary);
    border-color: var(--rencar-primary);
    color: white;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.car-card {
    background: var(--rencar-light);
    border-radius: var(--rencar-radius-lg);
    overflow: hidden;
    transition: var(--rencar-transition);
    border: 1px solid var(--rencar-border);
}

.car-card:hover {
    box-shadow: var(--rencar-shadow-lg);
    transform: translateY(-4px);
    border-color: var(--rencar-primary);
}

.car-card-type {
    display: inline-block;
    background: var(--rencar-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.car-card-img {
    padding: 10px 24px 20px;
}

.car-card-img img {
    width: 100%;
    transition: var(--rencar-transition);
}

.car-card:hover .car-card-img img { transform: scale(1.04); }

.car-card-body { padding: 0 20px 20px; }

.car-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--rencar-text);
    margin-bottom: 8px;
}

.car-rating .stars { color: #fbbf24; }

.car-card-body h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.car-card-body h4 a { color: var(--rencar-heading); }
.car-card-body h4 a:hover { color: var(--rencar-primary); }

.car-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rencar-border);
}

.car-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--rencar-text);
}

.car-spec i { color: var(--rencar-primary); font-size: 12px; }

.car-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.car-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--rencar-primary);
}

.car-price span {
    font-size: 13px;
    color: var(--rencar-text);
    font-weight: 400;
}

/* ============================================
   CITY SECTION
   ============================================ */
.city-section { background: var(--rencar-light); }

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

.city-card {
    position: relative;
    border-radius: var(--rencar-radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.city-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: var(--rencar-transition);
}

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

.city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.8), transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--rencar-transition);
}

.city-card:hover .city-overlay {
    background: linear-gradient(to top, rgba(249,115,22,0.85), transparent 50%);
}

.city-explore {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.city-overlay h4 {
    font-size: 20px;
    color: white;
    margin-bottom: 4px;
}

.city-overlay p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-section { background: var(--rencar-white); }

.brands-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

.brand-card {
    border: 1.5px solid var(--rencar-border);
    border-radius: var(--rencar-radius-lg);
    padding: 20px 14px;
    text-align: center;
    transition: var(--rencar-transition);
    cursor: pointer;
}

.brand-card:hover {
    border-color: var(--rencar-primary);
    box-shadow: var(--rencar-shadow);
    transform: translateY(-3px);
}

.brand-card img {
    max-height: 50px;
    width: auto;
    margin: 0 auto 12px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--rencar-transition);
}

.brand-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.brand-card h5 {
    font-size: 13px;
    margin-bottom: 4px;
}

.brand-card span {
    font-size: 11px;
    color: var(--rencar-text);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section { background: var(--rencar-light); }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.why-feature-icon {
    width: 56px;
    height: 56px;
    background: var(--rencar-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--rencar-shadow);
    flex-shrink: 0;
}

.why-feature-icon img {
    width: 28px;
    height: 28px;
}

.why-feature h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.why-feature p {
    font-size: 14px;
    margin: 0;
}

.why-image img {
    border-radius: var(--rencar-radius-lg);
    box-shadow: var(--rencar-shadow-lg);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section { background: var(--rencar-white); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-image img {
    width: 100%;
    border-radius: var(--rencar-radius-lg);
    box-shadow: var(--rencar-shadow-lg);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1.5px solid var(--rencar-border);
    border-radius: var(--rencar-radius-lg);
    overflow: hidden;
    transition: var(--rencar-transition);
}

.faq-item.active {
    border-color: var(--rencar-primary);
    box-shadow: 0 4px 20px rgba(249,115,22,0.1);
}

.faq-question {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: var(--rencar-light);
    transition: var(--rencar-transition);
}

.faq-item.active .faq-question {
    background: var(--rencar-primary);
}

.faq-question h5 {
    font-size: 15px;
    margin: 0;
    color: var(--rencar-heading);
    transition: var(--rencar-transition);
}

.faq-item.active .faq-question h5 { color: white; }

.faq-question i {
    color: var(--rencar-primary);
    transition: var(--rencar-transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    padding: 18px 22px;
    max-height: 300px;
}

.faq-answer p { font-size: 14px; margin: 0; }

/* ============================================
   CAR RATES
   ============================================ */
.rates-section { background: var(--rencar-light); }

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

.rate-card {
    background: var(--rencar-white);
    border-radius: var(--rencar-radius-lg);
    overflow: hidden;
    border: 2px solid var(--rencar-border);
    transition: var(--rencar-transition);
    position: relative;
}

.rate-card:hover,
.rate-card.featured {
    border-color: var(--rencar-primary);
    box-shadow: var(--rencar-shadow-lg);
    transform: translateY(-6px);
}

.rate-card-header {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--rencar-border);
}

.rate-card-header img {
    width: 100%;
    max-height: 140px;
    object-fit: contain;
    margin-bottom: 16px;
}

.rate-badge {
    display: inline-block;
    background: rgba(249,115,22,0.1);
    color: var(--rencar-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.rate-card-header h4 { font-size: 20px; }

.rate-card-body { padding: 24px; }

.rate-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.rate-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--rencar-heading);
}

.rate-feature i { color: var(--rencar-primary); }

/* ============================================
   DRIVERS / TEAM
   ============================================ */
.drivers-section { background: var(--rencar-white); }

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.driver-card {
    border-radius: var(--rencar-radius-lg);
    overflow: hidden;
    transition: var(--rencar-transition);
    border: 1px solid var(--rencar-border);
    background: var(--rencar-light);
}

.driver-card:hover {
    box-shadow: var(--rencar-shadow-lg);
    transform: translateY(-4px);
}

.driver-card-img {
    position: relative;
    overflow: hidden;
}

.driver-card-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--rencar-transition);
}

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

.driver-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: linear-gradient(to top, rgba(249,115,22,0.95), transparent);
    transform: translateY(100%);
    transition: var(--rencar-transition);
}

.driver-card:hover .driver-social { transform: translateY(0); }

.driver-social a {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
}

.driver-social a:hover { background: white; color: var(--rencar-primary); }

.driver-card-info {
    padding: 18px;
    text-align: center;
}

.driver-card-info h5 { font-size: 16px; margin-bottom: 4px; }
.driver-card-info h5 a { color: var(--rencar-heading); }
.driver-card-info h5 a:hover { color: var(--rencar-primary); }
.driver-card-info span { font-size: 13px; color: var(--rencar-primary); font-weight: 500; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--rencar-light); }

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

.testimonial-card {
    background: var(--rencar-white);
    border-radius: var(--rencar-radius-lg);
    padding: 28px;
    box-shadow: var(--rencar-shadow);
    transition: var(--rencar-transition);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--rencar-shadow-lg);
    transform: translateY(-4px);
}

.testimonial-quote {
    margin-bottom: 16px;
}

.testimonial-quote img {
    width: 36px;
    height: 36px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--rencar-text);
}

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

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--rencar-primary);
}

.testimonial-author h6 { font-size: 15px; margin-bottom: 2px; }
.testimonial-author span { font-size: 12px; color: var(--rencar-text); }

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section { background: var(--rencar-white); }

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

.blog-card {
    border-radius: var(--rencar-radius-lg);
    overflow: hidden;
    border: 1px solid var(--rencar-border);
    transition: var(--rencar-transition);
}

.blog-card:hover {
    box-shadow: var(--rencar-shadow-lg);
    transform: translateY(-4px);
}

.blog-card-img {
    position: relative;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--rencar-transition);
}

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

.blog-date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--rencar-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.blog-card-body { padding: 24px; }

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.blog-meta span {
    font-size: 12px;
    color: var(--rencar-text);
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i { color: var(--rencar-primary); }

.blog-card-body h4 {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-body h4 a { color: var(--rencar-heading); }
.blog-card-body h4 a:hover { color: var(--rencar-primary); }

.blog-card-body p { font-size: 14px; margin-bottom: 16px; }

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--rencar-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more:hover { gap: 10px; }

/* ============================================
   APP DOWNLOAD
   ============================================ */
.app-section {
    background: linear-gradient(135deg, var(--rencar-secondary) 0%, var(--rencar-dark) 100%);
    padding: 80px 0;
    overflow: hidden;
}

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

.app-text .sub-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--rencar-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.app-text h2 {
    color: var(--rencar-white);
    font-size: clamp(26px, 3.5vw, 38px);
    margin-bottom: 16px;
}

.app-text p { color: rgba(255,255,255,0.7); margin-bottom: 30px; }

.app-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 12px 20px;
    color: white;
    transition: var(--rencar-transition);
}

.app-btn:hover {
    background: var(--rencar-primary);
    border-color: var(--rencar-primary);
    color: white;
}

.app-btn i { font-size: 24px; }
.app-btn-text span { font-size: 11px; display: block; opacity: 0.7; }
.app-btn-text strong { font-size: 15px; display: block; }

.app-image { text-align: right; }
.app-image img { max-height: 400px; margin-left: auto; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
    background: var(--rencar-primary);
    padding: 60px 0;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-text h3 {
    font-size: clamp(22px, 3vw, 30px);
    color: white;
    margin-bottom: 8px;
}

.newsletter-text p { color: rgba(255,255,255,0.8); margin: 0; font-size: 15px; }

.newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 480px;
    min-width: 280px;
}

.newsletter-form input {
    flex: 1;
    padding: 13px 20px;
    border-radius: 50px;
    border: none;
    font-size: 14px;
    color: var(--rencar-heading);
    outline: none;
}

.newsletter-form button {
    padding: 13px 28px;
    background: var(--rencar-dark);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--rencar-transition);
    white-space: nowrap;
}

.newsletter-form button:hover { background: var(--rencar-secondary); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--rencar-dark);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-about .footer-logo {
    margin-bottom: 20px;
}

.footer-about .footer-logo img { height: 40px; }

.footer-about p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-payment h6 {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: var(--rencar-transition);
}

.payment-icons img:hover { opacity: 1; }

.footer-widget h4 {
    font-size: 17px;
    color: var(--rencar-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--rencar-primary);
    border-radius: 2px;
}

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

.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--rencar-transition);
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    color: var(--rencar-primary);
}

.footer-links a:hover {
    color: var(--rencar-primary);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-contact-item .icon {
    width: 36px;
    height: 36px;
    background: rgba(249,115,22,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-item .icon i { color: var(--rencar-primary); font-size: 14px; }

.footer-contact-item h6 {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-contact-item a:hover { color: var(--rencar-primary); }

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    margin: 0;
}

.footer-bottom p a {
    color: var(--rencar-primary);
    font-weight: 600;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: var(--rencar-transition);
}

.footer-social a:hover {
    background: var(--rencar-primary);
    color: white;
    transform: translateY(-2px);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--rencar-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--rencar-transition);
    border: none;
    box-shadow: 0 4px 16px rgba(249,115,22,0.4);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); background: var(--rencar-primary-dark); }

/* ============================================
   INNER PAGE BANNER
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, var(--rencar-secondary) 0%, var(--rencar-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: clamp(28px, 4vw, 44px);
    color: white;
    margin-bottom: 16px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,0.6); font-size: 14px; }
.breadcrumb a:hover { color: var(--rencar-primary); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); font-size: 12px; }
.breadcrumb .current { color: var(--rencar-primary); font-size: 14px; font-weight: 600; }

/* ============================================
   BLOG / ARCHIVE PAGE
   ============================================ */
.page-content-wrapper {
    padding: 80px 0;
    background: var(--rencar-light);
}

.content-sidebar-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.sidebar-widget {
    background: var(--rencar-white);
    border-radius: var(--rencar-radius-lg);
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    font-size: 17px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--rencar-border);
    position: relative;
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--rencar-primary);
}

.search-form {
    display: flex;
    gap: 8px;
}

.search-form input {
    flex: 1;
    padding: 10px 16px;
    border: 1.5px solid var(--rencar-border);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.search-form input:focus { border-color: var(--rencar-primary); }

.search-form button {
    padding: 10px 16px;
    background: var(--rencar-primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--rencar-transition);
}

.search-form button:hover { background: var(--rencar-primary-dark); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .car-type-grid { grid-template-columns: repeat(4, 1fr); }
    .brands-grid { grid-template-columns: repeat(4, 1fr); }
    .cars-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-image { display: none; }
    .hero-buttons { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-image { display: none; }
    .app-grid { grid-template-columns: 1fr; }
    .app-image { display: none; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .features-strip-grid { grid-template-columns: 1fr; }
    .feature-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .services-grid { grid-template-columns: 1fr; }
    .drivers-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .rates-grid { grid-template-columns: repeat(2, 1fr); }
    .cars-grid { grid-template-columns: repeat(2, 1fr); }
    .city-grid { grid-template-columns: repeat(2, 1fr); }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .content-sidebar-grid { grid-template-columns: 1fr; }
    .topbar { display: none; }

    /* Mobile Nav - handled by v1.1.2 rules at bottom of file */
    /* (removed conflicting older rules) */
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .car-type-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: 1fr; }
    .process-grid::before { display: none; }
    .blog-grid { grid-template-columns: 1fr; }
    .rates-grid { grid-template-columns: 1fr; }
    .booking-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-inner { flex-direction: column; }
    .newsletter-form { width: 100%; max-width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .car-type-grid { grid-template-columns: repeat(2, 1fr); }
    .drivers-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cars-grid { grid-template-columns: 1fr; }
    .city-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .booking-grid { grid-template-columns: 1fr; }
    .counter-grid { grid-template-columns: 1fr; }
    .counter-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--rencar-text); text-align: center; margin-top: 6px; }
.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }
.aligncenter { display: block; margin: 0 auto 20px; }
.sticky { position: relative; }
.bypostauthor { opacity: 1; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.gallery-item img { border-radius: var(--rencar-radius); }

/* ============================================
   UPDATED STYLES - v1.1.0
   Airport Transfer & Tour Service
   ============================================ */

/* ---- Theme Name (updated) ---- */
/* Theme Name: Rencar - Airport Transfer & Tour */

/* ============================================
   HERO SECTION (Enhanced)
   ============================================ */
.rencar-hero-section { position:relative; overflow:hidden; }
.rencar-hero-slide {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-color: var(--rencar-secondary);
    display: flex;
    align-items: center;
    position: relative;
}
.rencar-hero-overlay {
    position:absolute; inset:0;
    background: linear-gradient(90deg, rgba(15,23,42,.85) 0%, rgba(15,23,42,.4) 60%, transparent 100%);
}
.rencar-hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 80px;
}
.rencar-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rencar-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.rencar-hero-title {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.rencar-hero-highlight { color: var(--rencar-primary); }
.rencar-hero-desc {
    color: rgba(255,255,255,.75);
    font-size: 16px;
    max-width: 520px;
    margin-bottom: 32px;
}
.rencar-hero-btns { display:flex; gap:14px; flex-wrap:wrap; }
.rencar-btn-secondary {
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,.5);
    color: #fff;
}
.rencar-btn-secondary:hover { background:#fff; color:var(--rencar-secondary); }

/* Hero Swiper overrides */
.rencar-hero-swiper .swiper-button-next,
.rencar-hero-swiper .swiper-button-prev {
    width: 48px; height: 48px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 50%;
    color: #fff;
}
.rencar-hero-swiper .swiper-button-next:hover,
.rencar-hero-swiper .swiper-button-prev:hover { background: var(--rencar-primary); border-color: var(--rencar-primary); }
.rencar-hero-swiper .swiper-button-next::after,
.rencar-hero-swiper .swiper-button-prev::after { font-size: 14px; font-weight: 900; }

/* ============================================
   BOOKING FORM
   ============================================ */
.rencar-booking-section {
    background: #fff;
    padding: 0 0 0;
    position: relative;
    z-index: 10;
    margin-top: -30px;
}
.rencar-booking-box {
    background: #fff;
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 8px 50px rgba(0,0,0,.12);
    border-top: 4px solid var(--rencar-primary);
    margin-bottom: -20px;
    position: relative;
    z-index: 5;
}
.rencar-booking-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--rencar-secondary);
    margin-bottom: 24px;
}
.rencar-field {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid var(--rencar-border);
    border-radius: 8px;
    transition: var(--rencar-transition);
    overflow: hidden;
    height: 52px;
}
.rencar-field:focus-within {
    border-color: var(--rencar-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.rencar-field > i {
    flex-shrink: 0;
    width: 46px;
    text-align: center;
    color: var(--rencar-primary);
    font-size: 15px;
}
.rencar-field input,
.rencar-field select {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 14px 12px 0;
    font-size: 14px;
    color: var(--rencar-heading);
    font-family: var(--rencar-font-base);
    outline: none;
    height: 100%;
}
.rencar-field input::placeholder { color: #94a3b8; }
.rencar-field input[type="datetime-local"] { font-size: 13px; }

/* Fast Track field */
.rencar-fasttrack-field {
    height: 52px;
    cursor: pointer;
}
.rencar-fasttrack-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    cursor: pointer;
    width: 100%;
    height: 100%;
    margin: 0;
    user-select: none;
}
.rencar-fasttrack-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--rencar-primary);
    flex-shrink: 0;
    cursor: pointer;
}
.rencar-fasttrack-label span {
    font-size: 14px;
    font-weight: 600;
    color: var(--rencar-heading);
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
}
.rencar-fasttrack-label span:hover { color: var(--rencar-primary); }
.rencar-fasttrack-info {
    background: none;
    border: 2px solid var(--rencar-primary);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--rencar-primary);
    font-size: 11px;
    flex-shrink: 0;
    transition: var(--rencar-transition);
    padding: 0;
}
.rencar-fasttrack-info:hover { background: var(--rencar-primary); color: #fff; }

/* Book button */
.rencar-btn-book {
    height: 52px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
}

/* Booking message */
.rencar-booking-msg {
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}
.rencar-booking-msg.success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.rencar-booking-msg.error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* ============================================
   FAST TRACK MODAL
   ============================================ */
.rencar-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
body.rencar-modal-open { overflow: hidden; }
.rencar-modal-box {
    background: #fff;
    border-radius: 16px;
    max-width: 560px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    overflow: hidden;
    animation: modalIn .3s ease;
}
@keyframes modalIn {
    from { opacity:0; transform:scale(.92) translateY(20px); }
    to   { opacity:1; transform:scale(1)  translateY(0);     }
}
.rencar-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: var(--rencar-secondary);
    color: #fff;
}
.rencar-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.rencar-modal-title i { color: var(--rencar-primary); }
.rencar-modal-close {
    background: none;
    border: none;
    color: rgba(255,255,255,.7);
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color .2s;
}
.rencar-modal-close:hover { color: #fff; }
.rencar-modal-body {
    padding: 28px;
    font-size: 15px;
    color: var(--rencar-text);
    line-height: 1.7;
    max-height: 60vh;
    overflow-y: auto;
}
.rencar-modal-body ul { padding-left: 20px; margin-top: 10px; }
.rencar-modal-body ul li { margin-bottom: 8px; }
.rencar-modal-footer {
    padding: 16px 28px 24px;
    text-align: right;
    border-top: 1px solid var(--rencar-border);
}

/* ============================================
   FEATURES STRIP
   ============================================ */
.rencar-features-strip {
    background: var(--rencar-secondary);
    padding: 0;
    margin-top: 30px;
}
.rencar-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 24px;
    border-right: 1px solid rgba(255,255,255,.08);
    transition: background .3s;
}
.rencar-feature-item:last-child { border-right: none; }
.rencar-feature-item:hover { background: rgba(249,115,22,.08); }
.rencar-feature-icon {
    width: 52px;
    height: 52px;
    background: var(--rencar-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.rencar-feature-item h5 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.rencar-feature-item p  { color: rgba(255,255,255,.6); font-size: 13px; margin: 0; }

/* ============================================
   TRANSFER SERVICE CARDS
   ============================================ */
.rencar-transfer-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--rencar-shadow);
    transition: var(--rencar-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.rencar-transfer-card:hover { transform: translateY(-6px); box-shadow: var(--rencar-shadow-lg); }
.rencar-transfer-card-img { height: 200px; overflow: hidden; position: relative; }
.rencar-transfer-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.rencar-transfer-card:hover .rencar-transfer-card-img img { transform: scale(1.06); }
.rencar-transfer-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--rencar-secondary), #2d3f56);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.3);
}
.rencar-transfer-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.rencar-transfer-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.rencar-transfer-title a { color: var(--rencar-heading); text-decoration: none; }
.rencar-transfer-title a:hover { color: var(--rencar-primary); }
.rencar-transfer-desc  { font-size: 14px; color: var(--rencar-text); margin-bottom: 12px; flex: 1; }
.rencar-transfer-meta  { display: flex; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.rencar-transfer-meta span { font-size: 13px; color: #888; }
.rencar-transfer-meta i   { color: var(--rencar-primary); margin-right: 4px; }
.rencar-transfer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--rencar-border);
}
.rencar-transfer-price .price-from   { font-size: 12px; color: #888; display: block; }
.rencar-transfer-price .price-amount { font-size: 24px; font-weight: 800; color: var(--rencar-primary); }

/* ============================================
   FEATURED TOURS SECTION
   ============================================ */
.rencar-tours-section {
    background: linear-gradient(180deg, var(--rencar-secondary) 0%, #2d3f56 100%);
    position: relative;
    overflow: hidden;
}
.rencar-tours-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,.02) 0px, rgba(255,255,255,.02) 2px,
        transparent 2px, transparent 20px
    );
}
.rencar-tours-swiper-wrap { position: relative; }

/* Tour Card */
.rencar-tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
    transition: transform .35s, box-shadow .35s;
}
.rencar-tour-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.rencar-tour-card-link { display: block; text-decoration: none; }
.rencar-tour-card-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: background-size .5s;
}
.rencar-tour-card:hover .rencar-tour-card-img { background-size: 110%; }

/* Explore button (right side vertical, like Image 2) */
.rencar-tour-explore {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    background: var(--rencar-primary);
    color: #fff;
    border-radius: 12px 0 0 12px;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
    cursor: pointer;
}
.rencar-tour-card:hover .rencar-tour-explore { transform: translateY(-50%) translateX(0); }
.rencar-tour-explore span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}
.rencar-tour-explore i { font-size: 14px; color: #fff; transform: rotate(-90deg); }
.rencar-tour-card-info {
    padding: 16px 18px;
    background: #fff;
}
.rencar-tour-name {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}
.rencar-tour-name a {
    color: var(--rencar-secondary);
    text-decoration: none;
}
.rencar-tour-name a:hover { color: var(--rencar-primary); }
.rencar-tour-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.rencar-tour-meta span {
    font-size: 12px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 4px;
}
.rencar-tour-meta i { color: var(--rencar-primary); }

/* Custom nav arrows (orange circles like Image 2) */
.rencar-tours-btn-prev,
.rencar-tours-btn-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    background: var(--rencar-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(249,115,22,.4);
    transition: background .3s, transform .3s;
    user-select: none;
}
.rencar-tours-btn-prev { left: -20px; }
.rencar-tours-btn-next { right: -20px; }
.rencar-tours-btn-prev:hover,
.rencar-tours-btn-next:hover { background: #fff; color: var(--rencar-primary); transform: translateY(-50%) scale(1.1); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.rencar-why-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.rencar-why-icon {
    width: 50px;
    height: 50px;
    background: rgba(249,115,22,.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rencar-primary);
    font-size: 20px;
    flex-shrink: 0;
    transition: background .3s;
}
.rencar-why-item:hover .rencar-why-icon { background: var(--rencar-primary); color: #fff; }
.rencar-why-item h5 { font-size: 16px; font-weight: 700; color: var(--rencar-heading); margin-bottom: 4px; }
.rencar-why-item p  { font-size: 14px; color: var(--rencar-text); margin: 0; }

/* ============================================
   COUNTER
   ============================================ */
.rencar-counter-section {
    background: var(--rencar-primary);
    padding: 60px 0;
}
.rencar-counter-item { color: #fff; }
.rencar-counter-icon {
    font-size: 36px;
    color: rgba(255,255,255,.7);
    margin-bottom: 12px;
}
.rencar-counter-number {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    display: inline-block;
}
.rencar-counter-suffix { font-size: 28px; font-weight: 800; color: rgba(255,255,255,.85); margin-left: 2px; }
.rencar-counter-label { font-size: 14px; color: rgba(255,255,255,.8); margin-top: 6px; font-weight: 600; }

/* ============================================
   SECTION COMMON
   ============================================ */
.rencar-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,115,22,.1);
    border: 1px solid rgba(249,115,22,.3);
    color: var(--rencar-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
}
.rencar-section-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--rencar-heading);
    line-height: 1.2;
    margin-bottom: 16px;
}
.rencar-section-desc { color: var(--rencar-text); max-width: 560px; margin: 0 auto 10px; }
.rencar-highlight { color: var(--rencar-primary); }
.section-padding { padding: 80px 0; }
.bg-light { background-color: #f8fafc !important; }

/* ============================================
   ABOUT
   ============================================ */
.rencar-about-images { position: relative; }
.rencar-about-img-main img { width: 100%; border-radius: 16px; }
.rencar-about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 50%;
    border: 6px solid #fff;
    border-radius: 12px;
    box-shadow: var(--rencar-shadow-lg);
}
.rencar-about-exp-badge {
    position: absolute;
    top: 40px;
    left: -20px;
    background: var(--rencar-primary);
    color: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(249,115,22,.4);
}
.rencar-exp-number { font-size: 36px; font-weight: 900; display: block; line-height: 1; }
.rencar-exp-label  { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.rencar-about-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--rencar-heading);
}
.rencar-about-check-item i { color: var(--rencar-primary); font-size: 16px; }

/* ============================================
   CTA
   ============================================ */
.rencar-cta-section { background: var(--rencar-secondary); padding: 60px 0; }
.rencar-cta-title { color: #fff; font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.rencar-cta-section p { color: rgba(255,255,255,.7); }
.rencar-btn-white {
    background: #fff;
    color: var(--rencar-primary);
    font-weight: 700;
}
.rencar-btn-white:hover { background: var(--rencar-primary); color: #fff; }
.rencar-btn-outline-white {
    display: inline-flex;
    align-items: center;
    border: 2px solid rgba(255,255,255,.5);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--rencar-transition);
}
.rencar-btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* ============================================
   PROCESS
   ============================================ */
.rencar-process-item {
    text-align: center;
    padding: 36px 28px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--rencar-shadow);
    position: relative;
    transition: var(--rencar-transition);
}
.rencar-process-item:hover { transform: translateY(-6px); box-shadow: var(--rencar-shadow-lg); }
.rencar-process-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--rencar-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(249,115,22,.4);
}
.rencar-process-icon {
    width: 70px;
    height: 70px;
    background: rgba(249,115,22,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 20px;
    font-size: 28px;
    color: var(--rencar-primary);
    transition: var(--rencar-transition);
}
.rencar-process-item:hover .rencar-process-icon { background: var(--rencar-primary); color: #fff; }
.rencar-process-item h4 { font-size: 18px; font-weight: 700; color: var(--rencar-heading); margin-bottom: 10px; }
.rencar-process-item p  { font-size: 14px; color: var(--rencar-text); margin: 0; }

/* ============================================
   FAQ (updated)
   ============================================ */
.rencar-faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 2px solid var(--rencar-border);
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}
.rencar-faq-item.active { border-color: var(--rencar-primary); box-shadow: 0 4px 20px rgba(249,115,22,.12); }
.rencar-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    color: var(--rencar-heading);
    user-select: none;
}
.rencar-faq-question:hover { color: var(--rencar-primary); }
.rencar-faq-icon { color: var(--rencar-primary); font-size: 13px; transition: transform .3s; flex-shrink: 0; margin-left: 12px; }
.rencar-faq-item.active .rencar-faq-icon { transform: rotate(45deg); }
.rencar-faq-answer { padding: 0 22px 18px; border-top: 1px solid var(--rencar-border); }
.rencar-faq-answer p { margin: 14px 0 0; font-size: 15px; color: var(--rencar-text); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.rencar-testi-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: var(--rencar-shadow);
    border-bottom: 4px solid var(--rencar-primary);
}
.rencar-testi-stars { color: #f59e0b; margin-bottom: 14px; }
.rencar-testi-text  { font-size: 15px; color: var(--rencar-text); margin-bottom: 20px; font-style: italic; }
.rencar-testi-author { display: flex; align-items: center; gap: 14px; }
.rencar-testi-avatar, .rencar-testi-avatar-placeholder {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.rencar-testi-avatar-placeholder {
    background: var(--rencar-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: 20px;
}
.rencar-testi-author strong { display: block; font-size: 15px; color: var(--rencar-heading); }
.rencar-testi-author span   { font-size: 12px; color: var(--rencar-primary); }
.rencar-testimonials-swiper .swiper-pagination { bottom: -30px; }
.rencar-testimonials-section { padding-bottom: 100px; }

/* ============================================
   BLOG CARDS
   ============================================ */
.rencar-blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--rencar-shadow);
    transition: var(--rencar-transition);
    height: 100%;
}
.rencar-blog-card:hover { transform: translateY(-6px); box-shadow: var(--rencar-shadow-lg); }
.rencar-blog-img { display: block; overflow: hidden; height: 220px; }
.rencar-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.rencar-blog-card:hover .rencar-blog-img img { transform: scale(1.06); }
.rencar-blog-body { padding: 22px; }
.rencar-blog-meta { display: flex; gap: 16px; margin-bottom: 12px; font-size: 13px; color: #888; flex-wrap: wrap; }
.rencar-blog-meta i { color: var(--rencar-primary); margin-right: 4px; }
.rencar-blog-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.rencar-blog-title a { color: var(--rencar-heading); text-decoration: none; }
.rencar-blog-title a:hover { color: var(--rencar-primary); }
.rencar-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--rencar-primary);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    margin-top: 8px;
}
.rencar-read-more:hover { gap: 10px; color: var(--rencar-primary); }

/* ============================================
   BACK TO TOP (ensure visible)
   ============================================ */
.rencar-back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--rencar-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s;
    z-index: 9000;
    box-shadow: 0 4px 16px rgba(249,115,22,.4);
    text-decoration: none;
}
.rencar-back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.rencar-back-top:hover { background: var(--rencar-secondary); color: #fff; }

/* ============================================
   GENERAL BUTTON
   ============================================ */
.rencar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--rencar-primary);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid var(--rencar-primary);
    cursor: pointer;
    transition: var(--rencar-transition);
    font-family: var(--rencar-font-base);
    letter-spacing: .3px;
    white-space: nowrap;
}
.rencar-btn:hover { background: var(--rencar-primary-dark); border-color: var(--rencar-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,.35); }
.rencar-btn-sm { padding: 8px 18px; font-size: 13px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .rencar-tours-btn-prev { left: 0; }
    .rencar-tours-btn-next { right: 0; }
}
@media (max-width: 992px) {
    .rencar-booking-box { padding: 28px 24px; }
    .rencar-about-img-secondary { display: none; }
    .rencar-hero-title { font-size: 38px; }
}
@media (max-width: 768px) {
    .rencar-hero-content { padding: 70px 0 60px; }
    .rencar-booking-box { margin: 0 16px; border-radius: 12px; }
    .rencar-tour-card-img { height: 240px; }
    .rencar-feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
    .rencar-cta-title { font-size: 24px; }
    .rencar-cta-section .text-lg-end { margin-top: 20px; }
    .rencar-modal-box { margin: 0 16px; }
    .rencar-counter-number { font-size: 36px; }
    .section-padding { padding: 60px 0; }
}
@media (max-width: 480px) {
    .rencar-hero-btns { flex-direction: column; }
    .rencar-btn-book { width: 100%; }
    .rencar-hero-title { font-size: 30px; }
    .rencar-booking-title { font-size: 18px; }
}

/* ============================================
   FAST TRACK CHECKBOX FIX  (v1.1.1)
   ============================================ */
.rencar-fasttrack-field {
    padding: 0 !important;
}
.rencar-fasttrack-label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0 14px !important;
    white-space: nowrap;
}
.rencar-fasttrack-label input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    accent-color: var(--rencar-primary);
    cursor: pointer;
    flex-shrink: 0;
    /* Remove margin/padding that browser adds */
    margin: 0 !important;
    padding: 0 !important;
}
.rencar-fasttrack-label span {
    font-size: 14px;
    font-weight: 600;
    color: var(--rencar-heading);
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    flex-shrink: 0;
}
.rencar-fasttrack-info {
    flex-shrink: 0;
    margin-left: 2px;
}

/* ============================================
   GOOGLE MAP SECTION
   ============================================ */
.rencar-map-section {
    background: var(--rencar-secondary);
    padding: 60px 0;
}
.rencar-map-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
}
.rencar-map-info .rencar-section-tag {
    background: rgba(249,115,22,.15);
    border-color: rgba(249,115,22,.4);
    color: var(--rencar-primary);
}
.rencar-map-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}
.rencar-map-contacts { display: flex; flex-direction: column; gap: 14px; }
.rencar-map-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,.8);
    font-size: 14px;
}
.rencar-map-contact-item i {
    color: var(--rencar-primary);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}
.rencar-map-contact-item a { color: rgba(255,255,255,.8); text-decoration: none; }
.rencar-map-contact-item a:hover { color: var(--rencar-primary); }
.rencar-map-embed {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.3);
}
.rencar-map-embed iframe { display: block; width: 100%; height: 360px; }
.rencar-map-placeholder {
    height: 360px;
    background: rgba(255,255,255,.05);
    border: 2px dashed rgba(255,255,255,.15);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

@media (max-width: 992px) {
    .rencar-map-inner { grid-template-columns: 1fr; }
    .rencar-map-embed iframe { height: 280px; }
}

/* ============================================
   FLOATING SIDEBAR - AREA 1 (all devices)
   ============================================ */
.rencar-float-sidebar {
    position: fixed;
    right: 20px;
    top: 70%;
    transform: translateY(-50%);
    z-index: 8888;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.rencar-float-hours {
    background: var(--rencar-secondary);
    color: rgba(255,255,255,.85);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
    margin-bottom: 4px;
    letter-spacing: .3px;
}
.rencar-float-hours i { color: var(--rencar-primary); font-size: 11px; }

/* Individual floating buttons */
.rencar-float-btn {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 3px 14px rgba(0,0,0,.25);
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
    border: none;
    outline: none;
    /* Pulse animation for phone */
}
.rencar-float-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0,0,0,.3);
    color: #fff;
}
.rencar-float-phone { background: var(--rencar-primary); }
.rencar-float-mess  { background: #0084FF; }
.rencar-float-wa    { background: #25D366; }
.rencar-float-book  { background: var(--rencar-secondary); border: 2px solid rgba(255,255,255,.2); }
.rencar-float-top   { background: rgba(30,41,59,.9); }

/* Pulse animation on phone button */
.rencar-float-phone::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--rencar-primary);
    opacity: .35;
    animation: float-pulse 2s ease-in-out infinite;
}
@keyframes float-pulse {
    0%, 100% { transform: scale(1);   opacity: .35; }
    50%       { transform: scale(1.3); opacity: 0;   }
}

/* Tooltip on hover */
.rencar-float-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--rencar-secondary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, right .2s;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.rencar-float-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--rencar-secondary);
}
.rencar-float-btn:hover .rencar-float-tooltip { opacity: 1; right: calc(100% + 8px); }

/* ============================================
   MOBILE BOTTOM BAR - AREA 2 (mobile only)
   ============================================ */
.rencar-mobile-bar {
    display: none; /* hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8889;
    background: var(--rencar-secondary);
    border-top: 2px solid rgba(255,255,255,.08);
    box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.rencar-mobile-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 6px;
    text-decoration: none;
    color: rgba(255,255,255,.7);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: background .2s, color .2s;
    border-right: 1px solid rgba(255,255,255,.07);
}
.rencar-mobile-bar-item:last-child { border-right: none; }
.rencar-mobile-bar-item i { font-size: 20px; }
.rencar-mobile-bar-item:hover,
.rencar-mobile-bar-item:active { background: rgba(249,115,22,.15); color: var(--rencar-primary); }
.rencar-mbar-phone i { color: var(--rencar-primary); }
.rencar-mbar-mess  i { color: #0084FF; }
.rencar-mbar-wa    i { color: #25D366; }
.rencar-mbar-map   i { color: #f59e0b; }

/* Show mobile bar only on mobile */
@media (max-width: 768px) {
    .rencar-mobile-bar {
        display: flex;
    }
    /* Add padding to footer to prevent overlap with mobile bar */
    .site-footer { padding-bottom: 70px !important; }
    /* Adjust floating sidebar position on mobile */
    .rencar-float-sidebar {
        right: 10px;
        bottom: 80px; /* above mobile bar */
        top: auto;
        transform: none;
    }
    .rencar-float-hours { display: none; } /* hide hours on mobile - saves space */
    .rencar-float-btn { width: 42px; height: 42px; font-size: 16px; }
}

/* ============================================
   FOOTER UPDATES
   ============================================ */
.site-footer {
    background: var(--rencar-dark);
    color: rgba(255,255,255,.65);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-widget h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--rencar-primary);
    border-radius: 2px;
}
.footer-about p { font-size: 14px; margin: 16px 0 20px; }
.footer-logo { display: inline-block; margin-bottom: 12px; }
.footer-social-links { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social-links a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    text-decoration: none;
    transition: var(--rencar-transition);
}
.footer-social-links a:hover { background: var(--rencar-primary); color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    font-size: 14px;
    display: flex; align-items: center; gap: 6px;
    transition: color .2s, gap .2s;
}
.footer-links a::before { content: '›'; color: var(--rencar-primary); font-size: 16px; }
.footer-links a:hover { color: var(--rencar-primary); gap: 10px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; gap: 14px; align-items: flex-start; }
.footer-contact-item .icon {
    width: 38px; height: 38px; flex-shrink: 0;
    background: rgba(249,115,22,.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--rencar-primary); font-size: 14px;
}
.footer-contact-item h6 { color: #fff; font-size: 13px; font-weight: 600; margin: 0 0 2px; }
.footer-contact-item span,
.footer-contact-item a { color: rgba(255,255,255,.65); font-size: 13px; text-decoration: none; }
.footer-contact-item a:hover { color: var(--rencar-primary); }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0;
    font-size: 13px;
    flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,.5); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 13px; }
.footer-bottom-links a:hover { color: var(--rencar-primary); }

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   FIXES v1.1.2 - 2024 Updates
   ============================================ */

/* ---- 1. Horizontal social icons in topbar ---- */
.topbar-social {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}
.topbar-social a {
    display: inline-flex !important;
    flex-shrink: 0;
}

/* ---- 2. Hide the clock "09:00" indicator above floating phone ---- */
.rencar-float-hours { display: none !important; }

/* ---- 3. Hide floating right sidebar on mobile (show only mobile bottom bar) ---- */
@media (max-width: 768px) {
    .rencar-float-sidebar { display: none !important; }
    .rencar-mobile-bar    { display: flex !important; }
    /* Add bottom padding so content isn't hidden behind the mobile bar */
    body { padding-bottom: 64px; }
}
@media (min-width: 769px) {
    .rencar-mobile-bar { display: none !important; }
    body { padding-bottom: 0; }
}

/* ============================================
   MOBILE MENU - Hamburger → X Animation
   ============================================ */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    z-index: 1001;
    position: relative;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--rencar-secondary);
    border-radius: 3px;
    transition: transform .3s ease, opacity .2s ease, background .3s ease;
    transform-origin: center;
}

/* Animate hamburger → X when active */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--rencar-primary);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--rencar-primary);
}

/* ============================================
   MOBILE NAVIGATION (make it work!)
   ============================================ */
@media (max-width: 991.98px) {
    .menu-toggle { display: flex !important; }

    /* Hide "Book A Car" button on mobile for space */
    .header-cta .btn-primary-rencar {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* Mobile nav: slide-down panel */
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #fff;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        transition: max-height .35s ease, opacity .25s ease, visibility .25s;
        box-shadow: 0 8px 24px rgba(0,0,0,.12);
        z-index: 999;
    }
    .main-nav.open {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        visibility: visible;
        opacity: 1;
    }

    /* Ensure header has position relative for absolute nav */
    .site-header { position: relative; }
    .header-inner { position: static; }

    .main-nav ul.nav-menu {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 10px 20px 20px !important;
        margin: 0 !important;
        list-style: none;
        gap: 0 !important;
    }
    .main-nav ul.nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--rencar-border);
    }
    .main-nav ul.nav-menu > li:last-child { border-bottom: none; }
    .main-nav ul.nav-menu > li > a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 14px 0 !important;
        font-size: 15px;
        color: var(--rencar-secondary) !important;
        font-weight: 600;
    }
    .main-nav ul.nav-menu > li > a::after { display: none !important; }
    .main-nav ul.nav-menu > li.menu-item-has-children > a::before {
        content: "\f107";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        transition: transform .3s;
    }
    .main-nav ul.nav-menu > li.open > a::before {
        transform: rotate(180deg);
    }

    /* Sub-menu on mobile */
    .main-nav .sub-menu {
        position: static !important;
        display: none;
        width: 100% !important;
        box-shadow: none !important;
        background: #f8fafc !important;
        border-radius: 0 !important;
        padding: 4px 0 10px !important;
        margin: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        min-width: 0 !important;
    }
    .main-nav .sub-menu li a {
        padding: 10px 16px !important;
        font-size: 14px !important;
        color: var(--rencar-text) !important;
    }
    .main-nav .sub-menu li a:hover { color: var(--rencar-primary) !important; }

    /* Prevent body scroll when menu is open */
    body.menu-open { overflow: hidden; }
}

/* Restore on desktop */
@media (min-width: 992px) {
    .menu-toggle { display: none !important; }
    .main-nav {
        position: static !important;
        max-height: none !important;
        overflow: visible !important;
        visibility: visible !important;
        opacity: 1 !important;
        box-shadow: none !important;
        background: transparent !important;
    }
}

/* ============================================
   FIXES v1.1.3 - FINAL
   ============================================ */

/* ---- Standalone back-to-top button (always visible on all devices) ---- */
.rencar-back-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 8887;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--rencar-secondary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    transition: transform .25s, background .25s;
    outline: none;
}
.rencar-back-top-btn:hover {
    transform: translateY(-3px);
    background: var(--rencar-primary);
    color: #fff;
}

/* On mobile: push it up above the bottom bar */
@media (max-width: 768px) {
    .rencar-back-top-btn {
        bottom: 80px;
        right: 14px;
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
}

/* ============================================
   MOBILE MENU - Unified, overrides everything
   ============================================ */
@media (max-width: 991.98px) {
    /* Force show toggle button */
    .menu-toggle {
        display: flex !important;
    }

    /* Hide "Book A Car" text on small screens for space */
    .header-cta .btn-primary-rencar {
        padding: 10px 14px !important;
        font-size: 13px !important;
    }
    .header-cta .btn-primary-rencar i { font-size: 14px; }

    /* Mobile navigation panel: slide-down from header */
    .main-nav {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 100vw;
        background: #fff !important;
        transform: none !important;
        transition: none !important;
        padding: 0 !important;
        overflow: hidden !important;
        max-height: 0 !important;
        visibility: hidden !important;
        opacity: 0 !important;
        box-shadow: 0 8px 30px rgba(0,0,0,.15);
        z-index: 999;
        border-top: 1px solid var(--rencar-border);
    }
    .main-nav.open {
        max-height: calc(100vh - 80px) !important;
        overflow-y: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
        transition: max-height .35s ease, opacity .25s ease !important;
    }

    /* Ensure header positions properly for absolute nav */
    .site-header { position: relative !important; }

    /* Menu items */
    .main-nav ul.nav-menu {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 10px 20px 20px !important;
        margin: 0 !important;
        list-style: none !important;
        gap: 0 !important;
        width: 100%;
    }
    .main-nav ul.nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--rencar-border);
        position: relative;
    }
    .main-nav ul.nav-menu > li:last-child { border-bottom: none; }
    .main-nav ul.nav-menu > li > a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 14px 0 !important;
        font-size: 15px !important;
        color: var(--rencar-secondary) !important;
        font-weight: 600;
        text-decoration: none !important;
    }
    .main-nav ul.nav-menu > li > a::after { display: none !important; }
    .main-nav ul.nav-menu > li > a::before { display: none !important; }
    .main-nav ul.nav-menu > li.menu-item-has-children > a {
        position: relative;
    }
    .main-nav ul.nav-menu > li.menu-item-has-children > a::after {
        content: "\f107" !important;
        display: inline-block !important;
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        transform: none !important;
        transition: transform .3s !important;
        color: var(--rencar-primary);
        font-size: 14px;
        margin-left: 10px;
    }
    .main-nav ul.nav-menu > li.open > a::after {
        transform: rotate(180deg) !important;
    }

    /* Sub-menu on mobile */
    .main-nav .sub-menu {
        position: static !important;
        display: none !important;
        width: 100% !important;
        min-width: 0 !important;
        box-shadow: none !important;
        background: #f8fafc !important;
        border-radius: 0 !important;
        padding: 4px 0 10px !important;
        margin: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
    }
    .main-nav ul.nav-menu li.open > .sub-menu { display: block !important; }
    .main-nav .sub-menu li a {
        padding: 10px 20px !important;
        font-size: 14px !important;
        color: var(--rencar-text) !important;
        border-bottom: none !important;
    }
    .main-nav .sub-menu li a:hover { color: var(--rencar-primary) !important; }

    /* Prevent body scroll when menu is open */
    body.menu-open { overflow: hidden; }
}

/* Desktop: restore defaults */
@media (min-width: 992px) {
    .menu-toggle { display: none !important; }
    .main-nav {
        position: static !important;
        max-height: none !important;
        overflow: visible !important;
        visibility: visible !important;
        opacity: 1 !important;
        box-shadow: none !important;
        background: transparent !important;
        transform: none !important;
        border-top: none !important;
    }
}

/* ============================================
   HIDE TRANSFER TABLE ROWS WITH 0.00 PRICE
   (auto-hide rows where all price cells = 0.00 / 0 / $0)
   ============================================ */
/* Handled by JS in main.js - see filterEmptyPriceRows() */

/* ============================================
   BOOKING POPUP MODAL  (v1.1.4)
   ============================================ */
.rencar-booking-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .7);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(6px);
    overflow-y: auto;
}
.rencar-booking-modal-box {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 960px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
    overflow: hidden;
    animation: bookingModalIn .35s cubic-bezier(.34, 1.56, .64, 1);
    max-height: 95vh;
    display: flex;
    flex-direction: column;
}
@keyframes bookingModalIn {
    from { opacity: 0; transform: scale(.92) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.rencar-booking-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: var(--rencar-secondary);
    color: #fff;
    border-bottom: 4px solid var(--rencar-primary);
    flex-shrink: 0;
}
.rencar-booking-modal-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
}
.rencar-booking-modal-title i { color: var(--rencar-primary); }
.rencar-booking-modal-close {
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
}
.rencar-booking-modal-close:hover {
    background: var(--rencar-primary);
    transform: rotate(90deg);
}
.rencar-booking-modal-body {
    padding: 28px;
    overflow-y: auto;
    flex: 1 1 auto;
}
.rencar-booking-modal-intro {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f4f8;
}

/* Modal: simplify form layout to fit in popup (1 col → 2 col) */
.rencar-booking-modal-body .rencar-booking-form .row > [class*="col-lg-3"] {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}
.rencar-booking-modal-body .rencar-booking-form .row > [class*="col-lg-4"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

@media (max-width: 576px) {
    .rencar-booking-modal-box {
        border-radius: 12px;
        max-height: 98vh;
    }
    .rencar-booking-modal-header {
        padding: 16px 20px;
    }
    .rencar-booking-modal-title { font-size: 17px; }
    .rencar-booking-modal-body { padding: 20px 16px; }
    .rencar-booking-modal-body .rencar-booking-form .row > [class*="col-lg-3"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Prevent body scroll when modal is open */
body.rencar-modal-open { overflow: hidden; }

/* Ensure fast-track popup appears above booking popup (in case both needed) */
#fasttrack-modal { z-index: 99999 !important; }

/* ============================================
   ARCHIVE PAGE (Tours / Transfers)  v1.1.5
   ============================================ */

/* Banner */
.rencar-archive-banner {
    background: linear-gradient(135deg, var(--rencar-secondary) 0%, #0f172a 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.rencar-archive-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(249,115,22,.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249,115,22,.1) 0%, transparent 50%);
}
.rencar-archive-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.rencar-archive-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,115,22,.18);
    border: 1px solid rgba(249,115,22,.4);
    color: var(--rencar-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.rencar-archive-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
}
.rencar-archive-banner-content .breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
    margin: 0;
    color: rgba(255,255,255,.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.rencar-archive-banner-content .breadcrumb a { color: rgba(255,255,255,.8); text-decoration: none; }
.rencar-archive-banner-content .breadcrumb a:hover { color: var(--rencar-primary); }
.rencar-archive-banner-content .breadcrumb .current { color: var(--rencar-primary); }
.rencar-archive-banner-content .breadcrumb .sep { color: rgba(255,255,255,.3); }

/* Filter bar */
.rencar-archive-filter {
    padding: 18px 24px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.rencar-found-posts {
    margin: 0;
    color: #666;
    font-size: 14px;
}
.rencar-found-posts strong { color: var(--rencar-primary); }
.rencar-archive-sort {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.rencar-archive-sort label {
    font-size: 13px;
    font-weight: 700;
    color: var(--rencar-heading);
    margin: 0;
}
.rencar-archive-sort select {
    padding: 8px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    color: var(--rencar-heading);
    background: #fff;
    cursor: pointer;
    font-family: var(--rencar-font-base);
    outline: none;
    transition: border-color .2s;
}
.rencar-archive-sort select:focus { border-color: var(--rencar-primary); }

/* Grid */
.rencar-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 992px) { .rencar-archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .rencar-archive-grid { grid-template-columns: 1fr; gap: 20px; } }

/* Archive tour/transfer card (reuses .rencar-tour-card styles with additions) */
.rencar-archive-grid .rencar-tour-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.rencar-archive-grid .rencar-tour-card-img {
    height: 240px;
}

/* Price badge (top-left) */
.rencar-tour-price-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    border-radius: 10px;
    padding: 8px 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    text-align: center;
    min-width: 70px;
    z-index: 2;
}
.rencar-tour-price-badge .label {
    display: block;
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}
.rencar-tour-price-badge .amount {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--rencar-primary);
    line-height: 1.1;
}

/* Extended card info for archive */
.rencar-archive-grid .rencar-tour-card-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.rencar-archive-grid .rencar-tour-name {
    font-size: 18px;
    margin-bottom: 10px;
}
.rencar-tour-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.55;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rencar-archive-grid .rencar-tour-meta {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f4f8;
}
.rencar-tour-card-footer {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.rencar-tour-view-btn,
.rencar-tour-book-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
    cursor: pointer;
    border: 2px solid transparent;
}
.rencar-tour-view-btn {
    background: #f8fafc;
    color: var(--rencar-secondary);
    border-color: #e2e8f0;
}
.rencar-tour-view-btn:hover {
    background: var(--rencar-secondary);
    color: #fff;
    border-color: var(--rencar-secondary);
}
.rencar-tour-book-btn {
    background: var(--rencar-primary);
    color: #fff;
    border-color: var(--rencar-primary);
}
.rencar-tour-book-btn:hover {
    background: var(--rencar-primary-dark, #ea580c);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249,115,22,.35);
}
.rencar-tour-book-btn i { font-size: 12px; }

/* Pagination */
.rencar-pagination { text-align: center; }
.rencar-pagination .page-numbers,
.rencar-pagination ul {
    display: inline-flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.rencar-pagination ul li { display: inline-block; }
.rencar-pagination a,
.rencar-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #fff;
    color: var(--rencar-secondary);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    transition: all .2s;
}
.rencar-pagination a:hover,
.rencar-pagination .current {
    background: var(--rencar-primary);
    color: #fff;
    border-color: var(--rencar-primary);
}

/* No posts */
.rencar-no-posts h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--rencar-secondary);
    margin-bottom: 10px;
}
.rencar-no-posts p { color: #666; }

/* ============================================
   SINGLE TOUR / TRANSFER PAGES  (v1.1.6)
   ============================================ */

/* Banner has background image when post has featured image */
.rencar-single-banner {
    background-size: cover !important;
    background-position: center !important;
    padding: 120px 0 100px !important;
}

.rencar-single-tour-thumb {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 6px 30px rgba(0,0,0,.1);
}
.rencar-single-tour-thumb img { display: block; }

/* Quick-facts strip */
.rencar-tour-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 28px;
    border-left: 4px solid var(--rencar-primary);
}
.rencar-tour-fact {
    display: flex;
    gap: 12px;
    align-items: center;
}
.rencar-tour-fact i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rencar-primary);
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.rencar-tour-fact span {
    font-size: 12px;
    color: #888;
    display: block;
    line-height: 1.1;
}
.rencar-tour-fact strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--rencar-secondary);
    display: block;
    margin-top: 2px;
}

/* Single content body */
.rencar-single-tour-body {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
    font-size: 15px;
    line-height: 1.75;
    color: #444;
}
.rencar-single-tour-body h2,
.rencar-single-tour-body h3,
.rencar-single-tour-body h4 {
    color: var(--rencar-secondary);
    margin: 24px 0 14px;
    font-weight: 700;
}
.rencar-single-tour-body h2 { font-size: 26px; }
.rencar-single-tour-body h3 { font-size: 22px; }
.rencar-single-tour-body h4 { font-size: 18px; }
.rencar-single-tour-body p { margin-bottom: 16px; }
.rencar-single-tour-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 16px 0; }
.rencar-single-tour-body ul,
.rencar-single-tour-body ol { padding-left: 24px; margin-bottom: 16px; }
.rencar-single-tour-body li { margin-bottom: 6px; }
.rencar-single-tour-body blockquote {
    border-left: 4px solid var(--rencar-primary);
    padding: 16px 22px;
    background: #f8fafc;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* Booking sticky sidebar box */
.rencar-tour-booking-sticky {
    position: sticky;
    top: 100px;
}
.rencar-tour-booking-box {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 6px 30px rgba(0,0,0,.1);
    border-top: 4px solid var(--rencar-primary);
    text-align: center;
}
.rencar-tour-booking-price {
    padding: 18px 0;
    border-bottom: 1px dashed #e2e8f0;
    margin-bottom: 20px;
}
.rencar-tour-booking-price .label {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.rencar-tour-booking-price .amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--rencar-primary);
    line-height: 1;
}
.rencar-tour-booking-price .per {
    font-size: 14px;
    color: #666;
    margin-left: 2px;
}
.rencar-tour-booking-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--rencar-secondary);
    margin-bottom: 8px;
}
.rencar-tour-booking-box p {
    font-size: 13px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.5;
}
.rencar-tour-booking-box .rencar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 13px 20px;
}

/* Contact strip below booking button */
.rencar-tour-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed #e2e8f0;
}
.rencar-tour-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #555;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color .2s;
}
.rencar-tour-contact a:hover { color: var(--rencar-primary); }
.rencar-tour-contact i { color: var(--rencar-primary); }

/* Related tours/transfers */
.rencar-related-tours {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f0f4f8;
}
.rencar-related-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--rencar-secondary);
    margin-bottom: 30px;
    text-align: center;
}

@media (max-width: 992px) {
    .rencar-tour-booking-sticky { position: static; margin-top: 28px; }
}
@media (max-width: 576px) {
    .rencar-single-tour-body { padding: 22px; }
    .rencar-tour-facts { padding: 16px; grid-template-columns: 1fr 1fr; }
    .rencar-tour-booking-price .amount { font-size: 28px; }
}

/* ============================================
   FOOTER TRIPADVISOR WIDGET (v1.1.7)
   ============================================ */
.footer-tripadvisor {
    margin-top: 18px;
    padding: 14px;
    background: rgba(255,255,255,.04);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    max-width: 100%;
}
.footer-tripadvisor iframe,
.footer-tripadvisor img,
.footer-tripadvisor div {
    max-width: 100%;
}
.footer-tripadvisor a { color: inherit; }

/* Strip margins on tripadvisor inner elements */
.footer-tripadvisor > :first-child { margin-top: 0; }
.footer-tripadvisor > :last-child { margin-bottom: 0; }

/* ============================================
   TOUR BOOKING FORM (v1.1.8)
   ============================================ */
.rencar-tour-modal-name {
    color: var(--rencar-primary);
    font-weight: 700;
    margin-left: 6px;
    font-size: 15px;
}

/* Form section titles */
.rencar-form-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--rencar-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 22px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f4f8;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.rencar-form-section-title i { color: var(--rencar-primary); }
.rencar-form-section-title:first-child { margin-top: 0; }
.rencar-form-section-hint {
    font-size: 11px;
    font-weight: 500;
    color: #999;
    text-transform: none;
    letter-spacing: 0;
    margin-left: auto;
}

/* Textarea field */
.rencar-field-textarea {
    height: auto !important;
    align-items: flex-start !important;
}
.rencar-field-textarea > i {
    margin-top: 14px;
}
.rencar-field textarea {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 14px 12px 0;
    font-size: 14px;
    color: var(--rencar-heading);
    font-family: var(--rencar-font-base);
    outline: none;
    resize: vertical;
    min-height: 80px;
    width: 100%;
}
.rencar-field select {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 14px 12px 0;
    font-size: 14px;
    color: var(--rencar-heading);
    font-family: var(--rencar-font-base);
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

/* Passenger list */
.rencar-passengers-list { margin-bottom: 10px; }
.rencar-passenger-row {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
    position: relative;
    transition: border-color .25s;
}
.rencar-passenger-row:hover {
    border-color: var(--rencar-primary);
}
.rencar-passenger-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.rencar-passenger-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--rencar-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.rencar-passenger-header h6 {
    margin: 0;
    font-size: 14px;
    color: var(--rencar-secondary);
    font-weight: 700;
    flex: 1;
}
.rencar-passenger-header h6 i {
    color: var(--rencar-primary);
}
.rencar-passenger-remove {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: background .2s, color .2s, transform .2s;
}
.rencar-passenger-remove:hover {
    background: #dc2626;
    color: #fff;
    transform: scale(1.1);
}

/* Passenger row fields: smaller height */
.rencar-passenger-row .rencar-field {
    height: 42px;
    background: #fff;
}
.rencar-passenger-row .rencar-field > i {
    width: 38px;
    font-size: 13px;
}
.rencar-passenger-row .rencar-field input,
.rencar-passenger-row .rencar-field select {
    font-size: 13px;
    padding: 8px 12px 8px 0;
}

/* Add passenger button */
.rencar-btn-add-passenger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px dashed #cbd5e1;
    color: var(--rencar-secondary);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
    width: 100%;
}
.rencar-btn-add-passenger:hover {
    border-color: var(--rencar-primary);
    color: var(--rencar-primary);
    background: rgba(249,115,22,.04);
}
.rencar-btn-add-passenger i {
    color: var(--rencar-primary);
}

/* Tour total display */
.rencar-tour-total {
    background: #f8fafc;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.rencar-tour-total .label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}
.rencar-tour-total .amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--rencar-primary);
}

/* Tour booking modal: form 2-col layout */
.rencar-tour-booking-modal-box .rencar-booking-form .row > [class*="col-md-3"] {
    flex: 0 0 25% !important;
    max-width: 25% !important;
}
.rencar-tour-booking-modal-box .rencar-booking-form .row > [class*="col-md-6"] {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

@media (max-width: 576px) {
    .rencar-tour-booking-modal-box .rencar-booking-form .row > [class*="col-md-6"],
    .rencar-tour-booking-modal-box .rencar-booking-form .row > [class*="col-md-3"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .rencar-passenger-row { padding: 12px; }
    .rencar-form-section-hint { margin-left: 0; width: 100%; }
}

/* =================================================
   SG TOUR BOOKING PLUGIN — integration styles
   Restyles plugin's single-tour & single-transfer output
   to match Rencar theme design.
   ================================================= */

.stb-wrap {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 60px 20px !important;
}

/* Single tour/transfer layout: 2-column */
.stb-single-tour,
.stb-single-transfer {
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}
.stb-tour-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 36px;
    align-items: start;
}
@media (max-width: 992px) {
    .stb-tour-layout { grid-template-columns: 1fr; }
}

/* Main content area */
.stb-tour-main {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
}
.stb-tour-main h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--rencar-secondary);
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--rencar-primary);
    display: inline-block;
    line-height: 1.2;
}
.stb-tour-main h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--rencar-secondary);
    margin: 30px 0 16px;
    position: relative;
    padding-left: 14px;
}
.stb-tour-main h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background: var(--rencar-primary);
    border-radius: 3px;
}
.stb-tour-content {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 10px;
}
.stb-tour-content p { margin-bottom: 14px; }
.stb-tour-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 14px 0;
}
.stb-tour-content ul,
.stb-tour-content ol { padding-left: 22px; margin-bottom: 16px; }
.stb-tour-content li { margin-bottom: 6px; }

/* Inclusions / exclusions */
.stb-tour-inclusions,
.stb-tour-exclusions {
    background: #f8fafc;
    border-radius: 10px;
    padding: 18px 22px;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    border-left: 4px solid var(--rencar-primary);
}
.stb-tour-exclusions {
    border-left-color: #dc2626;
}
.stb-tour-inclusions ul,
.stb-tour-exclusions ul {
    padding-left: 20px;
    margin: 0;
}
.stb-tour-inclusions li,
.stb-tour-exclusions li { margin-bottom: 6px; }

/* Pricing / service tables */
.stb-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 12px 0 24px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.stb-table th,
.stb-table td {
    border: none;
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
}
.stb-table thead th {
    background: var(--rencar-secondary);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .8px;
}
.stb-table tbody tr { background: #fff; }
.stb-table tbody tr:nth-child(even) { background: #f8fafc; }
.stb-table tbody tr:hover { background: rgba(249,115,22,.06); }
.stb-table tbody td {
    color: #334155;
    border-top: 1px solid #f0f4f8;
}
.stb-table tbody td:nth-child(n+2) {
    font-weight: 700;
    color: var(--rencar-primary);
}

/* Booking form sidebar */
.stb-tour-sidebar {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 6px 30px rgba(0,0,0,.1);
    border-top: 4px solid var(--rencar-primary);
    position: sticky;
    top: 100px;
}
.stb-tour-sidebar h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--rencar-secondary);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f4f8;
}
.stb-tour-sidebar h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--rencar-secondary);
    margin: 20px 0 12px;
    text-transform: uppercase;
    letter-spacing: .8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.stb-tour-sidebar h4::before {
    content: '';
    width: 4px;
    height: 14px;
    background: var(--rencar-primary);
    border-radius: 2px;
}

/* Form fields */
.stb-booking-form .stb-field {
    margin-bottom: 14px;
}
.stb-booking-form .stb-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--rencar-secondary);
}
.stb-booking-form .stb-field input[type="text"],
.stb-booking-form .stb-field input[type="email"],
.stb-booking-form .stb-field input[type="number"],
.stb-booking-form .stb-field input[type="tel"],
.stb-booking-form .stb-field select,
.stb-booking-form .stb-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: var(--rencar-heading);
    font-family: var(--rencar-font-base);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.stb-booking-form .stb-field input:focus,
.stb-booking-form .stb-field select:focus,
.stb-booking-form .stb-field textarea:focus {
    border-color: var(--rencar-primary);
    box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.stb-booking-form .stb-field textarea {
    resize: vertical;
    min-height: 80px;
}

/* Passenger list items */
.stb-passenger-item {
    border: 1px dashed #cbd5e1;
    background: #f8fafc;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 10px;
    position: relative;
    transition: border-color .2s;
}
.stb-passenger-item:hover {
    border-color: var(--rencar-primary);
    border-style: solid;
}

/* Plugin's remove button (if exists, usually injected via JS) */
.stb-passenger-item [data-stb-remove-passenger],
.stb-passenger-item .stb-remove-passenger,
.stb-passenger-item button[type="button"]:last-child {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fee2e2;
    color: #dc2626;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}
.stb-passenger-item [data-stb-remove-passenger]:hover,
.stb-passenger-item .stb-remove-passenger:hover {
    background: #dc2626;
    color: #fff;
}

/* Primary submit button */
.stb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--rencar-primary) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 13px 24px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none;
    cursor: pointer;
    transition: all .25s !important;
    width: 100%;
    font-family: var(--rencar-font-base);
    letter-spacing: .3px;
}
.stb-btn:hover {
    background: #ea580c !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249,115,22,.35);
}
.stb-btn[disabled] {
    opacity: .6;
    cursor: not-allowed;
    transform: none !important;
}

/* "Add Passenger" secondary button */
.stb-btn-secondary,
[data-stb-add-passenger] {
    background: transparent !important;
    color: var(--rencar-secondary) !important;
    border: 2px dashed #cbd5e1 !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    width: 100%;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
}
.stb-btn-secondary:hover,
[data-stb-add-passenger]:hover {
    background: rgba(249,115,22,.05) !important;
    border-color: var(--rencar-primary) !important;
    color: var(--rencar-primary) !important;
}
.stb-btn-secondary::before,
[data-stb-add-passenger]::before {
    content: '\f055';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--rencar-primary);
}

/* Alerts */
.stb-alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    border-left: 4px solid;
}
.stb-alert-success {
    background: #f0fdf4;
    color: #16a34a;
    border-color: #22c55e;
}
.stb-alert-error {
    background: #fef2f2;
    color: #dc2626;
    border-color: #ef4444;
}
.stb-alert-warning {
    background: #fffbeb;
    color: #d97706;
    border-color: #f59e0b;
}

/* Floating "Booking now" button (plugin's mobile helper) */
.stb-booking-now {
    display: none !important; /* we already have theme's floating buttons */
}

/* Date feedback */
.stb-date-feedback {
    margin-top: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    background: #fef2f2;
    color: #dc2626;
    border-left: 3px solid #ef4444;
}

/* Tour archive using plugin's shortcode (if used) */
.stb-tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 24px !important;
}
.stb-tour-card {
    border: none !important;
    border-radius: 14px !important;
    padding: 0 !important;
    background: #fff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,.08) !important;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}
.stb-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,.15) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .stb-tour-main { padding: 22px; }
    .stb-tour-main h2 { font-size: 24px; }
    .stb-tour-main h3 { font-size: 18px; }
    .stb-tour-sidebar { padding: 22px; position: static; margin-top: 24px; }
    .stb-table { font-size: 13px; }
    .stb-table th, .stb-table td { padding: 10px 12px; }
}

/* ============================================
   SECTION UI IMPROVEMENTS v1.2.0
   ============================================ */

/* --- Why section image + stat card --- */
.rencar-why-img-wrap { position: relative; }
.rencar-why-stat {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #fff;
    border-radius: 14px;
    padding: 18px 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 220px;
}
.rencar-why-stat-item { text-align: center; }
.rencar-why-stat-item .number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--rencar-primary);
    line-height: 1;
}
.rencar-why-stat-item .label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    margin-top: 4px;
    display: block;
}
.rencar-why-stat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* --- Process section on dark bg --- */
.rencar-process-section .rencar-process-item {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
}
.rencar-process-section .rencar-process-item:hover {
    background: rgba(249,115,22,.12);
    border-color: rgba(249,115,22,.4);
}
.rencar-process-section .rencar-process-item h4 { color: #fff; }
.rencar-process-section .rencar-process-item p  { color: rgba(255,255,255,.65); }
.rencar-process-line {
    position: absolute;
    top: 80px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, rgba(249,115,22,.2), var(--rencar-primary), rgba(249,115,22,.2));
    z-index: 0;
}
.rencar-process-item { position: relative; z-index: 1; }

/* --- Counter row layout --- */
.rencar-counter-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

/* --- CTA inner with shape --- */
.rencar-cta-inner { position: relative; overflow: hidden; }
.rencar-cta-bg-shape {
    position: absolute;
    right: -60px;
    top: -60px;
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}

/* --- Tours section background --- */
.rencar-tours-section {
    background: linear-gradient(160deg, var(--rencar-secondary) 0%, #1a2d45 60%, #12243b 100%);
    position: relative;
    overflow: hidden;
}
.rencar-tours-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 80%, rgba(249,115,22,.08) 0%, transparent 45%),
        radial-gradient(circle at 90% 10%, rgba(249,115,22,.06) 0%, transparent 40%),
        repeating-linear-gradient(-45deg, rgba(255,255,255,.015) 0, rgba(255,255,255,.015) 1px, transparent 1px, transparent 18px);
    pointer-events: none;
}
/* Tours pagination dots */
.rencar-tours-pagination { margin-top: 28px !important; position: static !important; }
.rencar-tours-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,.4);
    opacity: 1;
    width: 8px; height: 8px;
}
.rencar-tours-pagination .swiper-pagination-bullet-active {
    background: var(--rencar-primary);
    width: 22px;
    border-radius: 4px;
}

/* --- FAQ improvements --- */
.rencar-faq-left { position: sticky; top: 100px; }
.rencar-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 14px;
    border: 2px solid #e8edf3;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
    cursor: pointer;
}
.rencar-faq-item:hover   { border-color: rgba(249,115,22,.4); }
.rencar-faq-item.active  { border-color: var(--rencar-primary); box-shadow: 0 4px 24px rgba(249,115,22,.12); }
.rencar-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-weight: 700;
    font-size: 15px;
    color: var(--rencar-secondary);
    user-select: none;
    gap: 16px;
}
.rencar-faq-question:hover { color: var(--rencar-primary); }
.rencar-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    color: var(--rencar-primary);
    transition: transform .3s, background .3s;
}
.rencar-faq-item.active .rencar-faq-icon {
    background: var(--rencar-primary);
    color: #fff;
    border-color: var(--rencar-primary);
}
.rencar-faq-answer {
    padding: 0 24px 20px;
    border-top: 1px solid #f0f4f8;
}
.rencar-faq-answer p {
    margin: 14px 0 0;
    font-size: 15px;
    color: var(--rencar-text);
    line-height: 1.7;
}

/* --- Testimonials improvements --- */
.rencar-testi-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    border: 1px solid #f0f4f8;
    transition: transform .3s, box-shadow .3s;
    height: 100%;
    position: relative;
}
.rencar-testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,.1);
}
.rencar-testi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.rencar-testi-quote {
    font-size: 24px;
    color: rgba(249,115,22,.15);
}
.rencar-testi-stars { color: #f59e0b; }
.rencar-testi-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 22px;
    font-style: italic;
}
.rencar-testi-author { display: flex; align-items: center; gap: 14px; }
.rencar-testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid rgba(249,115,22,.2);
}
.rencar-testi-avatar-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rencar-secondary), #2d3f56);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: 20px;
    flex-shrink: 0;
}
.rencar-testi-author strong { display: block; font-size: 15px; font-weight: 700; color: var(--rencar-heading); }
.rencar-testi-author span   { font-size: 12px; color: var(--rencar-primary); font-weight: 600; }
.rencar-testi-pagination { margin-top: 30px !important; position: static !important; }
.rencar-testi-pagination .swiper-pagination-bullet { background: #cbd5e1; opacity: 1; }
.rencar-testi-pagination .swiper-pagination-bullet-active { background: var(--rencar-primary); width: 20px; border-radius: 4px; }
.rencar-testimonials-section { padding-bottom: 80px; }

/* ============================================
   FIX v1.2.1 — Why Cards + Process Line
   ============================================ */

/* --- Why Choose Us: stat cards grid --- */
.rencar-why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 10px;
}
.rencar-why-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    border: 1px solid #f0f4f8;
    transition: transform .3s, box-shadow .3s;
}
.rencar-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,.1);
}
.rencar-why-card--accent {
    background: linear-gradient(135deg, var(--rencar-primary) 0%, #ea580c 100%);
    border-color: transparent;
}
.rencar-why-card--accent .rencar-why-card-icon,
.rencar-why-card--accent .rencar-why-card-val,
.rencar-why-card--accent .rencar-why-card-lbl { color: #fff; }
.rencar-why-card--accent .rencar-why-card-icon { background: rgba(255,255,255,.2); }
.rencar-why-card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    background: rgba(249,115,22,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--rencar-primary);
}
.rencar-why-card-val {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--rencar-secondary);
    line-height: 1;
    margin-bottom: 6px;
}
.rencar-why-card-lbl {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: .8px;
}
@media (max-width: 576px) {
    .rencar-why-cards { gap: 14px; }
    .rencar-why-card  { padding: 20px 14px; }
    .rencar-why-card-val { font-size: 1.8rem; }
}

/* --- Process section: CSS-only connector line via nth-child pseudo --- */
.rencar-process-row { position: relative; }

/* Horizontal connector only on large screens */
@media (min-width: 992px) {
    .rencar-process-row::after {
        content: '';
        position: absolute;
        top: 98px;
        left: calc(16.66% + 20px);
        right: calc(16.66% + 20px);
        height: 0;
        z-index: 0;
        pointer-events: none;
    }
}
/* Ensure step cards sit above the line */
.rencar-process-item { position: relative; z-index: 1; }

/* Remove the old standalone line element (safety) */
.rencar-process-line { display: none !important; }

/* Recalibrate process-num top position for alignment */
.rencar-process-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--rencar-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(249,115,22,.4);
    border: 3px solid var(--rencar-secondary);
    z-index: 2;
}
