/* assets/css/style.css */
:root {
    --navy: #0a1929;
    --dark-navy: #06101f;
    --blue: #1a73e8;
    --orange: #ff6b35;
    --orange-dark: #e55a2b;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navbar */
.bg-navy {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 100%);
}

.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    max-height: 40px;
    width: auto;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--orange);
}

.dropdown-menu {
    background: white;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: var(--light-gray);
    color: var(--orange);
    padding-left: 2rem;
}

/* Buttons */
.btn-orange {
    background: var(--orange);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-orange:hover {
    background: var(--orange-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-white {
    background: white;
    color: var(--orange);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-white:hover {
    background: var(--light-gray);
    color: var(--orange-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    font-weight: 600;
    border-radius: 50px;
}

.btn-outline-light:hover {
    background: white;
    color: var(--orange);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff !important;
    border: 2px solid #25D366;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: #1ebd5b;
    border-color: #1ebd5b;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #1a365d 50%, #2c5282 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255,107,53,0.1) 100%);
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.min-vh-75 {
    min-height: 75vh;
}

/* Quick Booking */
.quick-booking-card {
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--border-color);
}

/* Cards */
.service-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--orange);
}

.vehicle-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vehicle-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.placeholder-image {
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-muted);
}

.text-orange {
    color: var(--orange) !important;
}

/* B2B Section */
.bg-white-10 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* ==========================================================================
   Process Workflow Section (Desktop & Mobile)
   ========================================================================== */
.process-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.process-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Desktop Flow (Interconnected Pipeline) */
.process-desktop-pipeline {
    position: relative;
    margin-top: 2.5rem;
}

.process-pipeline-line {
    position: absolute;
    top: 52px;
    left: 7%;
    right: 7%;
    height: 3px;
    background: linear-gradient(90deg, #e2e8f0 0%, var(--orange) 50%, #e2e8f0 100%);
    z-index: 1;
}

.process-pipeline-steps {
    position: relative;
    z-index: 2;
}

.process-step-col {
    position: relative;
}

.process-step-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 1.5rem 0.85rem 1.25rem;
    text-align: center;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(10, 25, 41, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.process-node-wrap {
    position: relative;
    margin-bottom: 1.15rem;
    display: inline-block;
}

.process-node-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    color: var(--navy);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
}

.process-step-card:hover .process-node-circle {
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 100%);
    color: #ffffff;
    border-color: var(--orange);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(10, 25, 41, 0.2);
}

.process-step-number {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--orange);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.4);
}

.process-step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.process-step-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Step Arrow Indicator between columns on Desktop */
.process-step-arrow {
    position: absolute;
    top: 52px;
    right: -12px;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 0.7rem;
    z-index: 3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Mobile Vertical Stepper Timeline (< lg) */
.process-mobile-timeline {
    position: relative;
    padding-left: 2.25rem;
    margin-top: 1.5rem;
}

.process-mobile-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 30px;
    left: 17px;
    width: 3px;
    background: linear-gradient(180deg, var(--orange) 0%, #3b82f6 50%, #10b981 100%);
    border-radius: 3px;
}

.process-timeline-item {
    position: relative;
    margin-bottom: 1.25rem;
}

.process-timeline-item:last-child {
    margin-bottom: 0;
}

.process-timeline-node {
    position: absolute;
    left: -2.25rem;
    top: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: #ffffff;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.process-timeline-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem 1.15rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    transition: transform 0.2s ease;
}

.process-timeline-card:active {
    transform: scale(0.99);
}

.process-timeline-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.process-timeline-content {
    flex: 1;
}

.process-timeline-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.process-timeline-desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 0;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-wa-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: row-reverse;
}

.floating-wa-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.floating-wa-btn:hover {
    transform: scale(1.1) rotate(6deg);
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

.floating-wa-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: wa-pulse 2s infinite;
    z-index: -1;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.floating-wa-tooltip {
    background: #ffffff;
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    white-space: nowrap;
    border: 1px solid rgba(0,0,0,0.06);
    animation: wa-tooltip-fade 0.4s ease;
}

@keyframes wa-tooltip-fade {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-wa-tooltip .status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

/* Footer */
.footer {
    background: var(--dark-navy);
}

.footer a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--orange) !important;
}

.footer .social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer .social-links a:hover {
    color: var(--orange) !important;
}

.footer h5 {
    color: var(--orange);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .min-vh-75 {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .quick-booking-card {
        margin-top: 0;
        margin-bottom: 2rem;
    }
    
    .floating-wa-container {
        bottom: 20px;
        right: 18px;
    }
    
    .floating-wa-btn {
        width: 52px;
        height: 52px;
        font-size: 28px;
    }
    
    .floating-wa-tooltip {
        display: none !important;
    }
}

/* ==========================================================================
   Floating Notification Popup (SweetAlert Style)
   ========================================================================== */
.floating-notif-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 41, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    animation: notifBackdropFadeIn 0.3s ease;
}

.floating-notif-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.25rem 2rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.animate-pop-in {
    animation: notifPopIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-notif-backdrop.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes notifBackdropFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes notifPopIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.floating-notif-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.floating-notif-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.floating-notif-desc {
    font-size: 0.98rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    word-break: break-word;
}

.floating-notif-close {
    position: absolute;
    top: 15px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.2s;
}

.floating-notif-close:hover {
    color: #1a1a1a;
}