/* --- RESET & FONTS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica', 'Arial', sans-serif; /* Clean, modern font */
}

body {
    background-color: rgba(120, 200, 120, 0.2);
    color: #333;
}

/* --- NAVIGATION (Consistent) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #000000;
    color: white;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.6);
}

.logo { 
    font-size: 1.5rem; 
    font-weight: bold; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: white;
}

.nav-links { 
    list-style: none; 
    display: flex; 
    gap: 20px; 
}

.nav-links a { 
    text-decoration: none; 
    color: white; 
    transition: all 0.3s;
    font-weight: 500;
}

.nav-links a:hover, .active { 
    color: #00d2ff;
    transform: translateY(-2px);
}

/* --- PAGE HEADER --- */
.tour-header {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.tour-header h1 { margin-bottom: 10px; }

/* --- PRICING CARDS CONTAINER --- */
.pricing-container {
    display: flex;
    justify-content: center; /* Centers the cards */
    align-items: center; /* Aligns them vertically */
    gap: 30px; /* Space between cards */
    padding: 60px 20px;
    flex-wrap: wrap; /* Allows wrapping on mobile */
}

/* --- INDIVIDUAL CARD STYLING --- */
.card {
    background: white;
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative; /* Needed for the "Popular" tag */
    border: 1px solid #eee;
}

.card:hover {
    transform: translateY(-15px); /* Card floats up when hovered */
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* --- IMAGE SECTION OF CARD --- */
.card-image {
    height: 150px;
    background-size: cover;
    background-position: center;
}

/* --- TEXT CONTENT --- */
.card-text {
    padding: 25px;
    text-align: center;
}

.card-text h2 { color: #2c3e50; font-size: 1.5rem; margin-bottom: 5px; }
.card-text p { color: #7f8c8d; font-size: 0.9rem; margin-bottom: 15px; }

.price {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: bold;
    margin: 15px 0;
}

/* --- FEATURES LIST --- */
.features {
    list-style: none;
    margin-bottom: 25px;
    color: #555;
    text-align: left;
    padding-left: 10px;
}

.features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.features li:last-child { border-bottom: none; }

/* --- BOOK BUTTON --- */
.book-btn {
    display: block;
    width: 100%;
    padding: 12px 0;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.book-btn:hover {
    background: #00d2ff;
    color: #222;
}

/* --- "POPULAR" CARD STYLES --- */
.popular {
    transform: scale(1.05); /* Makes this card slightly bigger */
    border: 2px solid #e67e22; /* Orange border */
    z-index: 10;
}

/* The "Best Value" Tag */
.tag {
    position: absolute;
    top: 0;
    right: 0;
    background: #e67e22;
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-bottom-left-radius: 10px;
}

/* --- FOOTER --- */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}