/**
 * Modern Professional Design
 *
 * Complete redesign with modern, clean and professional look
 * MOBILE-FIRST APPROACH
 *
 * @package Ride_Booking_Theme
 * @version 2.0.0
 */

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Add padding for fixed header on non-homepage */
body:not(.home) {
    padding-top: 70px;
}

/* Google Fonts Import - Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

/* ========================================
   HEADER STYLES - MOBILE FIRST
   ======================================== */

.rbt-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.rbt-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.rbt-logo-container {
    display: flex;
    align-items: center;
}

.rbt-logo {
    height: 40px;
    width: auto;
}

.rbt-site-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a73e8;
    margin: 0;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.rbt-site-title-link {
    text-decoration: none;
}

/* Navigation - Hidden on mobile by default */
.rbt-main-navigation {
    display: none;
}

.rbt-nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

/* Parent menu item with submenu */
.rbt-nav-menu li {
    position: relative;
}

/* Submenu (dropdown) - Hidden by default */
.rbt-nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 220px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 1000;
    list-style: none;
}

/* Show submenu on hover */
.rbt-nav-menu li:hover > .sub-menu {
    display: block;
    animation: fadeInDown 0.3s ease;
}

/* Submenu items */
.rbt-nav-menu .sub-menu li {
    margin: 0;
}

.rbt-nav-menu .sub-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: none;
    border-radius: 0;
}

.rbt-nav-menu .sub-menu a::after {
    display: none; /* Remove underline effect from submenu */
}

.rbt-nav-menu .sub-menu a:hover {
    background: #f0f7ff;
    color: #1a73e8;
    transform: translateX(5px);
}

/* Dropdown arrow indicator */
.rbt-nav-menu .menu-item-has-children > a::before {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.rbt-nav-menu .menu-item-has-children:hover > a::before {
    transform: rotate(180deg);
}

/* Animation for dropdown */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rbt-nav-menu a {
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
}

.rbt-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #1a73e8, #4285f4);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.rbt-nav-menu a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.rbt-nav-menu a:hover {
    background: #f0f7ff;
    color: #1a73e8;
    transform: translateY(-2px);
}

/* Book Now Button - Mobile optimized */
.rbt-book-now-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rbt-book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.5);
}

.rbt-book-icon {
    font-size: 1.1rem;
}

/* Phone Button - Mobile optimized */
.rbt-phone-button {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: #fff;
    color: #1a73e8;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    border: 2px solid #1a73e8;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.rbt-phone-button:hover {
    background: #1a73e8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.rbt-phone-icon {
    font-size: 1.25rem;
}

.rbt-phone-text {
    display: none;
}

/* Mobile Menu Toggle */
.rbt-mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
    position: relative;
}

.rbt-mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation - Hidden by default on mobile */
@media (max-width: 767px) {
    .rbt-main-navigation {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        z-index: 10000;
        padding: 1rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    /* Force show when has inline style OR active class */
    .rbt-main-navigation[style*="display: block"],
    .rbt-main-navigation[style*="display:block"],
    .rbt-main-navigation.mobile-menu-open {
        display: block !important;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .rbt-nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .rbt-nav-menu li {
        border-bottom: 1px solid #eee;
    }
    
    .rbt-nav-menu li:last-child {
        border-bottom: none;
    }
    
    .rbt-nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        color: #333;
        font-weight: 600;
        font-size: 1rem;
    }
    
    .rbt-nav-menu a::after {
        display: none;
    }
    
    .rbt-nav-menu a:hover {
        background: #f8f9fa;
        color: #1a73e8;
        transform: none;
    }
}


/* ========================================
   HERO SECTION - MOBILE FIRST
   ======================================== */

.rbt-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0 2rem;
    overflow: hidden;
}

.rbt-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 0;
}

.rbt-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.rbt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.rbt-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rbt-hero-text {
    color: #fff;
    text-align: center;
    padding: 0 1rem;
}

.rbt-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.rbt-hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.rbt-hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.rbt-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.rbt-feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

/* ========================================
   BOOKING CARD - MOBILE FIRST
   ======================================== */

.rbt-booking-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.rbt-booking-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.rbt-booking-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.rbt-booking-card-subtitle {
    font-size: 0.9rem;
    color: #666;
}

/* Step Indicator - Mobile optimized */
.rbt-step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 0.5rem;
}

