

/* =========================
   TAJ TOURS – PREMIUM BOOKING FORM
========================= */
/* =========================
   HERO SECTION PREMIUM STYLE
========================= */

.hero-single {
    background-size: cover !important;
    background-position: center;
    position: relative;
    padding: 120px 0;
}

.hero-single::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.55));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* Sub Title */
.hero-sub-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #f8f9fa;
    margin-bottom: 15px;
}

/* Highlight Brand Name */
.hero-sub-title span {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Main Title */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Highlight word inside H1 */
.hero-title span {
    color: #ffc107;
    font-weight: 800;
}

/* Paragraph */
.hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #e0e0e0;
    max-width: 750px;
    margin: 15px auto 0;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-sub-title {
        font-size: 16px;
    }
}

.tt-booking-wrapper {
    background: linear-gradient(135deg, #eef2f7, #f9fbfd);
    padding: 80px 15px;
}

/* Glassmorphism Card */
.tt-booking-container {
    max-width: 520px;
    margin: auto;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 18px;
    padding: 40px 35px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.4);
    transition: 0.4s ease;
}

.tt-booking-container:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

/* Title */
.tt-booking-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

/* Label */
.tt-booking-form label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    display: block;
}

/* Input Fields */
.tt-form-row {
    margin-bottom: 20px;
}

.tt-form-row input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 15px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Modern focus effect */
.tt-form-row input:focus {
    border-color: #1e88e5;
    outline: none;
    box-shadow: 0 0 0 4px rgba(30,136,229,0.15);
    transform: translateY(-2px);
}

/* Two column layout */
.tt-two-col {
    display: flex;
    gap: 15px;
}

.tt-two-col > div {
    width: 50%;
}

/* Submit Row */
.tt-submit-row {
    margin-top: 30px;
}

/* Gradient Animated Button */
.tt-book-btn {
    width: 100%;
    background: linear-gradient(135deg, #1e88e5, #1565c0, #0d47a1);
    background-size: 200% 200%;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(21,101,192,0.3);
}

.tt-book-btn:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(21,101,192,0.4);
}

/* Button Click Effect */
.tt-book-btn:active {
    transform: scale(0.98);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .tt-two-col {
        flex-direction: column;
    }
    .tt-two-col > div {
        width: 100%;
    }

    .tt-booking-container {
        padding: 30px 20px;
    }
}
/* Taxi Card Design */
.taxi-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.taxi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.taxi-img {
    position: relative;
}

.taxi-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.taxi-type {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #ffc107;
    color: #000;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}

.taxi-body {
    padding: 20px;
    text-align: center;
}

.taxi-body h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.taxi-price {
    font-size: 26px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 18px;
}

.taxi-price small {
    font-size: 14px;
    color: #777;
}

/* New Button Color */
.book-btn {
    display: inline-block;
    padding: 10px 26px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background: linear-gradient(135deg, #218838, #1aa179);
    color: #fff;
}
/* ===== SERVICE SECTION ===== */

.service-area {
    background: #f4f8fc;
}

.service-tag {
    color: #0d6efd;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-title {
    font-weight: 700;
    margin-top: 10px;
}

.service-subtitle {
    color: #666;
    margin-top: 10px;
}

.service-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0d6efd, #20c997);
    border-radius: 3px;
    margin: 20px auto 0;
}

/* ===== TRIP CARD ===== */

.trip-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.1);
    transition: 0.3s;
    margin: 10px;
}

.trip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* Image */
.trip-image {
    position: relative;
}

.trip-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* Overlay */
.trip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,110,253,0.85), rgba(32,201,151,0.85));
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: 0.3s;
}

.trip-image:hover .trip-overlay {
    opacity: 1;
}

