
        /* ================= SELF DRIVE DETAIL PAGE STYLES ================= */
        
        /* Hero Banner */
        .selfdrive-hero-banner {
            position: relative;
            height: 30vh;
            min-height: 400px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 20px 60px;
            margin-top: -1px;
        }
        
        .selfdrive-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
        }
        
        .selfdrive-hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            width: 100%;
        }
        
        .selfdrive-hero-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 4px 12px rgba(0,0,0,0.8);
            line-height: 1.2;
            font-family: 'Montserrat', sans-serif;
        }
        
        .selfdrive-hero-badge {
            display: inline-block;
            background: rgba(0,157,188,0.9);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            backdrop-filter: blur(5px);
        }
        
        /* Breadcrumb */
        .selfdrive-breadcrumb {
            background: rgba(255, 255, 255, 0.95);
            padding: 18px 0;
            border-bottom: 1px solid rgba(0,0,0,0.08);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .dark-mode .selfdrive-breadcrumb {
            background: rgba(30, 30, 30, 0.95);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .breadcrumb-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .breadcrumb-links {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #666;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        
        .dark-mode .breadcrumb-links {
            color: #aaa;
        }
        
        .breadcrumb-links a {
            color: #009dbc;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 5px 10px;
            border-radius: 6px;
        }
        
        .breadcrumb-links a:hover {
            background: rgba(0,157,188,0.1);
            transform: translateX(3px);
        }
        
        .breadcrumb-divider {
            color: #999;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
        }
        
        .breadcrumb-current {
            color: #333;
            font-weight: 600;
            padding: 5px 10px;
            background: rgba(0,157,188,0.08);
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .dark-mode .breadcrumb-current {
            color: white;
            background: rgba(0,157,188,0.15);
        }
        
        /* Rate Limit Styles */
        .rate-limit-warning {
            background: #fff3cd;
            color: #856404;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            border: 1px solid #ffeeba;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: slideIn 0.3s ease;
        }
        
        .rate-limit-warning i {
            font-size: 1.5rem;
            color: #856404;
        }
        
        .rate-limit-info {
            background: #e7f3ff;
            color: #004085;
            padding: 10px 15px;
            border-radius: 8px;
            margin-top: 10px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid #b8daff;
        }
        
        .dark-mode .rate-limit-info {
            background: #1e3a5f;
            color: #b8daff;
            border-color: #2e4a7a;
        }
        
        .honeypot-field {
            position: absolute;
            left: -9999px;
            top: -9999px;
            opacity: 0;
            pointer-events: none;
            height: 0;
            width: 0;
            overflow: hidden;
        }
        
        @keyframes slideIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Number input styling */
        input[type=number] {
            -moz-appearance: textfield;
            appearance: textfield;
        }
        
        input[type=number]::-webkit-inner-spin-button, 
        input[type=number]::-webkit-outer-spin-button { 
            opacity: 1;
            height: 24px;
            margin-left: 5px;
            cursor: pointer;
        }
        
        /* Main Content Layout */
        .selfdrive-details-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 50px 20px;
        }
        
        .selfdrive-details-layout {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 40px;
            align-items: start;
        }
        
        /* Left Column */
        .selfdrive-details-left {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        /* Image Slider */
        .selfdrive-image-slider {
            position: relative;
            width: 100%;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .slider-container {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slider-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
            background-size: cover;
            background-position: center;
        }
        
        .slider-slide.active {
            opacity: 1;
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            color: #333;
            border: none;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            font-size: 1.4rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .slider-nav:hover {
            background: #009dbc;
            color: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0,157,188,0.4);
        }
        
        .slider-prev {
            left: 25px;
        }
        
        .slider-next {
            right: 25px;
        }
        
        .slider-dots {
            position: absolute;
            bottom: 25px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255,255,255,0.6);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .slider-dot:hover {
            background: rgba(255,255,255,0.9);
            transform: scale(1.2);
        }
        
        .slider-dot.active {
            background: #009dbc;
            transform: scale(1.3);
            border-color: white;
            box-shadow: 0 0 10px rgba(0,157,188,0.8);
        }
        
        /* Tour Info Section */
        .selfdrive-info-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .dark-mode .selfdrive-info-section {
            background: #2a2a2a;
            border-color: rgba(255,255,255,0.1);
        }
        
        .selfdrive-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(0,157,188,0.2);
        }
        
        .selfdrive-title-wrapper {
            flex: 1;
        }
        
        .selfdrive-main-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .dark-mode .selfdrive-main-title {
            color: white;
        }
        
        .selfdrive-main-title i {
            color: #009dbc;
            font-size: 2.2rem;
        }
        
        .selfdrive-meta-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(0,157,188,0.1), rgba(1,85,102,0.1));
            color: #009dbc;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            border: 1px solid rgba(0,157,188,0.2);
        }
        
        .selfdrive-price-display {
            text-align: right;
            min-width: 180px;
        }
        
        .selfdrive-starting-price {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .dark-mode .selfdrive-starting-price {
            color: #aaa;
        }
        
        .selfdrive-price-amount {
            font-size: 2.8rem;
            font-weight: 800;
            color: #009dbc;
            line-height: 1;
        }
        
        .selfdrive-price-note {
            font-size: 0.9rem;
            color: #888;
            margin-top: 5px;
        }
        
        /* Description Box */
        .selfdrive-description-box {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
            border-left: 4px solid #009dbc;
        }
        
        .dark-mode .selfdrive-description-box {
            background: rgba(0,157,188,0.05);
        }
        
        .selfdrive-description-title {
            font-size: 1.4rem;
            color: #1a1a1a;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .dark-mode .selfdrive-description-title {
            color: white;
        }
        
        .selfdrive-description-title i {
            color: #009dbc;
        }
        
        .selfdrive-description-text {
            font-size: 1.15rem;
            line-height: 1.9;
            color: #555;
            margin: 0;
        }
        
        .dark-mode .selfdrive-description-text {
            color: #ddd;
        }
        
        /* Key Features */
        .selfdrive-key-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .selfdrive-key-feature {
            background: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(0,157,188,0.1);
        }
        
        .selfdrive-key-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,157,188,0.15);
            border-color: #009dbc;
        }
        
        .selfdrive-key-feature i {
            font-size: 2.5rem;
            color: #009dbc;
            margin-bottom: 15px;
        }
        
        .selfdrive-key-feature h4 {
            font-size: 1.2rem;
            color: #1a1a1a;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .selfdrive-key-feature p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.5;
        }
        
        .dark-mode .selfdrive-key-feature {
            background: #333;
            border-color: rgba(255,255,255,0.1);
        }
        
        .dark-mode .selfdrive-key-feature h4 {
            color: white;
        }
        
        .dark-mode .selfdrive-key-feature p {
            color: #ccc;
        }
        
        /* Boat Specifications */
        .selfdrive-specs-section {
            margin-top: 40px;
        }
        
        .selfdrive-specs-title {
            font-size: 1.8rem;
            color: #1a1a1a;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .dark-mode .selfdrive-specs-title {
            color: white;
        }
        
        .selfdrive-specs-title i {
            color: #009dbc;
        }
        
        .selfdrive-specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .selfdrive-spec-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 12px;
            border-left: 3px solid #009dbc;
        }
        
        .dark-mode .selfdrive-spec-item {
            background: rgba(255,255,255,0.05);
        }
        
        .selfdrive-spec-item i {
            font-size: 1.3rem;
            color: #009dbc;
            width: 30px;
            text-align: center;
        }
        
        .selfdrive-spec-item span {
            font-size: 1rem;
            color: #555;
            font-weight: 500;
        }
        
        .dark-mode .selfdrive-spec-item span {
            color: #ddd;
        }
        
        /* Right Column - Booking Card */
        .selfdrive-booking-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            border: 1px solid rgba(0,0,0,0.05);
            position: sticky;
            top: 30px;
        }
        
        .dark-mode .selfdrive-booking-card {
            background: #2a2a2a;
            border-color: rgba(255,255,255,0.1);
        }
        
        .selfdrive-booking-title {
            font-size: 2rem;
            color: #1a1a1a;
            margin-bottom: 30px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .selfdrive-booking-title i {
            color: #009dbc;
        }
        
        .dark-mode .selfdrive-booking-title {
            color: white;
        }
        
        /* Price Options */
        .selfdrive-price-options {
            margin-bottom: 30px;
        }
        
        .selfdrive-price-option {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .selfdrive-price-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #009dbc, #015566);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        
        .dark-mode .selfdrive-price-option {
            background: rgba(255,255,255,0.05);
        }
        
        .selfdrive-price-option:hover {
            border-color: #009dbc;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,157,188,0.15);
        }
        
        .selfdrive-price-option:hover::before {
            transform: scaleY(1);
        }
        
        .selfdrive-price-option.selected {
            border-color: #009dbc;
            background: linear-gradient(135deg, rgba(0,157,188,0.1), rgba(1,85,102,0.1));
        }
        
        .selfdrive-price-option.selected::before {
            transform: scaleY(1);
        }
        
        .selfdrive-price-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }
        
        .selfdrive-price-label {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1a1a;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .selfdrive-price-label i {
            color: #009dbc;
        }
        
        .dark-mode .selfdrive-price-label {
            color: white;
        }
        
        .selfdrive-price-amount {
            font-size: 2.2rem;
            font-weight: 800;
            color: #009dbc;
            display: flex;
            align-items: baseline;
        }
        
        .selfdrive-price-amount span {
            font-size: 1.1rem;
            color: #666;
            margin-left: 5px;
            font-weight: 600;
        }
        
        .dark-mode .selfdrive-price-amount span {
            color: #aaa;
        }
        
        .selfdrive-price-note {
            font-size: 1rem;
            color: #666;
            padding: 12px 15px;
            background: rgba(0,157,188,0.05);
            border-radius: 8px;
            margin-top: 10px;
            border-left: 3px solid #009dbc;
        }
        
        .dark-mode .selfdrive-price-note {
            color: #aaa;
            background: rgba(0,157,188,0.1);
        }
        
        /* Booking Form */
        .selfdrive-booking-form {
            margin-top: 30px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #1a1a1a;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .form-label i {
            color: #009dbc;
            width: 20px;
        }
        
        .dark-mode .form-label {
            color: white;
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
            color: #333;
            font-family: 'Poppins', sans-serif;
        }
        
        .dark-mode .form-control {
            background: rgba(255,255,255,0.05);
            border-color: #444;
            color: white;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #009dbc;
            box-shadow: 0 0 0 3px rgba(0,157,188,0.1);
        }
        
        .input-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .btn-book-now {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #009dbc, #015566);
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 1.3rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 0.5px;
        }
        
        .btn-book-now::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }
        
        .btn-book-now:hover::before {
            left: 100%;
        }
        
        .btn-book-now:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,157,188,0.3);
            letter-spacing: 0.8px;
        }
        
        .btn-book-now:disabled {
            background: linear-gradient(135deg, #cccccc, #aaaaaa);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
            opacity: 0.6;
        }
        
        .secure-note {
            text-align: center;
            margin-top: 15px;
            font-size: 0.9rem;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            line-height: 1.5;
        }
        
        .dark-mode .secure-note {
            color: #aaa;
        }
        
        /* What's Included */
        .selfdrive-included-section {
            margin-top: 40px;
            padding: 35px;
            background: linear-gradient(135deg, rgba(0,157,188,0.05), rgba(1,85,102,0.05));
            border-radius: 15px;
            border: 1px solid rgba(0,157,188,0.1);
        }
        
        .dark-mode .selfdrive-included-section {
            background: linear-gradient(135deg, rgba(0,157,188,0.1), rgba(1,85,102,0.1));
            border-color: rgba(0,157,188,0.2);
        }
        
        .selfdrive-included-title {
            font-size: 1.8rem;
            color: #009dbc;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .selfdrive-included-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .selfdrive-included-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(255,255,255,0.8);
            border-radius: 10px;
            border-left: 3px solid #4CAF50;
            transition: all 0.3s ease;
        }
        
        .dark-mode .selfdrive-included-item {
            background: rgba(255,255,255,0.05);
        }
        
        .selfdrive-included-item:hover {
            transform: translateX(5px);
            background: rgba(255,255,255,0.9);
        }
        
        .dark-mode .selfdrive-included-item:hover {
            background: rgba(255,255,255,0.1);
        }
        
        .selfdrive-included-item i {
            color: #4CAF50;
            font-size: 1.3rem;
            width: 30px;
            flex-shrink: 0;
        }
        
        .selfdrive-included-item span {
            color: #555;
            font-size: 1rem;
            line-height: 1.5;
        }
        
        .dark-mode .selfdrive-included-item span {
            color: #ddd;
        }
        
        /* Requirements Section */
        .selfdrive-requirements {
            margin-top: 40px;
            padding: 30px;
            background: #fff3cd;
            border-radius: 15px;
            border: 1px solid #ffeeba;
        }
        
        .dark-mode .selfdrive-requirements {
            background: rgba(255,193,7,0.1);
            border-color: rgba(255,193,7,0.2);
        }
        
        .selfdrive-requirements-title {
            font-size: 1.5rem;
            color: #856404;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .dark-mode .selfdrive-requirements-title {
            color: #ffc107;
        }
        
        .selfdrive-requirements-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .selfdrive-requirements-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px dashed rgba(133,116,4,0.2);
            color: #856404;
        }
        
        .dark-mode .selfdrive-requirements-list li {
            color: #ffc107;
            border-bottom-color: rgba(255,193,7,0.2);
        }
        
        .selfdrive-requirements-list li:last-child {
            border-bottom: none;
        }
        
        .selfdrive-requirements-list li i {
            color: #856404;
            font-size: 1.1rem;
        }
        
        .dark-mode .selfdrive-requirements-list li i {
            color: #ffc107;
        }
        
        /* Success Popup Styles */
        .success-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999999;
            animation: fadeIn 0.3s ease;
            padding: 20px;
        }
        
        .success-popup {
            background: white;
            border-radius: 30px;
            max-width: 550px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease;
        }
        
        .dark-mode .success-popup {
            background: #2a2a2a;
            color: white;
        }
        
        .popup-header {
            background: linear-gradient(135deg, #009dbc, #015566);
            color: white;
            padding: 40px 30px 30px;
            text-align: center;
            border-radius: 30px 30px 0 0;
            position: relative;
        }
        
        .success-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 3rem;
            animation: bounce 1s ease infinite;
        }
        
        .popup-header h2 {
            font-size: 2rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .thank-you {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .popup-body {
            padding: 30px;
        }
        
        .booking-reference {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
            border: 2px dashed #009dbc;
        }
        
        .dark-mode .booking-reference {
            background: #333;
            border-color: #009dbc;
        }
        
        .ref-label {
            display: block;
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .ref-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: #009dbc;
            font-family: monospace;
            letter-spacing: 2px;
        }
        
        .booking-details h3,
        .customer-info h3,
        .next-steps h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #333;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .dark-mode .booking-details h3,
        .dark-mode .customer-info h3,
        .dark-mode .next-steps h3 {
            color: white;
        }
        
        .booking-details h3:before,
        .customer-info h3:before,
        .next-steps h3:before {
            content: '';
            width: 4px;
            height: 24px;
            background: #009dbc;
            border-radius: 2px;
        }
        
        .detail-row {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
        
        .dark-mode .detail-row {
            border-bottom-color: #444;
        }
        
        .detail-row:last-child {
            border-bottom: none;
        }
        
        .detail-row.highlight {
            background: rgba(0,157,188,0.1);
            margin: 15px -15px;
            padding: 15px;
            border-radius: 10px;
        }
        
        .detail-icon {
            width: 40px;
            height: 40px;
            background: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #009dbc;
            font-size: 1.2rem;
        }
        
        .dark-mode .detail-icon {
            background: #444;
        }
        
        .detail-content {
            flex: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .detail-label {
            color: #666;
            font-size: 0.95rem;
        }
        
        .dark-mode .detail-label {
            color: #aaa;
        }
        
        .detail-value {
            font-weight: 600;
            color: #333;
        }
        
        .dark-mode .detail-value {
            color: white;
        }
        
        .detail-value.price {
            color: #009dbc;
            font-size: 1.3rem;
            font-weight: 800;
        }
        
        .customer-info {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 20px;
            margin: 20px 0;
        }
        
        .dark-mode .customer-info {
            background: #333;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid #dee2e6;
        }
        
        .dark-mode .info-item {
            border-bottom-color: #444;
        }
        
        .info-item:last-child {
            border-bottom: none;
        }
        
        .info-item i {
            width: 20px;
            color: #009dbc;
            font-size: 1.1rem;
        }
        
        .info-item span {
            color: #555;
        }
        
        .dark-mode .info-item span {
            color: #ddd;
        }
        
        .next-steps {
            background: #e1f5fe;
            border-radius: 15px;
            padding: 20px;
            margin-top: 20px;
        }
        
        .dark-mode .next-steps {
            background: #0a2a3a;
        }
        
        .next-steps ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .next-steps li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            color: #015566;
        }
        
        .dark-mode .next-steps li {
            color: #81d4fa;
        }
        
        .next-steps li i {
            width: 20px;
            font-size: 1rem;
        }
        
        .popup-footer {
            padding: 30px;
            border-top: 1px solid #eee;
            text-align: center;
        }
        
        .dark-mode .popup-footer {
            border-top-color: #444;
        }
        
        .btn-close-popup {
            background: linear-gradient(135deg, #009dbc, #015566);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 20px rgba(0,157,188,0.3);
        }
        
        .btn-close-popup:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0,157,188,0.4);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .selfdrive-details-container {
                max-width: 95%;
            }
            
            .selfdrive-hero-title {
                font-size: 3.5rem;
            }
            
            .selfdrive-key-features {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .selfdrive-details-layout {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .selfdrive-booking-card {
                position: static;
                max-width: 600px;
                margin: 0 auto;
            }
            
            .selfdrive-hero-title {
                font-size: 3rem;
            }
            
            .selfdrive-image-slider {
                height: 400px;
            }
            
            .selfdrive-header {
                flex-direction: column;
                gap: 20px;
            }
            
            .selfdrive-price-display {
                text-align: left;
                width: 100%;
            }
            
            .selfdrive-key-features {
                grid-template-columns: 1fr;
            }
            
            .selfdrive-specs-grid {
                grid-template-columns: 1fr;
            }
            
            .success-popup {
                max-width: 95%;
            }
        }
        
        @media (max-width: 768px) {
            .selfdrive-hero-banner {
                height: 25vh;
                padding-bottom: 40px;
            }
            
            .selfdrive-hero-title {
                font-size: 2.5rem;
            }
            
            .selfdrive-main-title {
                font-size: 2rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .selfdrive-image-slider {
                height: 350px;
            }
            
            .selfdrive-info-section {
                padding: 30px;
            }
            
            .input-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .slider-nav {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .popup-header h2 {
                font-size: 1.5rem;
            }
            
            .ref-number {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 576px) {
            .selfdrive-hero-title {
                font-size: 2rem;
            }
            
            .selfdrive-main-title {
                font-size: 1.8rem;
            }
            
            .selfdrive-image-slider {
                height: 300px;
            }
            
            .selfdrive-price-amount {
                font-size: 2.2rem;
            }
            
            .btn-book-now {
                padding: 16px;
                font-size: 1.1rem;
            }
            
            .slider-nav {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
   