.rbt-step-indicator::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.rbt-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.rbt-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.rbt-step.active .rbt-step-circle {
    background: #1a73e8;
    color: #fff;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.4);
}

.rbt-step.completed .rbt-step-circle {
    background: #34a853;
    color: #fff;
}

.rbt-step-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #999;
    text-align: center;
    line-height: 1.2;
}

.rbt-step.active .rbt-step-label {
    color: #1a73e8;
}

/* Form Styles - Mobile optimized */
.rbt-form-group {
    margin-bottom: 1rem;
}

.rbt-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.rbt-icon {
    font-size: 1rem;
}

.rbt-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: #1a1a1a;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
    font-weight: 500;
    -webkit-appearance: none;
    appearance: none;
}

.rbt-input:focus {
    background: #fff;
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

/* Buttons - Mobile optimized */
.rbt-btn {
    flex: 1;
    padding: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rbt-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.rbt-btn-primary:active {
    transform: scale(0.98);
}

.rbt-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.5);
}

.rbt-btn-secondary {
    color: #666;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
}

.rbt-step-navigation {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* ========================================
   TABLET RESPONSIVE (768px+)
   ======================================== */

@media (min-width: 768px) {
    .rbt-header-container {
        padding: 1rem 2rem;
    }
    
    .rbt-logo {
        height: 45px;
    }
    
    .rbt-site-title {
        font-size: 1.75rem;
    }
    
    .rbt-main-navigation {
        display: flex;
        flex: 1;
        justify-content: center;
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        max-height: none;
    }
    
    .rbt-nav-menu {
        flex-direction: row !important;
        gap: 0.5rem !important;
    }
    
    .rbt-nav-menu li {
        border-bottom: none !important;
    }
    
    .rbt-mobile-menu-toggle {
        display: none;
    }
    
    .rbt-book-now-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .rbt-phone-button {
        padding: 0.875rem 1.5rem;
    }
    
    .rbt-phone-text {
        display: block;
        font-size: 0.95rem;
    }
    
    .rbt-hero-section {
        padding: 6rem 0 3rem;
    }
    
    .rbt-hero-content {
        padding: 2rem;
    }
    
    .rbt-hero-text {
        text-align: left;
        padding: 0;
    }
    
    .rbt-hero-title {
        font-size: 2.5rem;
    }
    
    .rbt-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .rbt-hero-features {
        align-items: flex-start;
    }
    
    .rbt-booking-card {
        padding: 2rem;
        max-width: 500px;
    }
    
    .rbt-booking-card-title {
        font-size: 2rem;
    }
    
    .rbt-step-indicator {
        margin-bottom: 2rem;
    }
    
    .rbt-step-circle {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    
    .rbt-step-label {
        font-size: 0.7rem;
    }
}

/* ========================================
   DESKTOP RESPONSIVE (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    .rbt-hero-content {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
        padding: 4rem 2rem;
    }
    
    .rbt-hero-text {
        flex: 1;
    }
    
    .rbt-hero-title {
        font-size: 3rem;
    }
    
    .rbt-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .rbt-booking-card {
        flex-shrink: 0;
        max-width: 550px;
        padding: 2.5rem;
    }
    
    .rbt-btn-primary:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
    }
    
    .rbt-btn-secondary:hover {
        background: #e9ecef;
        transform: translateY(-1px);
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.rbt-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.rbt-step-content {
    display: none;
}

.rbt-step-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Hide old styles */
.rbt-map-container,
.rbt-map-error {
    display: none !important;
}

/* Hide mobile navigation on desktop */
.rbt-mobile-nav {
    display: none !important;
}

@media (max-width: 767px) {
    .rbt-mobile-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        gap: 1rem;
        align-items: center;
    }
    
    .rbt-mobile-nav-btn {
        flex: 1;
        padding: 0.875rem 1rem;
        background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
        color: #fff;
        border: none;
        border-radius: 10px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .rbt-mobile-price-display {
        flex: 1;
        text-align: right;
    }
    
    .rbt-mobile-price-label {
        display: block;
        font-size: 0.75rem;
        color: #666;
        margin-bottom: 0.25rem;
    }
    
    .rbt-mobile-price-value {
        display: block;
        font-size: 1.25rem;
        font-weight: 800;
        color: #34a853;
    }
}


/* ========================================
   SUBMIT BUTTON - PROMINENT & CLEAR
   ======================================== */

.rbt-submit-btn {
    width: 100% !important;
    padding: 1.5rem 2rem !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #34a853 0%, #2d8e47 100%) !important;
    border: none !important;
    border-radius: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 24px rgba(52, 168, 83, 0.4) !important;
    margin-top: 1.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    display: block !important;
    font-family: 'Poppins', sans-serif !important;
}

.rbt-submit-btn:hover:not(:disabled) {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 12px 32px rgba(52, 168, 83, 0.6) !important;
    background: linear-gradient(135deg, #4aba6a 0%, #34a853 100%) !important;
}

.rbt-submit-btn:active:not(:disabled) {
    transform: translateY(-2px) scale(1.01) !important;
}

.rbt-submit-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background: linear-gradient(135deg, #999 0%, #666 100%) !important;
    transform: none !important;
}

/* ========================================
   PRICE BREAKDOWN - ENHANCED
   ======================================== */

.rbt-price-breakdown {
    margin: 2rem 0 1.5rem !important;
    padding: 2rem !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    border-radius: 20px !important;
    border: 3px solid #e9ecef !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

.rbt-price-row {
    display: flex !important;
    justify-content: space-between !important;
    padding: 1rem 0 !important;
    color: #333 !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    border-bottom: 2px solid #f0f0f0 !important;
}

.rbt-price-row:last-of-type {
    border-bottom: none !important;
}

.rbt-price-row.rbt-price-total {
    margin-top: 1.25rem !important;
    padding-top: 1.25rem !important;
    border-top: 4px solid #4285F4 !important;
    border-bottom: none !important;
    font-size: 2rem !important;
    font-weight: 900 !important;
    color: #1a1a1a !important;
}

.rbt-price-label {
    color: #666 !important;
    font-family: 'Inter', sans-serif !important;
}

.rbt-price-value {
    color: #1a1a1a !important;
    font-weight: 800 !important;
    font-family: 'Poppins', sans-serif !important;
}

.rbt-price-total .rbt-price-value {
    color: #34a853 !important;
    font-size: 2.25rem !important;
}

.rbt-trip-info {
    display: flex !important;
    justify-content: space-around !important;
    margin-top: 1.5rem !important;
    padding-top: 1.5rem !important;
    border-top: 3px dashed #dee2e6 !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #4285F4 !important;
    gap: 1.5rem !important;
}

.rbt-trip-info span {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

/* ========================================
   SUMMARY SECTIONS - ENHANCED
   ======================================== */

.rbt-summary-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    margin-bottom: 1.5rem !important;
    border: 3px solid #e9ecef !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

.rbt-summary-title {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 1rem !important;
    border-bottom: 3px solid #4285F4 !important;
    font-family: 'Poppins', sans-serif !important;
}

.rbt-summary-row {
    display: flex !important;
    justify-content: space-between !important;
    padding: 1rem 0 !important;
    font-size: 1.05rem !important;
    border-bottom: 2px solid #f0f0f0 !important;
}

.rbt-summary-row:last-child {
    border-bottom: none !important;
}

.rbt-summary-label {
    color: #666 !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
}

.rbt-summary-value {
    color: #1a1a1a !important;
    font-weight: 800 !important;
    text-align: right !important;
    max-width: 60% !important;
    word-break: break-word !important;
    font-family: 'Poppins', sans-serif !important;
}

/* ========================================
   NAVIGATION BUTTONS - ENHANCED
   ======================================== */

.rbt-step-navigation {
    display: flex !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
}

.rbt-btn {
    flex: 1 !important;
    padding: 1.25rem 1.75rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    letter-spacing: 0.5px !important;
    font-family: 'Poppins', sans-serif !important;
}

.rbt-btn-secondary {
    color: #666 !important;
    background: #f8f9fa !important;
    border: 3px solid #e9ecef !important;
}

.rbt-btn-secondary:hover {
    background: #e9ecef !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.rbt-btn-primary {
    color: #fff !important;
    background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%) !important;
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4) !important;
}

.rbt-btn-primary:hover:not(:disabled) {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 28px rgba(66, 133, 244, 0.6) !important;
}

.rbt-btn-primary:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background: linear-gradient(135deg, #999 0%, #666 100%) !important;
}
