/* banner */
.booking-area-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: 50px;
}

/* --- Vehicle Tabs (Floating Squares) --- */
.vehicle-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
    top: -50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    z-index: 10;
}

.vehicle-tabs .nav-link {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    width: 100px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.vehicle-tabs .nav-link i {
    font-size: 30px;
    margin-bottom: 5px;
    color: #333;
}

.vehicle-tabs .nav-link.active {
    border: 2px solid #ff5e14;
    padding: 0px !important;
    color: #000;
    background: #fff;
}

.vehicle-tabs .nav-link.active i {
    color: #ff5e14;
}

/* --- Trip Type Toggle (One Way / Round Trip) --- */
.trip-toggle-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    padding-top: 30px;
}

.trip-btn {
    border: 1px solid #ddd;
    background: #fff;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

.trip-btn.active {
    background: #ff5e14;
    color: #fff;
    border-color: #ff5e14;
}

/* --- Form Fields with Icons --- */
.input-group-custom {
    position: relative;
    margin-bottom: 20px;
}

.input-group-custom label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #333;
}

.icon-wrap {
    position: relative;
}

.icon-wrap i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    z-index: 5;
}

.icon-wrap .form-control {
    padding-left: 40px;
    height: 50px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
}

.icon-wrap .form-control:focus {
    border-color: #ff5e14;
    box-shadow: none;
}

/* --- Theme Button Override --- */
/* .theme-btn {
    background: #ff5e14;
    color: #fff;
    width: 100%;
    padding: 15px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    cursor: pointer;
} */

/* .theme-btn:hover {
    background: #e04b0b;
    color: #fff;
} */

.d-none {
    display: none;
}

/* Visual cue for admin that text is editable */
.editable-content {
    transition: 0.3s;
    border: 1px dashed transparent;
}

            /* Visual cue for admin that content is editable */
.editable-content[contenteditable="true"]:hover {
    outline: 2px dashed #ffc107;
    cursor: text;
}

/* When admin hovers, show dashed border */
.admin-mode .editable-content:hover,
.admin-mode .editable-content:focus {
    border: 1px dashed #ff5e14;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    cursor: text;
    padding: 2px;
    border-radius: 4px;
}

/* --- ADMIN EDIT BUTTONS --- */

/* 1. Button for Main Background */
.admin-bg-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    /* Right side */
    background: rgba(255, 94, 20, 0.9);
    /* color: #fff; */
    border: 2px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.admin-bg-btn:hover {
    transform: scale(1.1);
    background: #ff5e14;
    box-shadow: 0 0 15px #ff5e14;
}

/* 2. Button for Slider Images */
/* Ensure container is relative */
.img-slider {
    position: relative;
}

.slider-edit-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    /* Left side to distinguish from BG button */
    z-index: 50;
    /* Above slider images */

    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.slider-edit-btn:hover {
    background: #ff5e14;
    transform: scale(1.1);
}

/* Ensure containers are relative so button sits inside them */
.hero-section,
.img-div {
    position: relative;
}

/* .booking-form label,
.booking-form .car-select-item,
.booking-form .nav-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
} */



/* car section */
.editable-img-wrapper {
    position: relative;
    display: inline-block;
    /* Fits content */
    width: 100%;
}

/* Specific Edit Button for Car Cards */
.car-edit-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 94, 20, 0.9);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    /* Hidden by default */
}

/* Show button on hover */
.car-book:hover .car-edit-btn {
    opacity: 1;
}

.car-edit-btn:hover {
    transform: scale(1.1);
    background: #ff5e14;
}


/* Steps Section  */
/* Wrapper to keep the button inside the image area */
.editable-img-wrapper {
    position: relative;
    display: inline-block; /* Important for centering in "stap" class */
}

/* The Edit Button Style */
.step-edit-btn {
    position: absolute;
    bottom: 0;
    right: -10px; /* Slightly offset for small icons */
    background: rgba(255, 94, 20, 0.9);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 35px; /* Slightly smaller for step icons */
    height: 35px;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0; 
}

/* Show button on hover */
.stap:hover .step-edit-btn {
    opacity: 1;
}

.step-edit-btn:hover {
    transform: scale(1.1);
    background: #ff5e14;
}

/* promo section */
/* Wrapper to hold the image and button */
.editable-img-wrapper {
    position: relative;
    display: block; /* Fits figure */
    width: 100%;
}

/* Edit Button Styling */
.section-edit-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 94, 20, 0.9);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0;
}

/* Show on hover */
.car-here:hover .section-edit-btn,
.editable-img-wrapper:hover .section-edit-btn {
    opacity: 1;
}

.section-edit-btn:hover {
    transform: scale(1.1);
    background: #ff5e14;
}
/* Style for the number edit button */
.counter-edit-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background: #ff5e14;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 100;
    transition: 0.3s;
}

.counter-edit-btn:hover {
    transform: scale(1.2);
    background: #333;
}

/* footer */

/* SEO Link Section Styling */
.footer-seo-links {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.seo-heading {
    color: var(--theme-color); /* Your new Orange/Gold color */
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seo-subheading {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--theme-color);
    display: inline-block;
    padding-bottom: 5px;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-list li {
    margin-bottom: 8px;
    transition: 0.3s;
}

.seo-list li a {
    color: #b0b0b0; /* Light grey text */
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}

/* Hover Effect: Text turns White, Icon appears */
.seo-list li a:hover {
    color: var(--theme-color);
    padding-left: 5px;
}

.seo-list li a::before {
    content: "»";
    margin-right: 5px;
    color: var(--theme-color);
    opacity: 0;
    transition: 0.3s;
}

.seo-list li a:hover::before {
    opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .seo-subheading {
        margin-top: 15px;
    }
}

