/* landing.css */

/* General Styles */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

h4 {
    font-weight: 600;
    color: #212529;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
}

/* Image Grid */
.image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Info Card */
.info-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 30px;
}

/* Route Badges */
.route-badge {
    background: #6c757d;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 8px;
    display: inline-block;
}

/* Itinerary Accordion */
.accordion-button {
    font-weight: 500;
    color: #212529;
    background-color: #f8f9fa;
}

.accordion-button:not(.collapsed) {
    background-color: #e9ecef;
    color: #0056b3;
}

.accordion-body {
    background: #fff;
    border-top: 1px solid #dee2e6;
}

.itinerary-card p {
    margin-left: 0;
    opacity: 1;
    color: #495057;
}

.itinerary-card ul {
    list-style-type: disc;
    padding-left: 20px;
}

.itinerary-card ul li,
.itinerary-card ol li {
    margin: 5px 0;
}

.itinerary-card ol {
    list-style-type: decimal;
    padding-left: 20px;
}

/* Inclusions */
.inclusions-list {
    list-style: none;
    padding: 0;
}

.inclusions-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #495057;
}

.inclusions-list li::before {
    content: "\f058"; /* FontAwesome check circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
    font-size: 1rem;
}

/* Accommodations */
.accommodations-list {
    list-style-type: disc;
    padding-left: 20px;
    color: #495057;
}

/* Costing Table */
.costing-section table {
    width: 100%;
    border-collapse: collapse;
}

.costing-section th,
.costing-section td {
    text-align: left;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
}

.costing-section th {
    background-color: #343a40;
    color: #fff;
    font-weight: 600;
}

.costing-section tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Fixed Sidebar Tabs */
.fixed-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.fixed-sidebar .nav-link {
    background: #ffffff;
    border: 1px solid #dee2e6;
    color: #495057;
    padding: 12px 17px;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
    display: block;
    text-align: left;
    font-weight: 500;
    font-size: 15px;
}

.fixed-sidebar .nav-link:hover {
    background: #e9ecef;
    color: #0056b3;
}

/* Fixed Buttons */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.call-btn,
.whatsapp-btn,
.booknow-btn{
    padding: 12px 20px !important;
    border-radius: 50px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
    font-weight: 500 !important;
}

.call-btn {
    background-color: #007bff !important;
    color: white !important;
}

.whatsapp-btn {
    background-color: #25D366 !important;
    color: white !important;
}

.booknow-btn{
    background-color: #ff4d00 !important;
    color: white !important;
}

.call-btn:hover,
.whatsapp-btn:hover,
.booknow-btn:hover{
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .fixed-sidebar {
        display: none; /* Hide on smaller screens or adjust */
    }
}

@media (max-width: 768px) {
    
    .image-grid{
        display: none;
    }
    .image-grid img {
        height: 200px;
    }

    .info-card {
        padding: 20px;
    }

    .fixed-buttons {
        bottom: 10px;
        right: 10px;
    }
}


@media (max-width: 570px){
    .accordion-body{
        padding: 0;
    }
    
    .accordion-body ul{
        margin-left: 5px;
    }
    .accordion-body ul li{
        font-size: 14px;
        list-style-type: circle;
    }
    
    .call-btn,
    .whatsapp-btn,
    .booknow-btn{
        padding: 8px 15px !important;
        border-radius: 50px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
        transition: transform 0.3s, box-shadow 0.3s !important;
        font-weight: 500 !important;
        font-size: 13px;
    }
    
    .fixed-buttons{
        width: 100vw;
        flex-direction: row;
        left: 0;
        justify-content: space-evenly;
        gap: 8px
    }
}