

 header {
   
        color: #fff;
        text-align: center;
        padding: 16px;
    }

    .container {
        max-width: 1200px;
        margin: auto;
        padding: 24px;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
        gap: 20px;
    }

    .card {
        background: #fff;
        border-radius: 16px;
        padding: 14px;
        box-shadow: 0 10px 24px rgba(0,0,0,.1);
    }

        .card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        .card h3 {
            margin: 10px 0 4px;
        }

        .card small {
            color: #475569;
        }

    .price {
        font-weight: 800;
        color: var(--accent);
        margin: 6px 0;
    }

    .pax {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #f1f7ff;
        padding: 8px;
        border-radius: 12px;
        margin-top: 8px;
    }

        .pax button {
            width: 34px;
            height: 34px;
            border: none;
            border-radius: 8px;
            background: var(--primary);
            color: #fff;
            font-size: 18px;
            cursor: pointer;
        }

    .rules {
        font-size: 13px;
        color: #334155;
        margin-top: 8px;
        line-height: 1.4;
    }

    .summary {
        position: sticky;
        bottom: 10px;
        margin-top: 26px;
        background: #fff;
        padding: 16px;
        border-radius: 16px;
        box-shadow: 0 10px 24px rgba(0,0,0,.15);
        text-align:center;
    }





    .form-container-contact {
        background: #fff;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .contact {
        display: flex;
        gap: 10px;
        align-items: flex-end;
        flex-wrap: wrap; /* mobile responsive */
    }

    .form-group {
        display: flex;
        flex-direction: column;
        min-width: 260px;
    }

    label {
        font-weight: bold;
        margin-bottom: 5px;
        font-size: 14px;
    }

    input {
        padding: 8px;
        border-radius: 5px;
        border: 1px solid #ccc;
        outline: none;
    }

        input:focus {
            border-color: #4e73df;
            box-shadow: 0 0 5px rgba(78,115,223,0.5);
        }