/* ======================
   PAGE SPACING
====================== */

main {
    padding: 40px 20px;
}


/* ======================
   FORM SECTION
====================== */

#visaForm {
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#visaForm label {
    font-weight: 600;
    font-size: 1.1rem;
}

#visaForm select {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: 0.3s ease;
}

#visaForm select:focus {
    outline: none;
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}


/* ======================
   DESTINATION GRID
====================== */

.destination-grid {
    margin-top: 50px;
}

.destination-grid h2 {
    margin-bottom: 20px;
}

.destination-grid .card {
    display: inline-block;
    margin: 10px;
    padding: 15px;
    border-radius: 14px;
    transition: 0.35s ease;
    text-align: center;
}

.destination-grid .card img {
    margin-top: 10px;
    border-radius: 10px;
    transition: 0.4s ease;
}

.destination-grid .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.destination-grid .card:hover img {
    transform: scale(1.08);
}


/* ======================
   PACKAGE GRID
====================== */

.grid.grid-3 {
    margin-top: 60px;
}

.grid.grid-3 .card {
    padding: 20px;
    border-radius: 14px;
    transition: 0.3s ease;
}

.grid.grid-3 .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}


/* ======================
   CATEGORIES
====================== */

.categories {
    margin-top: 60px;
    text-align: center;
}

.categories ul {
    list-style: none;
    padding: 0;
}

.categories li {
    display: inline-block;
    margin: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.categories li:hover {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.1);
}


/* ======================
   SCROLL ANIMATION
   (FOR YOUR JS CODE)
====================== */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}