/* =========================================
   ARTHA TRANS - style.css
   Premium Car Rental & Tour Travel Bali
   ========================================= */

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

:root {
    --blue-theme: #0071c2;
    --blue-light-theme: #1e95eb;
    --blue-dark-theme: #0060a5;
    --gold: #C9A96E;
    --gold-light: #E8C98A;
    --gold-dark: #A07840;
    --dark: #0D0D0D;
    --dark-2: #141414;
    --dark-3: #1C1C1C;
    --dark-4: #252525;
    --mid: #3A3A3A;
    --light: #e8f1f5;
    --light-2: #dce2ed;
    --white: #FFFFFF;
    --text: #2A2A2A;
    --text-muted: #777;
    --text-light: #B0A898;
    --ready: #2ECC71;
    --booked: #E74C3C;
    --wa-green: #25D366;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
    --shadow-gold: 0 8px 30px rgba(201,169,110,0.25);
    --shadow-blue: 0 8px 30px rgba(119, 110, 201, 0.25);
    --border-radius: 16px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.loading { overflow: hidden; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- LOADER --- */
.loader {
    position: fixed;
    inset: 0;
    background: var(--blue-theme);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    color: var(--white);
}

.loader-icon {
    display: inline-block;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 16px;
    animation: pulseIcon 1.5s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 8px;
    color: var(--white);
}

.loader-sub {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
    margin: 8px 0 32px;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--mid);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--white), var(--white));
    border-radius: 2px;
    animation: loadFill 1.8s ease-in-out forwards;
}

@keyframes loadFill {
    0% { width: 0; }
    60% { width: 70%; }
    100% { width: 100%; }
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: var(--white);
}

.navbar.scrolled {
    background: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(255, 255, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--dark);
    white-space: nowrap;
}

.nav-logo i {
    color: var(--blue-theme);
    font-size: 1.4rem;
}

.nav-logo strong { color: var(--blue-theme); }

.nav-links {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.nav-link {
    color: var(--blue-theme);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--blue-theme);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--dark);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
}

.nav-cta {
    background: var(--wa-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta:hover {
    background: #1da851;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue-theme);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.85) 0%,
        rgba(13, 13, 13, 0.6) 50%,
        rgba(13, 13, 13, 0.75) 100%
    );
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--blue-theme);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.1; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(116, 110, 201, 0.15);
    border: 1px solid rgba(110, 127, 201, 0.4);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    line-height: 0.95;
    margin-bottom: 16px;
    animation: fadeInDown 0.8s ease 0.4s both;
}

.hero-title-main {
    display: block;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 8px;
}

.hero-title-accent {
    display: block;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 600;
    color: var(--blue-theme);
    letter-spacing: 8px;
    font-style: italic;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--light-2);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 16px;
    animation: fadeInDown 0.8s ease 0.55s both;
}

.hero-desc {
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInDown 0.8s ease 0.65s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease 0.75s both;
}

.hero-stat { text-align: center; }

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--light-2);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInDown 0.8s ease 0.85s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1.5s both;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-dark-theme), var(--blue-theme));
    color: var(--white);
    font-weight: 600;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--blue-theme), var(--blue-light-theme));
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201,169,110,0.4);
}

.btn-whatsapp {
    background: var(--wa-green);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37,211,102,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(42,42,42,0.25);
}

.btn-outline:hover {
    border-color: var(--blue-theme);
    color: var(--blue-dark-theme);
}

.btn-full { width: 100%; justify-content: center; }

/* --- FEATURES BAR --- */
.features-bar {
    background: var(--blue-theme);
    padding: 28px 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.feature-item > i {
    font-size: 1.6rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.feature-item p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}

/* --- SECTION SHARED --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--blue-dark-theme);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '—';
    margin: 0 8px;
    opacity: 0.5;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    color: var(--blue-dark-theme);
}

.section-title-2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title-2 em {
    font-style: italic;
    color: var(--dark);
}

.section-desc {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.7;
}

.section-desc-2 {
    color: var(--white);
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- ABOUT --- */
.about {
    padding: 100px 0;
    background: var(--light);
}

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

.about-images {
    position: relative;
}

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

.about-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-main:hover img { transform: scale(1.04); }

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.about-badge-years {
    background: var(--blue-theme);
    color: var(--white);
    text-align: center;
    padding: 12px;
}

.years-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.years-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-content .section-tag { text-align: left; }
.about-content .section-tag::before { display: none; }
.about-content .section-title { text-align: left; }

.about-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

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

.about-feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue-dark-theme), var(--blue-theme));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark);
}