/* Buttons */
.trip-btn {
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.trip-btn.call {
    background: #ffffff;
    color: #0d6efd;
}

.trip-btn.book {
    background: #ffc107;
    color: #000;
}

.trip-btn:hover {
    transform: scale(1.05);
}

/* Content */
.trip-content {
    padding: 20px;
    text-align: center;
}

.trip-content h5 {
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 10px;
}

.trip-content p {
    font-size: 14px;
    color: #666;
    min-height: 55px;
}

/* Distance */
.trip-distance {
    display: inline-block;
    margin-top: 12px;
    background: linear-gradient(135deg, #20c997, #0dcaf0);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}
/* ===== CLEAN PROFESSIONAL DESIGN ===== */

.clean-title {
    font-weight: 700;
    color: #1f2937; /* dark gray */
}

.clean-subtitle {
    color: #6b7280; /* soft gray */
    max-width: 750px;
    margin: 0 auto;
    font-size: 15px;
}

/* Section Backgrounds */
.why-clean {
    background: #ffffff;
}

.service-clean {
    background: #f9fafb;
}

/* Cards */
.clean-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    height: 100%;
}

.clean-card i {
    font-size: 28px;
    margin-bottom: 12px;
}

.clean-card h6 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.clean-card p {
    font-size: 14px;
    color: #6b7280;
}

/* Simple Highlight Boxes */
.clean-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
}

.clean-box i {
    font-size: 26px;
    color: #2563eb;
    margin-bottom: 10px;
}

.clean-box h6 {
    font-weight: 600;
    color: #111827;
}
/* ===== BOOKING SECTION ===== */

.tt-booking-wrapper {
    background: #f9fafb;
    padding: 60px 15px;
}

.tt-booking-container {
    max-width: 1100px;
    margin: auto;
}

.tt-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* ===== LEFT IMAGE CARD ===== */

.tt-image-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.tt-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tt-image-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.1)
    );
    color: #fff;
}

.tt-image-overlay h3 {
    font-weight: 700;
    margin-bottom: 6px;
}

.tt-image-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* ===== FORM CARD ===== */

.tt-form-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.tt-booking-title {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    text-align: center;
}

/* Form */
.tt-form-row {
    margin-bottom: 18px;
}

.tt-form-row label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}

.tt-form-row input {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

.tt-form-row input:focus {
    outline: none;
    border-color: #2563eb;
}

/* Two column fields */
.tt-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Button */
.tt-submit-row {
    margin-top: 25px;
}

.tt-book-btn {
    width: 100%;
    padding: 13px;
    border-radius: 30px;
    background: #2563eb;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

.tt-book-btn:hover {
    background: #1e40af;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .tt-two-column {
        grid-template-columns: 1fr;
    }

    .tt-image-card {
        height: 260px;
    }
}

.tt-form-row select {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    background: #fff;
}

.tt-form-row select:focus {
    outline: none;
    border-color: #2563eb;
}
.autocomplete-box{
  border:1px solid #ddd;
  background:#fff;
  position:absolute;
  width:100%;
  z-index:999;
}
.autocomplete-box div{
  padding:8px;
  cursor:pointer;
}
.autocomplete-box div:hover{
  background:#f1f1f1;
}
/* Modal Background */
.tt-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  justify-content:center;
  align-items:center;
  z-index:9999;
  animation: fadeIn .3s ease;
}

/* Modal Box */
.tt-modal-content{
  background:#fff;
  width:420px;
  max-width:95%;
  border-radius:12px;
  box-shadow:0 15px 40px rgba(0,0,0,0.3);
  overflow:hidden;
  animation: slideUp .3s ease;
}

