/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@400;500;600&display=swap');

/* Main Card Container */
.tour-card {
    position:relative;
    width: 100%;
    height: 425px;
    /* border-radius: 5px; */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    background-size: cover;         /* Poori image bina kate dikhegi */
    background-position: center;      /* Center me alignment */
    background-repeat: no-repeat;     /* Repeat na ho */
    /* margin-top: 20px; */
}

/* Blue Color Overlay (Gradient) */
.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(23, 115, 161, 0.88) 0%, rgba(30, 85, 105, 0.78) 100%);
    z-index: 1;
}

/* Inside Content Wrapper */
.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

/* Top Text Section */
.card-top .tagline {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #e5e7eb;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.card-top .title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-top .description {
    font-size: 14px;
    color: #e5e7eb;
    max-width: 600px;
    line-height: 1.6;
}

/* Bottom Section (Badges + Button) */
.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
}

.badges-container {
    display: flex;
    gap: 12px;
}

/* Custom Badges (Glassmorphism Effect) */
.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
}

.badge-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #d1d5db;
    margin-bottom: 2px;
}

.badge-value {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-value .material-icons {
    font-size: 16px;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #20ba59;
}

.whatsapp-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Responsive Design for Mobile Devices */
@media (max-width: 640px) {
    .tour-card {
        height: auto;
        min-height: 380px;
        padding: 20px;
    }
    .card-top .title {
        font-size: 28px;
    }
    .card-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .whatsapp-btn {
        align-self: flex-start;
        width: 100%;
        justify-content: center;
    }
}



/* Main Route Card Container */
    .route-card {
        padding-top: 20px;
        padding-bottom: 20px;
        flex: 1;
    }

/* Heading Style */
.route-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #0c3953; /* Elegant dark blue hue */
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

/* Subtitle/Description */
.route-subtitle {
    font-size: 15px;
    color: #6b7280; /* Medium gray */
    margin-bottom: 28px;
    line-height: 1.5;
}

/* List Styling */
.route-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.route-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #1f2937; /* Dark text */
    font-weight: 500;
}

/* Custom Number Styling */
.route-number {
    color: #0066cc; /* Vibrant blue matching the image */
    font-weight: 700;
    font-size: 18px;
    min-width: 28px;
    display: inline-block;
}

/* Mobile Optimization */
@media (max-width: 480px) {
    .route-card {
        padding: 24px;
    }
    .route-title {
        font-size: 26px;
    }
    .route-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .route-item {
        font-size: 15px;
    }
}



.container {
    max-width: 100%;
    margin: 10px;
    padding-top: 20px;
    display: flex;
    gap: 20px;
}

/* Left Column: Sample Day Plan */
.left-column {
    flex: 1;
    padding-left: 10px;
    /* width: 600px; */
}
.section-title {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 20px;
    font-weight: 600;
}
.timeline {
    position: relative;
    padding-left: 20px;
    margin-bottom: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    bottom: 0;
    width: 2px;
    background-color: #d1d5db;
}
.timeline-item {
    position: relative;
    margin-bottom: 25px;
    padding-left: 15px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -19px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #f97316;
    border: 2px solid #fff;
}
.time {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}
.location {
    font-size: 16px;
    color: #1f2937;
    margin-top: 2px;
}



/* Right Column: Booking Form */
.right-column {
    flex: 1;
    /* width: 1000px; */
    
}
.booking-card {
    /* background: #fff; */
    padding: 30px;
    /* border-radius: 12px; */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky !important;
    top: 20px;
    width: 500px;
}
.booking-title {
    font-size: 22px;
    text-align: center;
    margin-bottom: 10px;
    font-family: serif;
}
.booking-subtitle {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 15px;
}
.form-row {
    display: flex;
    gap: 15px;
}
.form-row .form-group {
    flex: 1;
}
label {
    display: block;
    font-size: 13px;
    color: #374151;
    margin-bottom: 5px;
    font-weight: 500;
}
input, select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
    background-color: #f9fafb;
}
input:focus, select:focus {
    outline: none;
    border-color: #3b82f6;
}
.btn-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
}
.btn-whatsapp {
    background-color: #22c55e;
}
.btn-email {
    background-color: #3b82f6;
}
.call-text {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    margin-top: 15px;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: #d1d5db;
    padding: 50px 20px 20px;
    width: 100%;
    /* margin-top: 60px; */
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
}
.footer-logo-text {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
}
.footer h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
}
.footer ul {
    list-style: none;
}
.footer ul li {
    margin-bottom: 10px;
    font-size: 14px;
}
.footer ul li a {
    color: #d1d5db;
    text-decoration: none;
}
.contact-info p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #334155;
    font-size: 13px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .right-column {
        max-width: 100%;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}




/* Card Container with the soft light-blue tint */
    .included-card {
        background-color: #EAF2F8; /* Soft tint background */
        width: 100%;
        max-width: 520px;
        flex: 1;
        padding: 35px;
        border-radius: 16px; /* Smooth rounded corners */
        margin-left: 20px;
    }

    /* Serif Title */
    .card-title {
        font-family: 'Playfair Display', serif;
        font-size: 26px;
        color: #0c3953; /* Elegant deep blue */
        font-weight: 700;
        margin-bottom: 24px;
    }

    /* List Layout */
    .included-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .included-item {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 16px;
        color: #1f2937; /* Dark grayish text for readability */
        font-weight: 400;
    }

    /* Styled green checkmark container */
    .checkmark-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #15803d; /* Darker green matching the outer ring */
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

    /* Responsive scaling */
    @media (max-width: 480px) {
        .included-card {
            padding: 24px;
        }
        .card-title {
            font-size: 22px;
            margin-bottom: 18px;
        }
        .included-item {
            font-size: 14px;
            gap: 10px;
        }
    }


/* Container for both buttons */
.editbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px; /* Buttons ke beech ka gap */
  margin-top: 15px;
  margin-bottom: 20px;
}

/* Base styles for both links/buttons */
.editbtn a , button {
  text-decoration: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

/* Edit Button Style (Primary Color - Dark Blue/Slate) */
.editbtn div:first-child a {
  background-color: #0f172a;
  color: #ffffff;
  border: 1px solid #0f172a;
}

.editbtn div:first-child a:hover {
  background-color: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Delete Button Style (Danger Color - Red/Outline) */
.editbtn div:last-child button { 
  background-color: #dc2626;
  color: #ffffff;
  border: 1px solid #dc2626;
}

.editbtn div:last-child button:hover {
  background-color: #b91c1c;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Active Click Effect */
.editbtn a:active {
  transform: translateY(0);
}