.about-feature p {
    font-size: 0.83rem;
    color: var(--text-muted);
}

/* --- VEHICLES --- */
.vehicles {
    padding: 100px 0;
    background: var(--white);
}

.vehicle-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.filter-btn {
    background: transparent;
    border: 1.5px solid #ccd1e0;
    color: var(--text-muted);
    padding: 9px 22px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--blue-theme);
    color: var(--blue-dark-theme);
}

.filter-btn.active {
    background: var(--blue-theme);
    border-color: var(--blue-theme);
    color: var(--white);
}

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

.vehicle-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(228, 42, 42, 0.07);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}

.vehicle-card.hidden { display: none; }

.card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .card-image img { transform: scale(1.06); }

.card-status {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-ready { background: rgba(46, 204, 113, 0.9); color: var(--white); }
.status-booked { background: rgba(231, 76, 60, 0.9); color: var(--white); }

.card-type {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--blue-theme);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.card-body {
    padding: 20px;
}

.card-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.card-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-specs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.card-specs span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-specs span i { color: var(--white); }

.card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F0EDE8;
}

.price-rp { font-size: 0.75rem; color: var(--text-muted); }
.price-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--blue-dark-theme);
}
.price-period { font-size: 0.78rem; color: var(--text-muted); }

.card-actions {
    display: flex;
    gap: 10px;
}

.btn-book {
    flex: 1;
    background: linear-gradient(135deg, var(--blue-theme), var(--blue-light-theme));
    color: var(--white);
    border: none;
    padding: 11px 16px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.83rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: var(--transition);
}

.btn-book:hover:not(.btn-disabled) {
    background: linear-gradient(135deg, var(--blue-dark-theme), var(--blue-theme));
    color: var(--white);
    transform: translateY(-1px);
}

.btn-disabled {
    background: #E8E5E0 !important;
    color: var(--text-muted) !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.btn-wa-card {
    background: var(--wa-green);
    color: var(--white);
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-wa-card:hover {
    background: #1da851;
    transform: translateY(-1px);
}

/* --- TOURS --- */
.tours {
    padding: 100px 0;
    background: var(--blue-light-theme);
}

.tours .section-title,
.tours .section-tag { color: var(--white); }
.tours .section-tag { color: var(--dark-2); }
.tours .section-desc { color: rgba(255,255,255,0.5); }
.tours .section-tag::before, .tours .section-tag::after { color: rgba(255,255,255,0.2); }

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

.tour-card {
    background: var(--blue-dark-theme);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.06);
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.tour-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img { transform: scale(1.06); }

.tour-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.tour-duration {
    background: var(--blue-light-theme);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-body {
    padding: 24px;
}

.tour-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.tour-body p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.btn-tour {
    background: var(--blue-light-theme);
    color: var(--white);
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-tour:hover {
    background: var(--blue-theme);
    transform: translateY(-1px);
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 100px 0;
    background: var(--light);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--blue-theme);
    opacity: 0.15;
    line-height: 1;
}

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

.testi-stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
}

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

.testi-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue-dark-theme), var(--blue-theme));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
}

.testi-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --- FOOTER --- */
.footer {
    background: var(--white);
    color: var(--dark);
}

.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-logo i { color: var(--blue-theme); font-size: 1.3rem; }
.footer-logo strong { color: var(--blue-theme); }

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.45);
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--blue-theme);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-theme);
    margin-bottom: 24px;
}

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

.footer-links-col a {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.45);
    transition: var(--transition);
}