/* Header */
.tt-modal-header{
  padding:15px 20px;
  background:linear-gradient(45deg,#0d6efd,#0b5ed7);
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.tt-modal-header h3{
  margin:0;
  font-size:18px;
}

.tt-close{
  cursor:pointer;
  font-size:20px;
}

/* Body */
.tt-modal-body{
  padding:20px;
}

.tt-preview-box{
  background:#f8f9fa;
  padding:15px;
  border-radius:8px;
  margin-bottom:15px;
}

.tt-preview-box p{
  margin:5px 0;
  font-size:14px;
}

.tt-note-box{
  display:flex;
  gap:10px;
  background:#fff3cd;
  padding:10px;
  border-radius:8px;
  font-size:12px;
  color:#856404;
}

.tt-note-box i{
  margin-top:3px;
}

/* Footer */
.tt-modal-footer{
  display:flex;
  justify-content:space-between;
  padding:15px 20px;
  background:#f8f9fa;
}

.tt-btn-cancel{
  background:#dc3545;
  color:#fff;
  border:none;
  padding:8px 18px;
  border-radius:6px;
  cursor:pointer;
}

.tt-btn-confirm{
  background:#198754;
  color:#fff;
  border:none;
  padding:8px 18px;
  border-radius:6px;
  cursor:pointer;
}

.tt-btn-confirm:hover{
  background:#157347;
}

/* Animations */
@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}

@keyframes slideUp{
  from{transform:translateY(30px); opacity:0}
  to{transform:translateY(0); opacity:1}
}
.tt-success-box{
  background:linear-gradient(135deg,#198754,#157347);
  color:#fff;
  padding:20px;
  border-radius:10px;
  margin-bottom:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  animation:fadeIn .4s ease;
}

.tt-success-box h4{
  margin-bottom:10px;
}

.tt-success-box ul{
  padding-left:18px;
  margin-top:10px;
  font-size:14px;
}

.tt-success-box li{
  margin-bottom:6px;
}
.tt-success-wrapper{
  margin-bottom:30px;
  animation:fadeIn .5s ease;
}

.tt-success-card{
  background:#fff;
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,0.1);
  padding:25px;
  border-left:6px solid #198754;
  position:relative;
}

.tt-success-icon{
  width:60px;
  height:60px;
  background:#198754;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:28px;
  position:absolute;
  top:-30px;
  left:25px;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.tt-success-header{
  margin-top:40px;
}

.tt-booking-id{
  display:inline-block;
  background:#0d6efd;
  color:#fff;
  padding:6px 14px;
  border-radius:30px;
  font-size:13px;
  margin-top:5px;
}

.tt-route-box{
  background:#f8f9fa;
  padding:15px;
  border-radius:10px;
  margin:15px 0;
  font-size:15px;
}

.tt-route-box strong{
  color:#0d6efd;
}

.tt-info-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  font-size:14px;
  margin-bottom:15px;
}

.tt-points{
  background:#fff3cd;
  padding:15px;
  border-radius:10px;
  font-size:13px;
  color:#856404;
}

.tt-points ul{
  padding-left:18px;
  margin:0;
}

.tt-points li{
  margin-bottom:6px;
}
/* Form Wrapper */
.tt-booking-form{
  background:#ffffff;
  padding:24px;
  border-radius:14px;
  border:1px solid #e6e6e6;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

/* Field */
.tt-field{
  position:relative;
  margin-bottom:16px;
}

.tt-field label{
  font-size:14px;
  font-weight:500;
  color:#333;
  margin-bottom:6px;
  display:block;
}

/* Inputs */
.tt-field input,
.tt-field select{
  width:100%;
  padding:12px 14px;
  font-size:14px;
  border-radius:8px;
  border:1px solid #ccc;
  background:#fafafa;
  transition:0.2s ease;
}

.tt-field input:focus,
.tt-field select:focus{
  border-color:#0d6efd;
  background:#fff;
  outline:none;
  box-shadow:0 0 0 3px rgba(13,110,253,0.15);
}

/* Date & Time */
.tt-row-2{
  display:flex;
  gap:14px;
}

.tt-row-2 .tt-field{
  flex:1;
}

/* Button */
.tt-book-btn{
  width:100%;
  padding:14px;
  background:#0d6efd;
  color:#fff;
  border:none;
  border-radius:10px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:0.2s;
}

.tt-book-btn:hover{
  background:#0b5ed7;
}

/* Autocomplete */
.autocomplete-box{
  position:absolute;
  width:100%;
  background:#fff;
  border:1px solid #ddd;
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
  z-index:999;
  margin-top:4px;
  max-height:200px;
  overflow-y:auto;
  display:none;
}

.autocomplete-box div{
  padding:10px 14px;
  cursor:pointer;
  font-size:14px;
  border-bottom:1px solid #eee;
}

.autocomplete-box div strong{
  font-weight:700;
  color:#0d6efd;
}

.autocomplete-box div:hover{
  background:#f2f6ff;
}

/* Mobile */
@media(max-width:768px){
  .tt-booking-form{
    padding:18px;
  }
  .tt-row-2{
    flex-direction:column;
    gap:0;
  }
}
.vehicle-section {
    background: #f8fafc;
}

.section-subtitle {
    color: #f59e0b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-weight: 700;
    margin-top: 10px;
}

.vehicle-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.vehicle-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.vehicle-card:hover .vehicle-img img {
    transform: scale(1.05);
}

.vehicle-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f59e0b;
    color: #000;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
}

.vehicle-body {
    padding: 20px;
}

.vehicle-name {
    font-weight: 600;
    margin-bottom: 8px;
}

.vehicle-seat {
    color: #6b7280;
    margin-bottom: 15px;
}

.book-btn {
    background: #f59e0b;
    color: #000;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    transition: 0.3s ease;
}

.book-btn:hover {
    background: #111827;
    color: #fff;
}
:root {
  --primary: #0D1B2A;
  --gold: #E0A800;
  --light-bg: #F8F9FA;
}

body {
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-weight: 700;
  color: var(--primary);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border: none;
}

.btn-gold:hover {
  background: #c69500;
}

.hero-section {
  background: linear-gradient(rgba(13,27,42,0.8), rgba(13,27,42,0.8)), url('assets/img/hero.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 0;
}

