
/* ================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* ================================================== */


/* import fonts icon */


/* ================================================== */

@import url("../fonts/font-awesome/css/font-awesome.css");
@import url("../fonts/elegant_font/HTML_CSS/style.css");
@import url("../fonts/et-line-font/style.css");
@import url("../fonts/icofont/icofont.min.css");

* {
    --title-font: "Outfit", Helvetica, Arial, sans-serif;
    --body-font: "Inter", Helvetica, Arial, sans-serif;
    --border-default:  solid 1px rgba(30, 30, 30, 1);
    --bg-color-even: #E8E8E8;
    --bg-color-odd: #F4F4F4;
    --bg-color-dark: #121212;
    --body-font-color: #4D5B7C;
    --dark-body-font-color: rgba(255, 255, 255, .75);
    --gray-color:#acacac;

}
 
/* ================================================== */

html {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    background: #ffffff;
}

body {    
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--body-font-color);
    padding: 0;
    line-height: 1.7em;
    word-spacing: 0px;
    letter-spacing: -0.2px;
}

.booking-container .card{border:1px solid #e5e7eb;border-radius:14px;background:#fff;box-shadow:0 6px 20px rgba(16,24,40,.06);padding:16px}
    
    .payment-option{display:flex;align-items:center;justify-content:space-between;padding:5px 15px;border:1px solid #e5e7eb;border-radius:14px;margin-bottom:12px;background:#fff;transition:all .2s}
    .payment-option:hover{box-shadow:0 8px 24px rgba(16,24,40,.12);transform:translateY(-1px)}
    .payment-option.active{border-color:#0d6efd;box-shadow:0 10px 28px rgba(13,110,253,.18)}
    .addon-option{border:1px dashed #e5e7eb;border-radius:14px;padding:12px 14px;margin-top:12px;background:#fafafa;transition:all .2s}
    .addon-option.active{border-style:solid;border-color:#0d6efd;background:#f0f6ff;box-shadow:0 10px 28px rgba(13,110,253,.14)}
    #guide_language_select{width:100%;padding:10px 12px;border:1px solid #d0d5dd;border-radius:10px;margin-top:8px;background:#fff}
    #guide_price_display{display:inline-block;background:#0d6efd;color:#fff;border-radius:999px;padding:4px 10px;font-weight:600;margin-left:auto}
    .fare .total{display:flex;align-items:center;justify-content:space-between;padding:14px 16px;border-radius:14px;background:#ffffea;color:#fff;font-weight:600}
    .proceed{width:100%;padding:14px 16px;border-radius:14px;background:#0d6efd;color:#fff;font-weight:700;border:none;cursor:pointer;transition:transform .1s,box-shadow .2s}
    .proceed:hover{box-shadow:0 10px 30px rgba(13,110,253,.28);transform:translateY(-1px)}
    .btn-remove{background: #ba0000;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 0px 10px;
    font-weight: 600;
    font-size: 10px;
    cursor: pointer;}
    .btn-remove:hover{background:#dc2626}

.booking-container {
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 20px;
    }

    .card {
        background: #fff;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        margin-bottom: 20px;
		font-family: "Outfit", Helvetica, Arial, sans-serif;
    }

   

    .header {
        background: #00b74a;
    color: #fff;
    padding: 5px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    }


   .booking_subhead{ 
        padding: 0px 0px;
        border-radius: 10px;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
	    text-align: center;
    }

    .booking-info p {
        margin: 2px 0;
        color: #555;
    }

    .form-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    input {
        width: 100%;
        padding: 9px 12px;
        border-radius: 8px;
        border: 1px solid #ddd;
        background: #f9fafc;
    }

    .full-width {
        grid-column: 1 / -1;
    }

    .payment-option {
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 15px;
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .payment-option.active {
        border: 2px solid #00b74a;
        background: #eefcf4;
    }

    .payment-option span {
        font-weight: bold;
    }

    .addon-option {
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 12px 15px;
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        background: #fff;
    }
    .addon-option.active {
        border: 2px solid #00b74a;
        background: #eefcf4;
    }
    .addon-option label {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        cursor: pointer;
        margin: 0;
    }
    .addon-option input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }
    .addon-option .check {
        width: 22px;
        height: 22px;
        border: 2px solid #ddd;
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #fff;
        background: #fff;
    }
    .addon-option.active .check {
        border-color: #00b74a;
        background: #00b74a;
        color: #fff;
    }
    .addon-option .text {
        flex: 1;
    }
    .addon-option .price {
        margin-left: auto;
        font-weight: 600;
    }

    .coupon {
        display: flex;
        gap: 10px;
        margin: 15px 0;
    }

    .coupon input {
        flex: 1;
    }

    .coupon button {
        padding: 12px 20px;
        border-radius: 8px;
        border: none;
        background: #00b74a;
        color: #fff;
        font-weight: bold;
        cursor: pointer;
    }

    .proceed {
        width: 100%;
        padding: 15px;
        background: #f36b21;
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
    }

    .fare {
        margin-top: 24px;
        margin-bottom: 20px;
        font-size: 14px;
    }

    .fare div {
        display: flex;
        justify-content: space-between;
        margin: 8px 0;
    }

    .fare .total {
        font-weight: 600;
        font-size: 16px;
        background: #eefcf4;
        border: 1px solid #00b74a;
        color: #2f6f3e;
        border-radius: 12px;
        padding: 14px 16px;
        box-shadow: 0 6px 12px rgba(0,0,0,0.06);
    }
    .fare .total span:first-child {
        color: #2f6f3e;
        letter-spacing: 0.2px;
    }
    .fare .total span:last-child,
    #display_total {
        color: #00b74a;
        font-size: 18px;
        font-weight: 700;
    }

    .addon {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: 1px solid #ddd;
        padding: 15px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .addon span {
        font-weight: bold;
        color: #f36b21;
    }


   .confirm-container{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
   .confirm-card{border-radius:12px;padding:24px;background:#fff;box-shadow:0 10px 20px rgba(0,0,0,0.08)}
   .confirm-header{display:flex;align-items:center;gap:12px;margin-bottom:16px}
   .confirm-header .icon{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#28a745;color:#fff;font-size:20px}
   .summary-row{display:flex;justify-content:space-between;margin:8px 0;padding-bottom:8px;border-bottom:1px dashed #eee}
   .summary-row:last-child{border-bottom:none}
   .btn-row{display:flex;gap:12px}
   .badge-soft{display:inline-block;background:#f5f5f5;border-radius:999px;padding:6px 12px;margin-top:8px}

 
   .pageheadings{ font-size: 26px;
    margin-bottom: 20px !important;
    letter-spacing: -.5px !important;
    margin-top: 0px !important; }


    @media(max-width:992px){.confirm-container{grid-template-columns:1fr}}

    @media(max-width: 900px) {
        .booking-container {
            grid-template-columns: 1fr;
        }
	   }

@media(max-width: 480px) {
      
   .pageheadings {
    font-size: 20px;
    margin-bottom: 2px !important;
    letter-spacing: -.5px !important;
    margin-top: 0px !important;
    }
	
	.header {
    background: #00b74a;
    color: #fff;
    padding: 4px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
   }
	
	.header h3 { 
    font-size:18px;
   }
	
	#section-cars {
        margin-top: -15px;
    }
	
	.booking-info p {
    margin: 2px 0;
    color: #555;
    font-size: 13px;
}
	
  }