.footer-links-col a:hover { color: var(--blue-theme); padding-left: 4px; }

.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.83rem;
    color: rgba(0, 0, 0, 0.45);
}

.contact-item i {
    color: var(--blue-theme);
    width: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a { color: rgba(0, 0, 0, 0.45); transition: var(--transition); }
.contact-item a:hover { color: var(--blue-theme); }

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 4px;
}

.footer-bottom .fa-heart { color: var(--blue-theme); font-size: 0.7rem; }

/* --- FLOATING WA BUTTON --- */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: var(--wa-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 25px rgba(37,211,102,0.5);
    z-index: 900;
    transition: var(--transition);
    animation: floatWA 3s ease-in-out infinite;
}

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

.wa-float:hover {
    background: #1da851;
    transform: scale(1.1) !important;
    box-shadow: 0 12px 35px rgba(37,211,102,0.6);
    animation: none;
}

.wa-tooltip {
    position: absolute;
    right: 68px;
    background: var(--dark);
    color: var(--white);
    font-size: 0.78rem;
    padding: 7px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: var(--transition);
    pointer-events: none;
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--dark);
    border-right: 0;
}

.wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* --- BOOKING MODAL --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    transform: translateY(30px) scale(0.96);
    transition: var(--transition);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: var(--light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover { background: var(--blue-theme); color: var(--white); }

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-dark-theme), var(--blue-theme));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    margin: 0 auto 16px;
}

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.modal-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

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

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.form-group label i { color: var(--blue-theme); }

.form-group input {
    padding: 13px 16px;
    border: 1.5px solid var(--light);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--dark);
    transition: var(--transition);
    background: var(--white);
    outline: none;
    width: 100%;
}

.form-group input:focus {
    border-color: var(--blue-theme);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

.input-readonly {
    background: #F8F5F0 !important;
    color: var(--text-muted) !important;
    cursor: default;
}

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

.booking-summary {
    background: #f0f3f8;
    border-radius: 12px;
    padding: 16px 20px;
    border: 1px solid #dadfe8;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding: 6px 0;
    color: var(--text-muted);
}

.summary-total {
    border-top: 1px solid #dadee8;
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
}

.summary-total span:last-child { color: var(--blue-dark-theme); }

.wa-note {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #166534;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.82rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.wa-note i { color: var(--wa-green); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.form-actions { display: flex; flex-direction: column; gap: 12px; }

/* --- TOAST --- */
.toast {
    position: fixed;
    top: 90px;
    right: 24px;
    background: var(--white);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 3000;
    max-width: 340px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-left: 4px solid var(--ready);
}

.toast-error { border-left-color: var(--booked); }

.toast.show { transform: translateX(0); }

.toast i {
    font-size: 1.4rem;
    margin-top: 2px;
}

.toast-success i { color: var(--ready); }
.toast-error i { color: var(--booked); }

.toast strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.toast p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.toast button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 4px;
    margin-left: auto;
    align-self: flex-start;
}

.toast button:hover { color: var(--dark); }

/* --- ANIMATIONS --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .vehicles-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-img-secondary { width: 160px; bottom: -20px; right: 20px; }
    .tours-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .features-container { grid-template-columns: repeat(2, 1fr); }
    .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        align-items: center;
        justify-content: center;
        gap: 20px;
        z-index: 999;
    }
    .nav-links.open .nav-link {
        font-size: 1.4rem;
        padding: 12px 24px;
    }
    .hamburger { display: flex; z-index: 1001; }
    .hero-stats { gap: 20px; }
    .stat-num { font-size: 1.8rem; }
    .vehicles-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .modal { padding: 28px 24px; }
    .hero-buttons { flex-direction: column; max-width: 280px; }
    .hero-scroll { display: none; }
}

@media (max-width: 480px) {
    .features-container { grid-template-columns: 1fr; }
    .vehicle-filters { gap: 7px; }
    .filter-btn { padding: 7px 16px; font-size: 0.78rem; }
    .hero-title-main, .hero-title-accent { letter-spacing: 4px; }
    .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
}
