/* ============================================================
   Destination Pages — Arusha Excursions
   ============================================================ */

.quick-fact {
    background: #f4f6f5;
}

.quick-fact strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.package-card {
    background: #fff;
    border: 1px solid #e5e9e8;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(13, 48, 52, 0.14);
    color: inherit;
}

.package-card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.package-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.package-card:hover .package-card-img img {
    transform: scale(1.06);
}

.package-card-body {
    padding: 1.1rem 1.25rem 1.35rem;
}

.package-card .tour-price {
    font-size: 13px;
    color: #555;
}

.package-card .tour-price strong {
    color: var(--bs-primary);
    font-size: 16px;
}

/* ---------- Destination enquiry form (premium, matches homepage form language) ---------- */
.def-section {
    position: relative;
    overflow: hidden;
}

.def-section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(1200px 500px at 15% 0%, rgba(13, 48, 52, 0.06), transparent 60%),
        radial-gradient(900px 500px at 100% 100%, rgba(201, 162, 75, 0.08), transparent 55%),
        linear-gradient(180deg, #f7f8f7 0%, #eef1f0 100%);
}

.def-section .container {
    position: relative;
    z-index: 1;
}

.def-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1.75rem;
    box-shadow: 0 30px 70px rgba(13, 48, 52, 0.14), 0 4px 18px rgba(13, 48, 52, 0.06);
}

@media (max-width: 575.98px) {
    .def-card {
        padding: 1.75rem 1.35rem;
        border-radius: 1.25rem;
    }
}

.def-card .form-control,
.def-card .form-select {
    border-radius: 0.75rem;
    border-color: #e2e7e6;
}

.def-card .form-control:focus,
.def-card .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 48, 52, 0.1);
}

.def-card .form-floating > label {
    color: #8a9493;
}

.def-card button[type="submit"] {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    border-radius: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 8px 20px rgba(13, 48, 52, 0.2);
}

.def-card button[type="submit"]:hover {
    transform: translateY(-2px);
}

.def-success {
    text-align: center;
    padding: 1.25rem 0;
}

.def-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(13, 48, 52, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.def-success-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--bs-primary);
}

.def-success h3 {
    color: var(--bs-primary);
}

/* Honeypot — hidden from sighted users, still present for bots to fill */
.cf-hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
